/* 
   ==========================================================================
   CSS para la Página de Ventas: +300 Actividades para aprender jugando
   Copia exacta del diseño visual provisto en las capturas de pantalla (Lovable)
   ========================================================================== 
*/

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Inter:wght@300..800&display=swap');

:root {
  /* Colores */
  --bg-primary: #FCFAF6; /* Fondo crema muy suave de las capturas */
  --bg-card: #FFFFFF;
  --primary-red: #E63946; /* Rojo de los botones principales y marquesina */
  --primary-red-hover: #D62839;
  --text-dark: #1E293B; /* Slate oscuro para títulos */
  --text-gray: #64748B; /* Gris para descripciones */
  --orange-accent: #FF8E53; /* Coral/Naranja highlight */
  --orange-bonuses: #F39C12; /* Fondo naranja de la sección de bonos */
  --green-success: #2EC4B6; /* Verde de las insignias */
  --green-badge: #2EB47A; /* Verde HOY: GRATIS */
  --border-color: #E2E8F0;
  
  /* Fuentes */
  --font-display: 'Fredoka', cursive, sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 30px rgba(0, 0, 0, 0.08);
}

/* Reset y Estilos Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tipografía */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }

/* Botones Lovable Style */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  color: #FFFFFF;
  background: linear-gradient(180deg, #F04F68, #E63946);
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.35);
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  width: 100%;
  max-width: 520px;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.45);
  background: linear-gradient(180deg, #E63946, #D62839);
}

.btn-cta:active {
  transform: translateY(1px);
}

/* MARQUESINA SUPERIOR */
.marquee-bar {
  background-color: var(--primary-red);
  color: #FFFFFF;
  padding: 10px 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  letter-spacing: 0.5px;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 50s infinite linear;
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* SUBHEADER URGENCIA */
.sub-urgency-bar {
  color: #B91C1C;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  padding: 12px 10px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
}

/* OFERTA RELAMPAGO PILL */
.oferta-relampago-badge {
  background-color: var(--primary-red);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  display: inline-block;
  margin: 15px auto;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* GRID DE BADGES (MEDIDAS/PROFESORAS) */
.badge-grid-hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 35px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badge-item {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
  display: flex;
  align-items: center;
  gap: 6px;
  color: #334155;
}

.hero-badge-item.accent {
  background-color: #FEF2F2;
  border-color: #FCA5A5;
  color: #991B1B;
}

/* TITULO HERO */
.hero-section {
  padding: 20px 0 50px 0;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.1;
}

.hero-title span.orange-text {
  color: var(--orange-accent);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto 35px auto;
  line-height: 1.6;
}

.hero-mockup-wrapper {
  max-width: 420px;
  margin: 0 auto 30px auto;
}

.hero-checklist-under {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  font-weight: 700;
  color: #15803D;
  font-size: 0.95rem;
}

.hero-checklist-under i {
  font-size: 1.1rem;
}

/* SECCION 2: TODO LO QUE TU HIJO NECESITA */
.needs-section {
  padding: 60px 0;
  background-color: #FCFAF6;
}

.section-title {
  font-size: 2.1rem;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.section-title span.orange-text {
  color: var(--orange-accent);
}

.cards-grid-needs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

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

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

.need-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.need-card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.need-card-title {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.need-card-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.5;
  flex-grow: 1;
}

/* 3 PILLS DE BENEFICIOS */
.three-pills-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .three-pills-row {
    flex-direction: row;
    gap: 20px;
  }
}

.pill-benefit-item {
  background: #FFFFFF;
  border-radius: 50px;
  padding: 10px 24px;
  border: 1px solid var(--border-color);
  font-weight: 700;
  font-size: 0.9rem;
  color: #1E293B;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.pill-benefit-item i {
  color: #22C55E;
}

/* GALERIA VISUAL */
.gallery-section-title {
  font-size: 2.1rem;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.books-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .books-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-book-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
}

.gallery-book-card:hover {
  transform: translateY(-3px);
}

.gallery-book-image-box {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.gallery-book-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-book-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  text-align: center;
  margin-bottom: 4px;
}

.gallery-y-mucho-mas {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary-red);
  margin: 20px 0 25px 0;
}

/* SECTION DEPOIMENTOS */
.testimonials-section {
  padding: 60px 0;
  background-color: #FCFAF6;
}

.testimonial-large-image {
  max-width: 600px;
  margin: 0 auto 30px auto;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 4px solid #FFFFFF;
}

/* REVIEW CARDS ROW */
.review-cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .review-cards-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-customer-card {
  background: #F8F4EC;
  border-radius: 16px;
  padding: 18px;
  text-align: left;
  border: 1px solid rgba(0,0,0,0.02);
}

.stars-row {
  color: #FFAA00;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.85rem;
  color: #334155;
  line-height: 1.5;
  font-style: italic;
}

/* SECTION BONOS EXCLUSIVOS */
.bonuses-outer-section {
  background-color: var(--orange-bonuses);
  padding: 60px 0;
  color: #FFFFFF;
}

.bonuses-section-title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.bonuses-section-title-box i {
  font-size: 2.2rem;
  color: #FFFFFF;
}

.bonuses-section-title {
  font-size: 2.3rem;
  color: #FFFFFF;
}

.bonuses-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

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

.bonus-customer-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 24px;
  color: var(--text-dark);
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.bonus-badge-top {
  position: absolute;
  top: -15px;
  left: 24px;
  background-color: #E63946;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.bonus-card-title {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-top: 10px;
  margin-bottom: 12px;
  min-height: 3rem;
  display: flex;
  align-items: center;
}

.bonus-card-image-box {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bonus-card-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 20px;
}

.bonus-card-pricing-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
}

