/* Global Styles */
body {
  scroll-behavior: smooth;
  position: relative;
  background-color: #ffffff;
  color: #6B7280; /* Gris medio para texto general */
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ABBB, #004F7E, #00ABBB);
  z-index: 9999;
  width: 0;
  transition: width 0.1s ease-out;
}

/* Evita parpadeo en móviles */
img,
.hero-bg,
.shop-image,
.blog-image,
.testimonial-avatar {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  color: #454d5a; /* Gris claro, NO negro */
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  background: linear-gradient(90deg, #00ABBB, #004F7E, #00ABBB);
  width: 0;
  animation: growLine 1.2s ease-out forwards;
}

.pulse-icon {
  animation: counterUp 2s ease-in-out infinite;
}

.service-card,
.testimonial-card,
.blog-card,
.shop-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  position: relative;
}

.service-card::before,
.testimonial-card::before,
.blog-card::before,
.shop-card::before {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 6px;
  height: 6px;
  /* background: #00ABBB; */
  border-radius: 50%;
  opacity: 0.2;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.08);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.08);
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.15);
}

input:focus,
textarea:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2) !important;
  border-color: #00ABBB !important;
}

.floating-whatsapp {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-whatsapp:hover {
  transform: scale(1.12) rotate(12deg);
  background-color: #128C7E;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.faq-answer.open {
  max-height: 200px;
}

/* Hero */
.hero-bg {
  background: url('../images/hero.jpg') center/cover no-repeat;
  position: relative;
  padding: 4rem 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 79, 126, 0.85), rgba(0, 79, 126, 0.85)); /* Solo azul oscuro */
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.05) 75%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
  background-size: 50px 50px;
  opacity: 0.15;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Contadores */
.stats-section {
  background: white;
  padding: 3rem 0;
}

.stats-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  min-width: 140px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #004F7E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.stat-label {
  color: #4A5568; /* Gris claro */
  font-weight: 600;
  font-size: 1rem;
}

/* Sobre mi: foto en círculo */
.doctor-avatar {
  width: 264px;
  height: auto;
  max-height: 320px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  object-position: center top;
}

/* Servicios */
.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  opacity: 0.01;
}

.service-card.animate {
  opacity: 1;
  animation: staggerIn 0.7s ease-out forwards;
}

.service-btn {
  background: transparent;
  border: 1px solid #00ABBB;
  color: #004F7E;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.service-btn:hover {
  background: #00ABBB;
  color: white;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

/* Testimonios */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  background: transparent;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: 1.25rem;  
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 48rem;
  margin: 0 auto;
  background: transparent;
  border: none;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.read-more-btn {
  align-self: flex-start;
  background: transparent;
  border: 1px solid #00ABBB;
  color: #004F7E;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  font-size: 0.875rem;
}

.read-more-btn:hover {
  background: #00ABBB;
  color: white;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

/* Blog */
.blog-carousel {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.blog-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.blog-slide {
  min-width: 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.blog-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 420px;
  margin: 0 auto;
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #4A5568; /* Gris claro */
}

.blog-summary {
  color: #6B7280;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.blog-btn {
  background: linear-gradient(135deg, #004F7E, #00ABBB);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.2s;
}

.blog-btn:hover {
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

/* Tienda - Tarjetas de producto */

#tienda {
  background-image:
    linear-gradient(45deg, rgba(0, 79, 126, 0.02) 25%, transparent 25%, transparent 75%, rgba(0, 79, 126, 0.02) 75%),
    linear-gradient(45deg, rgba(0, 79, 126, 0.02) 25%, transparent 25%, transparent 75%, rgba(0, 79, 126, 0.02) 75%);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
}

.shop-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  max-width: 280px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.15);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #00ABBB, #B89B2E);
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3);
}

.shop-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.shop-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shop-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  min-height: 2.25rem;
  color: #4A5568; /* Gris claro */
}

.shop-price {
  color: #004F7E;
  font-weight: 700;
  margin: 0.5rem 0;
}

.shop-content p.text-gray-600 {
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #6B7280;
}

