/* ========================================
   FAQ - TERAPEUTA ORTOMOLECULAR
   Classes originais mantidas, apenas aparência melhorada
   ======================================== */

.about {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  position: relative;
}

.about .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.about .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
	color: #2c4964;
}

.about .section-title h2::after
.about .section-title h2::before{
  content: "";
  width: 50px;
  height: 2px;
  background: #0599db;
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.about .entry {
  padding: 0;
  margin-bottom: 0;
  box-shadow: none;
  background: transparent;
}

.about .entry-single {
  margin-bottom: 0;
}

/* ========================================
   TOGGLE ITEMS
   ======================================== */
.toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 0;
  border-bottom: 1px solid #e8ecef;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 12px;
}

.toggle:hover {
  background: #f8fafc;
  transform: translateX(5px);
}

.toggle-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  gap: 15px;
}

.toggle-header span {
  font-size: 1.9rem !important;
}

.toggle-icon {
  margin-right: 12px;
  color: #2796d7 !important;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.toggle:hover .toggle-icon {
  transform: scale(1.1);
}

/* Título do toggle */
.toggle h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #2c4964;
  display: flex;
  align-items: center;
  line-height: 1.4;
}

.title-toggle {
  font-size: 18px !important;
  font-weight: 600 !important;
}

.toggle h2 i {
  font-size: 22px;
  color: #2796d7;
  display: flex;
  align-items: center;
  margin-right: 10px;
}

/* Ícone de abrir/fechar */
.toggle .open {
  font-size: 20px;
  color: #2796d7;
  transition: transform 0.3s ease;
}

.toggle.open .open {
  transform: rotate(180deg);
}

/* Conteúdo do toggle */
.toggle-content {
  display: none;
  padding: 20px 24px 24px 60px;
  font-size: 0.95rem;
  line-height: 1.7;
  background: #f9fbfd;
  border: none;
  border-top: 1px solid #eef2f6;
  border-radius: 0 0 12px 12px;
  animation: fadeInToggle 0.3s ease;
}

@keyframes fadeInToggle {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.toggle-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #4a5a6a;
  margin-bottom: 16px;
}

.toggle-content p:last-child {
  margin-bottom: 0;
}

/* Listas dentro do toggle-content */
.toggle-content ul {
  margin: 15px 0 0 0;
  padding-left: 20px;
  list-style: none;
}

.toggle-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #4a5a6a;
  margin-bottom: 10px;
  padding: 6px 0;
}

.toggle-content ul li::before {
  content: "✓";
  color: #2796d7;
  font-weight: bold;
  font-size: 14px;
}

.about .entry-single i {
  font-size: 1.9rem;
  margin-bottom: 0;
  margin-top: 0;
  color: #2796d7;
}

.about .entry-single p {
  font-size: 1.2rem;
}

/* ========================================
   RESPONSIVO
   ======================================== */
@media (max-width: 992px) {
  .about {
    padding: 50px 0;
  }
  
  .about .section-title h2 {
    font-size: 30px;
  }
  
  .toggle-header {
    padding: 15px 20px;
  }
  
  .toggle h2 {
    font-size: 16px;
  }
  
  .title-toggle {
    font-size: 16px !important;
  }
  
  .toggle-content {
    padding: 16px 20px 20px 50px;
  }
  
  .toggle-content p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 40px 0;
  }
  
  .about .section-title h2 {
    font-size: 26px;
  }
  
  .toggle-header {
    padding: 12px 16px;
  }
  
  .toggle h2 {
    font-size: 14px;
  }
  
  .title-toggle {
    font-size: 14px !important;
  }
  
  .toggle h2 i {
    font-size: 18px;
  }
  
  .toggle-content {
    padding: 14px 16px 18px 40px;
  }
  
  .toggle-content ul li {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .about {
    padding: 30px 0;
  }
  
  .about .section-title h2 {
    font-size: 22px;
  }
  
  .toggle-header {
    padding: 12px 14px;
  }
  
  .toggle h2 {
    font-size: 13px;
    flex-wrap: wrap;
  }
  
  .toggle-content {
    padding: 12px 14px 16px 30px;
  }
  
  .toggle-content p {
    font-size: 13px;
  }
  
  .toggle-content ul li {
    font-size: 11px;
  }
}