.bonus-old-val {
  color: #94A3B8;
  text-decoration: line-through;
  font-size: 0.95rem;
}

.bonus-gratis-badge {
  background-color: var(--green-badge);
  color: #FFFFFF;
  font-size: 0.8rem;
  padding: 3px 12px;
  border-radius: 50px;
  font-weight: 700;
}

/* OFERTA FINAL (ANCLAJE DE PRECIO) */
.final-pricing-section {
  padding: 60px 0;
  background-color: #FCFAF6;
  text-align: center;
}

.final-pricing-anchor {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 15px;
}

.final-pricing-anchor span.bold-price {
  font-weight: 700;
  color: #0F172A;
}

.final-pricing-red-highlight {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #E63946;
  text-transform: uppercase;
  max-width: 800px;
  margin: 0 auto 35px auto;
  line-height: 1.4;
  font-weight: 700;
}

/* CHECKOUT CARD */
.checkout-card-box {
  max-width: 580px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 30px 24px;
  border: 1px solid #FECACA;
  box-shadow: var(--shadow-lg);
}

.checkout-card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.checkout-card-badge-red {
  background-color: #EF4444;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.checkout-card-right-text {
  font-size: 0.75rem;
  color: #64748B;
  font-weight: 700;
  text-transform: uppercase;
}

.checkout-card-title {
  font-size: 1.6rem;
  color: #0F172A;
  text-align: left;
  margin-bottom: 20px;
}

.checkout-checklist {
  list-style: none;
  margin-bottom: 25px;
  text-align: left;
}

.checkout-checklist-item {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.checkout-checklist-item i {
  color: #22C55E;
}

/* CREAM PRICE HIGHLIGHT BOX */
.cream-price-box {
  background-color: #FDF8F2;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #FFEEDB;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cream-old-price {
  font-size: 0.85rem;
  color: #64748B;
  text-decoration: line-through;
}

.cream-por-solamente {
  font-size: 0.75rem;
  color: #475569;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 4px;
}

.cream-main-price {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: #E63946;
  font-weight: 800;
  line-height: 1.1;
}

.cream-main-price span.hoy-text {
  font-size: 1.4rem;
  font-weight: 700;
}

.star-rating-box {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #F59E0B;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.star-rating-text {
  font-size: 0.8rem;
  color: #475569;
  font-weight: 600;
}

.checkout-card-box .btn-cta {
  margin-bottom: 12px;
}

.safe-pago-text {
  font-size: 0.75rem;
  color: #64748B;
}

/* SECTION GARANTIA (CARD REDONDO) */
.guarantee-container-outer {
  background-color: #FCFAF6;
  padding: 40px 0;
}

.guarantee-card-box {
  max-width: 680px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: left;
}

@media (min-width: 640px) {
  .guarantee-card-box {
    flex-direction: row;
    gap: 24px;
  }
}

.guarantee-icon-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #FFB703;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-icon-box i {
  font-size: 2.2rem;
  color: #0284C7;
}