.shop-btn {
  background: linear-gradient(135deg, #004F7E, #00ABBB);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s;
  width: 100%;
  margin-top: auto;
}

.shop-btn:hover {
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.view-shop-btn {
  background: linear-gradient(135deg, #004F7E, #00ABBB);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.2s;
  margin-top: 2rem;
}

.view-shop-btn:hover {
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Menú móvil */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: white;
  z-index: 9998;
  transition: right 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  padding: 2rem 1.5rem;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 0;
  color: #4A5568; /* Gris claro */
  font-weight: 500;
  border-bottom: 1px solid #eee;
  transition: color 0.2s;
}

.mobile-menu .nav-link:hover {
  color: #00ABBB;
}

.close-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #4A5568; /* Gris claro */
}

.close-menu:hover {
  color: #00ABBB;
}

/* Carrusel genérico */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dot.active {
  background: #00ABBB;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.carousel-btn.prev {
  left: 25%;
}

.carousel-btn.next {
  right: 25%;
}

@media (max-width: 768px) {
  .carousel-btn {
    display: none;
  }

  .testimonial-card {
    max-width: 95%;
  }

  .blog-slide {
    gap: 1rem;
  }

  .blog-card {
    max-width: 100%;
  }

  .shop-card {
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

}

.text-primary-blue {
  color: #004F7E !important;
}

.btn-primary {
  background-color: #004F7E !important;
  border-color: #00ABBB !important;
  color: white !important;
}

.btn-primary:hover {
  background-color: #003d66 !important;
  border-color: #00ABBB !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

/* Dorado sutil para los botones */
a.bg-white:hover {
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

a.border-white {
  border-color: #00ABBB;
}

a.border-white:hover {
  border-color: #00ABBB;
  color: #00ABBB !important;
}

/* ====== CLASES NUEVAS PARA SOBRE-MI.HTML ====== */

/* Hero section personalizado */
.hero-sobre-mi {
  background: linear-gradient(135deg, #004770 0%, #002a4d 100%);
  position: relative;
  overflow: hidden;
}

/* Badges en hero */
.badge-highlight {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Biografía principal */
.bio-text {
  line-height: 1.8;
  color: #4a5568;
}

.bio-highlight {
  background: linear-gradient(120deg, rgba(0, 79, 126, 0.1) 0%, transparent 100%);
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid #004F7E;
}

/* Tarjetas de formación */
.academic-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 79, 126, 0.1);
  transition: all 0.3s ease;
}

.academic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 79, 126, 0.1);
  border-color: rgba(0, 79, 126, 0.2);
}

/* Lista de logros */
.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(0, 79, 126, 0.05);
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Tarjetas de experiencia */
.experience-card {
  background: linear-gradient(135deg, white 0%, #f9fafb 100%);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #004F7E;
}

/* Valores section */
.value-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
}

/* Reconocimientos */
.award-card {
  background: linear-gradient(135deg, rgba(0, 79, 126, 0.05) 0%, white 100%);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(0, 79, 126, 0.1);
}

.award-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Sociedades científicas */
.society-item {
  background: white;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 79, 126, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Botón descargar CV */
.btn-cv-download {
  background: linear-gradient(90deg, white 0%, #f3f4f6 100%);
  color: #004F7E;
  font-weight: 700;
  padding: 1.25rem 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 79, 126, 0.2);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-cv-download:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 15px 40px rgba(0, 79, 126, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-sobre-mi h1 {
    font-size: 2rem;
  }
  
  .bio-highlight {
    padding: 1rem;
  }
  
  .value-card,
  .award-card {
    padding: 1.5rem;
  }
}

/* ====== FIN CLASES SOBRE-MI.HTML ====== */

/* ====== CLASES NUEVAS PARA SERVICIOS.HTML ====== */

/* Navegación rápida de servicios */
.service-nav-link {
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  background: white;
  border: 2px solid transparent;
}

.service-nav-link:hover {
  background: #004F7E;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 79, 126, 0.2);
}

.service-nav-link:target {
  background: #004F7E;
  color: white !important;
  border-color: #00ABBB;
}

/* Badges producto estrella */
.badge-star {
  background: linear-gradient(135deg, #004F7E, #003d66);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Tarjetas de beneficios */
.benefit-card {
  background: white;
  padding: 1rem;
  border-radius: 0.75rem;
  border-left: 4px solid #004F7E;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Lista de procedimientos */
.procedure-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 79, 126, 0.1);
}

.procedure-item:last-child {
  border-bottom: none;
}

/* Responsive adjustments servicios */
@media (max-width: 768px) {
  .service-nav-link {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
  
  .badge-star {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
  }
}

/* ====== FIN CLASES SERVICIOS.HTML ====== */

/* ====== CORRECCIÓN DEFINITIVA MENÚ MÓVIL ====== */

/* Overlay para cerrar al hacer clic fuera - CORREGIDO */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Asegurar que el overlay esté por encima de todo */
.menu-overlay.active {
  z-index: 9997 !important;
}

/* Menú móvil */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: white;
  z-index: 9998; /* Mayor que el overlay */
  transition: right 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: auto;
}

.mobile-menu.active {
  right: 0;
  z-index: 9998 !important;
}

/* Contenido del menú - CORREGIDO DEFINITIVO */
.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  padding-bottom: 2rem; /* Espacio inferior después del botón */
  min-height: 100vh; /* Cambiado a 100vh para que ocupe toda la altura */
  box-sizing: border-box; /* Para que el padding no afecte el tamaño */
}

/* Botón de cerrar */
.mobile-menu .close-menu {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.8rem;
  cursor: pointer;
  color: #4A5568;
  z-index: 10;
  background: none;
  border: none;
  padding: 0.5rem;
  transition: color 0.2s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.mobile-menu .close-menu:hover {
  color: #00ABBB;
  background: rgba(0, 171, 187, 0.1);
}

/* Links del menú móvil */
.mobile-menu .nav-link {
  display: block;
  padding: 1rem 0;
  color: #4A5568;
  font-weight: 500;
  font-size: 1.1rem;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.mobile-menu .nav-link:hover {
  color: #00ABBB;
  background: rgba(0, 171, 187, 0.05);
  padding-left: 0.5rem;
}

/* Estilos adicionales para botón Agendar Cita en móvil */
.mobile-menu .btn-agendar-mobile {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  width: 100%;
}

.mobile-menu .btn-agendar-mobile a {
  display: block;
  width: 100%;
  background: #00ABBB !important;
  color: white !important;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 1rem;
  text-align: center;
  border-radius: 0.75rem;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none !important;
}

.mobile-menu .btn-agendar-mobile a:hover {
  background: #008A99 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 171, 187, 0.3);
}


/* ====== FIN CORRECCIÓN DEFINITIVA MENÚ MÓVIL ====== */


/* Solución FAQ - Respuestas completas */
.faq-item {
  overflow: visible !important;
}

.faq-answer {
  display: block !important;
  overflow: visible !important;
  max-height: none !important;
  line-height: 1.6 !important;
  margin-bottom: 1rem !important;
}

.faq-answer.hidden {
  display: none !important;
}