.guarantee-card-title {
  font-size: 1.35rem;
  color: #0F172A;
  margin-bottom: 8px;
}

.guarantee-card-desc {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.5;
}

/* SECTION AUTOR */
.author-section-outer {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.author-title-top {
  font-size: 1.15rem;
  color: #1E293B;
  margin-bottom: 15px;
}

.author-desc-text {
  font-size: 0.9rem;
  color: #475569;
  max-width: 650px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.author-section-outer .btn-cta {
  margin-bottom: 40px;
}

.author-avatar-box-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 30px auto;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.author-avatar-box-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-product-mockup-wrapper {
  max-width: 380px;
  margin: 0 auto;
}

/* FOOTER NAVY */
.footer-navy-bar {
  background-color: #0F172A;
  color: rgba(255, 255, 255, 0.5);
  padding: 25px 0;
  font-size: 0.75rem;
  text-align: center;
}

/* TOAST NOTIFICACIÓN COMPRA (LOVABLE STYLE) */
.purchase-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  max-width: 320px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.purchase-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-close-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #94A3B8;
  cursor: pointer;
  position: absolute;
  top: 8px;
  right: 12px;
  line-height: 1;
  font-weight: 300;
  transition: color 0.2s ease;
}

.toast-close-btn:hover {
  color: #475569;
}

.toast-avatar-container {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF9F43, #FF5252);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(255, 159, 67, 0.2);
}

/* Verified check badge on bottom-right of avatar */
.toast-avatar-verified-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background-color: #38BDF8; /* Blue sky verified check */
  color: #FFFFFF;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  border: 2px solid #FFFFFF;
}

.toast-content-container {
  padding-right: 10px;
  text-align: left;
}

.toast-customer-name-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 2px;
}

.toast-customer-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0F172A;
}

.toast-verified-icon {
  color: #38BDF8;
  font-size: 0.8rem;
}

.toast-text-action {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.3;
}

.toast-text-action span.accent-kit {
  color: #E63946;
  font-weight: 700;
}

.toast-time-status-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.toast-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #22C55E; /* Green dot representing online status */
  display: inline-block;
}

.toast-time-text {
  font-size: 0.75rem;
  color: #94A3B8;
  font-weight: 600;
}

/* SECCIÓN QUIZ DE DIAGNÓSTICO */
.quiz-section {
  padding: 60px 0;
  background-color: #FCFAF6;
  text-align: center;
}

.quiz-card {
  max-width: 600px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 35px 25px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  text-align: left;
}

.quiz-title {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-align: center;
}

.quiz-subtitle {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.4;
}

.quiz-progress-container {
  background-color: #F1F5F9;
  border-radius: 50px;
  height: 8px;
  width: 100%;
  margin-bottom: 25px;
  overflow: hidden;
}

.quiz-progress-fill {
  background-color: var(--orange-accent);
  height: 100%;
  width: 33.33%;
  transition: width 0.3s ease;
}

.quiz-question-container {
  display: none;
}

.quiz-question-container.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-question-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.quiz-options-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-option-btn {
  background-color: #FCFAF6;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  color: #334155;
  transition: all 0.2s ease;
  width: 100%;
}

.quiz-option-btn:hover {
  background-color: #FFF5F5;
  border-color: var(--primary-red);
  transform: translateX(4px);
}

/* Loader style during processing */
.quiz-loader-box {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.quiz-loader-circle {
  border: 4px solid #F1F5F9;
  border-top: 4px solid var(--primary-red);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.quiz-loader-text {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.1rem;
}

/* Result box */
.quiz-result-box {
  display: none;
  text-align: center;
  padding: 20px 10px;
}

.quiz-result-icon {
  font-size: 3rem;
  color: #22C55E;
  margin-bottom: 15px;
}

.quiz-result-title {
  font-size: 1.5rem;
  color: #15803D;
  margin-bottom: 10px;
}

.quiz-result-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 25px;
}

/* SECCIÓN PREGUNTAS FRECUENTES (FAQ) */
.faq-section {
  padding: 60px 0;
  background-color: #FCFAF6;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.faq-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.faq-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto 40px auto;
  line-height: 1.5;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 700;
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

