/* =========================================================
   LA BODA DE TUS SUEÑOS POR MENOS DE $40 MIL PESOS
   Página de Ventas — Modelo Brasileño adaptado para México
   Mobile-first (97% del tráfico es móvil)
   v2 — tamaños escalados para coincidir con el BR
   ========================================================= */

:root {
  /* === PALETA (cambiar aquí afecta toda la página) === */
  --rojo: #EF0000;
  --rojo-claro: #FF2525;
  --rojo-vino: #900B33;
  --verde: #00BD39;
  --verde-hover: #00A632;
  --verde-claro: #47CB59;
  --amarillo-suave: #FFF8DC;
  --rosa-suave: #FFE5EC;
  --rosa-acento: #FF7BAC;
  --azul-cielo: #E3F2FD;
  --azul-cielo-2: #BBDEFB;
  --gris-fondo: #F5F5F5;
  --gris-borde: #E0E0E0;
  --texto: #2D2D2D;
  --texto-medio: #555;
  --blanco: #FFFFFF;
  --negro: #000000;

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --sombra-card: 0 4px 12px rgba(0,0,0,0.08);
  --sombra-fuerte: 0 8px 24px rgba(0,0,0,0.15);
  --sombra-btn: 0 4px 0 rgba(0,0,0,0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 18px;          /* ⬆ 16 → 18 */
  line-height: 1.6;
  color: var(--texto);
  background: var(--blanco);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

/* =========================================================
   CONTENEDOR GLOBAL — móvil-first
   ========================================================= */
.wrap {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .wrap { max-width: 720px; }
}

/* =========================================================
   NOTIFICACIÓN DE COMPRA (popup superior) ⬆ más grande
   ========================================================= */
.noti-compra {
  background: var(--gris-fondo);
  border-bottom: 1px solid var(--gris-borde);
  padding: 12px 14px;       /* ⬆ 8/12 → 12/14 */
  font-size: 16px;          /* ⬆ 12 → 16 */
  font-weight: 500;
  color: var(--texto-medio);
  text-align: center;
}
.noti-compra span { color: var(--verde); font-weight: 800; }

/* =========================================================
   HEADER — corazón + título  ⬆ título mucho más grande
   ========================================================= */
.header {
  background: linear-gradient(180deg, var(--azul-cielo-2) 0%, var(--azul-cielo) 50%, var(--blanco) 100%);
  text-align: center;
  padding: 36px 18px 28px;
}
.header h1 {
  font-size: 38px;          /* ⬆ 26 → 38 */
  font-weight: 800;
  line-height: 1.12;
  color: var(--rojo);
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.header .corazon {
  width: 180px;             /* ⬆ 140 → 180 */
  height: 180px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .corazon img,
.header .corazon svg { width: 100%; height: 100%; object-fit: contain; }

.subtitle-header {
  font-size: 18px;          /* ⬆ 14 → 18 */
  color: var(--texto);
  font-weight: 500;
  margin-top: 8px;
  line-height: 1.45;
}
.subtitle-header strong { color: var(--rojo); font-weight: 800; }

@media (min-width: 768px) {
  .header h1 { font-size: 52px; }
  .header .corazon { width: 220px; height: 220px; }
  .subtitle-header { font-size: 20px; }
}

/* =========================================================
   CAJA TESTIMONIO AMARILLA (inicial)
   ========================================================= */
.caja-test-amarilla {
  background: #FFF8DC;
  border: 1.5px solid #F0D85C;
  border-radius: 14px;
  padding: 20px 18px;
  margin: 22px auto;
  position: relative;
  box-shadow: var(--sombra-card);
}
.caja-test-amarilla .test-foto {
  width: 100%;
  border-radius: 10px;
  margin: 14px 0 8px;
  background: var(--gris-fondo);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 14px;
}
.caja-test-amarilla .test-texto {
  font-size: 17px;          /* ⬆ 14.5 → 17 */
  line-height: 1.55;
  color: var(--texto);
  font-weight: 500;
}
.caja-test-amarilla .test-meta {
  font-size: 13px;          /* ⬆ 11 → 13 */
  color: var(--texto-medio);
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.caja-test-amarilla .test-hora {
  font-size: 13px;          /* ⬆ 11 → 13 */
  color: #999;
  text-align: right;
  margin-top: 10px;
}

/* =========================================================
   BLOQUE DE PRECIO DESTACADO  ⬆⬆⬆ MUCHO más grande
   ========================================================= */
.precio-destacado {
  text-align: center;
  margin: 36px 0 28px;
  padding: 0 8px;
}
.precio-destacado .precio-de {
  font-size: 30px;          /* ⬆ 18 → 30 */
  font-weight: 800;
  color: var(--rojo-vino);
  text-decoration: line-through;
  text-decoration-color: var(--rojo-vino);
  text-decoration-thickness: 4px;
  line-height: 1.2;
}
.precio-destacado .precio-label {
  font-size: 20px;          /* ⬆ 14 → 20 */
  font-weight: 700;
  color: var(--texto);
  margin: 10px 0 4px;
  letter-spacing: 0.5px;
}
.precio-destacado .precio-grande {
  font-size: 110px;         /* ⬆⬆⬆ 56 → 110 (precio $68 IMPACTANTE) */
  font-weight: 900;
  color: var(--rojo);
  letter-spacing: -4px;
  line-height: 1;
  margin: 4px 0;
}
.precio-destacado .precio-grande sup {
  font-size: 48px;          /* ⬆ 24 → 48 */
  font-weight: 800;
  letter-spacing: 0;
  vertical-align: top;
  margin-right: 4px;
  top: 0.15em;
  position: relative;
}
.precio-destacado .precio-aviso {
  background: var(--rojo);
  color: var(--blanco);
  display: inline-block;
  padding: 8px 22px;        /* ⬆ 4/14 → 8/22 */
  border-radius: 6px;
  font-size: 20px;          /* ⬆ 13 → 20 */
  font-weight: 900;
  letter-spacing: 1.5px;
  margin-top: 12px;
}

@media (min-width: 768px) {
  .precio-destacado .precio-grande { font-size: 140px; }
  .precio-destacado .precio-grande sup { font-size: 60px; }
}

/* =========================================================
   PREGUNTAS / DOLORES DEL LECTOR
   ========================================================= */
.preguntas-dolores {
  margin: 36px 0;
  padding: 0 6px;
}
.preguntas-dolores p {
  font-size: 20px;          /* ⬆ 17 → 20 */
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 16px;
  line-height: 1.4;
}
.preguntas-dolores p::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rojo);
  margin-right: 12px;
  vertical-align: middle;
  margin-bottom: 3px;
}

/* =========================================================
   PÁRRAFOS NARRATIVOS GENERALES
   ========================================================= */
.parrafo {
  font-size: 18px;          /* ⬆ 15.5 → 18 */
  line-height: 1.65;
  color: var(--texto);
  margin: 16px 0;
}
.parrafo strong { color: var(--rojo); font-weight: 800; }
.parrafo em { font-style: italic; }

.destacado-frase {
  font-size: 28px;          /* ⬆ 22 → 28 */
  font-weight: 800;
  color: var(--rojo);
  text-align: center;
  line-height: 1.2;
  margin: 28px 0;
  letter-spacing: -0.5px;
}

/* =========================================================
   TESTIMONIOS — CÁPSULAS ESTILO INSTAGRAM (HTML)
   ========================================================= */
.testimonios-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0;
}

.test-burbuja {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--sombra-card);
  position: relative;
}
.test-burbuja.rosa {
  background: linear-gradient(135deg, #FFF0F5 0%, #FFE5EC 100%);
  border-color: #FFB6CC;
}
.test-burbuja.azul {
  background: linear-gradient(135deg, #F0F8FF 0%, #E3F2FD 100%);
  border-color: #90CAF9;
}
.test-burbuja.amarilla {
  background: linear-gradient(135deg, #FFFEF0 0%, #FFF8DC 100%);
  border-color: #F0D85C;
}

.test-burbuja .test-titulo {
  font-size: 14px;          /* ⬆ 12 → 14 */
  color: var(--texto-medio);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.test-burbuja .test-titulo::before {
  content: "♥";
  color: var(--rosa-acento);
  font-size: 16px;
}
.test-burbuja .test-mensaje {
  font-size: 17px;          /* ⬆ 15 → 17 */
  line-height: 1.5;
  color: var(--texto);
  font-weight: 500;
}
.test-burbuja .test-mensaje strong { font-weight: 800; }

/* =========================================================
   ANILLOS DECORATIVOS
   ========================================================= */
.anillos-divider {
  text-align: center;
  margin: 36px auto;
}
.anillos-divider svg,
.anillos-divider img {
  width: 130px;
  margin: 0 auto;
}

/* =========================================================
   "LO QUE VAS A APRENDER"
   ========================================================= */
.aprender-section {
  margin: 40px 0;
  padding: 0 4px;
}
.aprender-section h2 {
  font-size: 26px;          /* ⬆ 22 → 26 */
  font-weight: 800;
  color: var(--texto);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.beneficio-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 17px;          /* ⬆ 15 → 17 */
  line-height: 1.55;
}
.beneficio-item .check,
.beneficio-item .cruz {
  flex-shrink: 0;
  width: 30px;              /* ⬆ 26 → 30 */
  height: 30px;
  color: var(--blanco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;          /* ⬆ 15 → 17 */
  margin-top: 2px;
}
.beneficio-item .check { background: var(--verde); }
.beneficio-item .cruz  { background: var(--rojo); font-size: 15px; }

.beneficio-item .b-texto strong {
  display: block;
  font-weight: 800;
  color: var(--texto);
  margin-bottom: 4px;
  font-size: 18px;          /* ⬆ 16 → 18 */
}
.beneficio-item .b-texto strong .resalte {
  color: var(--rojo);
}

/* =========================================================
   TESTIMONIOS COMO IMÁGENES (WhatsApp / Instagram screenshots)
   ========================================================= */
.testimonio-imagen {
  margin: 22px auto;
  text-align: center;
}
.testimonio-imagen img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--sombra-card);
  display: block;
  margin: 0 auto;
}

/* =========================================================
   SECCIÓN DE BONOS
   ========================================================= */
.bonos-intro {
  text-align: center;
  margin: 44px 0 26px;
}
.bonos-intro .urgencia-badge {
  display: inline-block;
  background: #FFF3B0;
  color: var(--texto);
  border: 2px solid #F0D85C;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(240, 216, 92, 0.35);
}
.bonos-intro .urgencia-fechas {
  font-size: 28px;
  font-weight: 900;
  color: var(--rojo);
  line-height: 1.25;
  margin: 6px auto 18px;
  letter-spacing: -0.5px;
  padding: 0 8px;
}
.bonos-intro h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--texto);
  line-height: 1.25;
  letter-spacing: -0.3px;
}

@media (min-width: 768px) {
  .bonos-intro .urgencia-badge { font-size: 19px; }
  .bonos-intro .urgencia-fechas { font-size: 34px; }
  .bonos-intro h3 { font-size: 30px; }
}

.bono-card {
  background: var(--blanco);
  border: 2px solid var(--gris-borde);
  border-radius: 14px;
  padding: 20px 18px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--sombra-card);
}
.bono-card .bono-label {
  display: inline-block;
  background: var(--rojo);
  color: var(--blanco);
  font-weight: 800;
  font-size: 15px;          /* ⬆ 13 → 15 */
  padding: 5px 14px;
  border-radius: 6px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.bono-card.sorpresa .bono-label {
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  color: var(--texto);
}
.bono-card h4 {
  font-size: 22px;          /* ⬆ 18 → 22 */
  font-weight: 800;
  color: var(--texto);
  margin-bottom: 12px;
  line-height: 1.25;
}
.bono-card .bono-img {
  width: 100%;
  margin: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.bono-card .bono-img img {
  max-width: 280px;
  width: auto;
  max-height: 240px;
  height: auto;
  display: block;
}
/* Bonos cuyos mockups deben mostrarse más pequeños (3, 4 y 5) */
.bono-card.bono-pequeno .bono-img img {
  max-width: 180px;
  max-height: 160px;
}
/* Placeholder solo cuando la imagen no llegó aún */
.bono-card .bono-img.img-placeholder {
  background: var(--gris-fondo);
  border-radius: 10px;
  min-height: 200px;
  color: #aaa;
  font-size: 14px;
  padding: 12px;
}
.bono-card .bono-desc {
  font-size: 17px;          /* ⬆ 14.5 → 17 */
  line-height: 1.55;
  color: var(--texto);
  margin: 12px 0;
}
.bono-card .bono-desc strong { color: var(--rojo); font-weight: 800; }
.bono-card .bono-precio {
  display: inline-block;
  background: var(--gris-fondo);
  border: 1.5px dashed var(--rojo);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 17px;          /* ⬆ 14 → 17 */
  font-weight: 800;
  color: var(--rojo);
  margin-top: 10px;
}
.bono-card .bono-precio s {
  color: var(--texto-medio);
  font-weight: 600;
}

/* =========================================================
   COMPARATIVA DE PLANES  (fondo rojo oscuro profesional)
   ========================================================= */
.planes-section {
  background: #8B0F1F;
  padding: 44px 20px 36px;
  margin: 52px -20px;
  border-radius: 0;
}
.planes-section h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--blanco);
  margin-bottom: 32px;
  letter-spacing: -0.3px;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.plan-card {
  background: var(--blanco);
  border: 2px solid var(--gris-borde);
  border-radius: 16px;
  padding: 30px 20px 26px;
  margin-bottom: 64px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.plan-card:last-of-type { margin-bottom: 0; }

.plan-card.completo {
  border-color: var(--verde);
  border-width: 3px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  position: relative;
}
.plan-card.completo::before {
  content: "★ EL MÁS VENDIDO ★";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--verde);
  color: var(--blanco);
  padding: 6px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* Label del plan — cuadrito centrado con background */
.plan-card .plan-titulo {
  display: table;
  margin: 0 auto 16px;
  background: #2D2D2D;              /* Plan Básico: gris oscuro */
  color: var(--blanco);
  font-size: 28px;
  font-weight: 800;
  padding: 10px 30px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.1;
}
.plan-card.completo .plan-titulo {
  background: #C2185B;              /* Plan Completo: magenta profesional */
  color: var(--blanco);
}

.plan-card .plan-subt {
  font-size: 16px;
  color: var(--texto);
  margin-bottom: 18px;
  text-align: center;
  line-height: 1.4;
}

.plan-card ul {
  list-style: none;
  margin: 16px 0;
}
.plan-card ul li {
  padding: 8px 0 8px 30px;
  position: relative;
  font-size: 17px;
  line-height: 1.5;
  border-bottom: 1px solid #f0f0f0;
}
.plan-card ul li:last-child { border-bottom: none; }
.plan-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--verde);
  font-weight: 900;
  font-size: 20px;
}

.plan-card .plan-precio {
  text-align: center;
  margin: 20px 0;
}
.plan-card .plan-precio .pp-num {
  font-size: 60px;
  font-weight: 900;
  color: var(--rojo);
  letter-spacing: -2px;
  line-height: 1;
}
.plan-card .plan-precio .pp-cuotas {
  font-size: 16px;
  color: var(--texto);
  margin-top: 8px;
  line-height: 1.4;
}
.plan-card .plan-precio .pp-cuotas strong { color: var(--texto); font-weight: 800; }

/* Mockup del producto dentro del plan completo */
.plan-mockup {
  text-align: center;
  margin: 14px auto 18px;
}
.plan-mockup img {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* =========================================================
   BOTÓN CTA VERDE
   ========================================================= */
.cta-btn {
  display: block;
  width: 100%;
  background: var(--verde);
  color: var(--blanco);
  font-family: var(--sans);
  font-weight: 800;
  font-size: 22px;          /* ⬆ 18 → 22 */
  text-align: center;
  padding: 20px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: var(--sombra-btn);
  transition: transform 0.1s, background 0.15s;
  margin: 16px 0;
  text-transform: uppercase;
}
.cta-btn:hover { background: var(--verde-hover); }
.cta-btn:active { transform: translateY(2px); box-shadow: 0 2px 0 rgba(0,0,0,0.15); }
.cta-btn.pulsar { animation: pulsar 1.6s infinite; }
@keyframes pulsar {
  0%, 100% { box-shadow: 0 4px 0 rgba(0,0,0,0.15), 0 0 0 0 rgba(0,189,57,0.5); }
  50% { box-shadow: 0 4px 0 rgba(0,0,0,0.15), 0 0 0 14px rgba(0,189,57,0); }
}
.cta-btn.basico { background: #999; }
.cta-btn.basico:hover { background: #777; }

/* =========================================================
   AVISO DE URGENCIA
   ========================================================= */
.aviso-urgencia {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--blanco);
  margin: 24px 0 0;
  line-height: 1.4;
  text-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.aviso-urgencia strong { color: var(--blanco); }

/* =========================================================
   RESUMEN FINAL
   ========================================================= */
.resumen {
  background: linear-gradient(180deg, #FFF8F8 0%, var(--blanco) 100%);
  border-top: 3px solid var(--rojo);
  border-bottom: 3px solid var(--rojo);
  padding: 36px 20px;
  margin: 44px -20px;
}
.resumen h3 {
  font-size: 26px;          /* ⬆ 22 → 26 */
  font-weight: 800;
  color: var(--rojo);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.resumen p {
  font-size: 17px;          /* ⬆ 15 → 17 */
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--texto);
}
.resumen p strong { color: var(--rojo); font-weight: 800; }
.resumen .resumen-final {
  font-size: 18px;          /* ⬆ 16 → 18 */
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-section {
  margin: 44px 0;
}
.faq-section h3 {
  font-size: 25px;          /* ⬆ 21 → 25 */
  font-weight: 800;
  color: var(--rojo);
  text-align: center;
  margin: 32px 0 20px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.faq-section p {
  font-size: 17.5px;        /* ⬆ 15.5 → 17.5 */
  line-height: 1.65;
  margin-bottom: 14px;
  color: var(--texto);
}
.faq-section p strong { color: var(--texto); font-weight: 800; }
.faq-section .razon {
  font-weight: 800;
  color: var(--texto);
}

/* =========================================================
   ICONOS / IMÁGENES DECORATIVAS
   ========================================================= */
.icono-decorativo {
  text-align: center;
  margin: 28px 0;
}
.icono-decorativo img {
  max-width: 240px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.icono-decorativo .icono-box {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  background: var(--gris-fondo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 14px;
}

/* Sello de garantía */
.sello-garantia {
  width: 160px;             /* ⬆ 140 → 160 */
  height: 160px;
  margin: 16px auto;
  background: radial-gradient(circle, #FFD700 0%, #D4AF37 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texto);
  font-weight: 800;
  font-size: 21px;          /* ⬆ 18 → 21 */
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 4px 12px rgba(212,175,55,0.4);
  position: relative;
}
.sello-garantia::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px dashed var(--texto);
  border-radius: 50%;
}
.sello-garantia span { z-index: 1; position: relative; }

/* =========================================================
   SECCIÓN AUTORA
   ========================================================= */
.sobre-autora {
  background: var(--gris-fondo);
  padding: 36px 20px;
  margin: 44px -20px 0;
  border-radius: 18px 18px 0 0;
}
.sobre-autora .foto-autora {
  width: 220px;
  margin: 0 auto 18px;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  box-shadow: var(--sombra-card);
}
.sobre-autora .foto-autora img {
  width: 100%;
  height: auto;
  display: block;
}

/* Sello de garantía (imagen) */
.logo-garantia {
  width: 160px;
  height: auto;
  margin: 16px auto;
  display: block;
}
@media (min-width: 768px) {
  .logo-garantia { width: 180px; }
}
.sobre-autora h3 {
  font-size: 30px;          /* ⬆ 26 → 30 */
  font-weight: 800;
  color: var(--texto);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.sobre-autora p {
  font-size: 17px;          /* ⬆ 15 → 17 */
  line-height: 1.65;
  margin-bottom: 14px;
  color: var(--texto);
}
.sobre-autora p strong { color: var(--rojo); font-weight: 800; }
.sobre-autora .insta {
  text-align: center;
  font-weight: 700;
  margin: 20px 0;
}
.sobre-autora .insta a {
  color: var(--rojo);
  text-decoration: none;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--negro);
  color: var(--blanco);
  text-align: center;
  padding: 24px 18px;
  font-size: 15px;          /* ⬆ 13 → 15 */
  margin-top: 0;
}
.footer strong { color: var(--blanco); }

/* =========================================================
   PLACEHOLDER GENÉRICO
   ========================================================= */
.img-placeholder {
  background: repeating-linear-gradient(
    45deg,
    #f0f0f0,
    #f0f0f0 10px,
    #fafafa 10px,
    #fafafa 20px
  );
  border: 1px dashed #ccc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 13px;
  text-align: center;
  padding: 14px;
  font-style: italic;
}

/* =========================================================
   NOTIFICACIÓN FLOTANTE DE COMPRA — social proof en vivo
   ========================================================= */
.purchase-notif {
  position: fixed;
  bottom: 16px;
  left: 12px;
  z-index: 9998;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 12px 14px 12px 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18),
              0 2px 6px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  max-width: calc(100vw - 24px);
  /* Estado inicial: fuera de pantalla a la izquierda */
  transform: translate3d(-120%, 0, 0);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1),
              opacity 0.35s ease;
  pointer-events: none;
  /* Performance hints */
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.purchase-notif.visible {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  pointer-events: auto;
}

.pn-icono {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #00D048, #00A632);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 3px 8px rgba(0,189,57,0.35);
}

.pn-texto {
  font-size: 13px;
  line-height: 1.35;
  color: #2D2D2D;
  flex: 1;
  min-width: 0;
}
.pn-linea1 {
  font-weight: 600;
}
.pn-linea1 .pn-nombre {
  color: #00A632;
  font-weight: 800;
}
.pn-linea1 .pn-plan {
  font-weight: 800;
  color: #2D2D2D;
}
.pn-linea2 {
  font-size: 11.5px;
  color: #888;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .purchase-notif {
    bottom: 20px;
    left: 20px;
    min-width: 300px;
  }
  .pn-texto { font-size: 14px; }
  .pn-linea2 { font-size: 12px; }
}

/* =========================================================
   POPUP DOWNSELL — "Última oportunidad" al hacer clic en Plan Básico
   Estilo modelado del BR: fondo crema, precio verde, urgencia rosa
   ========================================================= */
.downsell-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 12px;
  overflow-y: auto;
  animation: dsFadeIn 0.25s ease;
  -webkit-overflow-scrolling: touch;
}
.downsell-overlay.abierto { display: flex; }

@keyframes dsFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes dsSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.downsell-content {
  background: #F5EFE6;              /* crema/beige suave como el BR */
  border-radius: 18px;
  padding: 44px 24px 28px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: dsSlideUp 0.35s ease;
  margin: auto;
  text-align: center;
}

/* Botón cerrar (X) esquina superior derecha */
.downsell-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  border: none;
  color: #4A4A4A;
  font-size: 26px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.downsell-close:hover {
  background: rgba(0,0,0,0.15);
  color: #000;
  transform: scale(1.08);
}

/* Mockup al inicio del popup */
.downsell-mockup {
  text-align: center;
  margin: 6px auto 18px;
}
.downsell-mockup img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Título grande gris/negro */
.downsell-titulo {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: #4A4A4A;
  line-height: 1.3;
  margin: 6px 0 20px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

/* Precio verde grande */
.downsell-precio {
  text-align: center;
  font-size: 82px;
  font-weight: 900;
  color: #00C853;
  letter-spacing: -3px;
  line-height: 1;
  margin: 4px 0;
}
.downsell-precio .ds-signo {
  font-size: 48px;
  font-weight: 800;
  margin-right: 4px;
  vertical-align: top;
  position: relative;
  top: 0.15em;
}
.downsell-mxn {
  font-size: 17px;
  font-weight: 800;
  color: #00A632;
  text-align: center;
  margin: 4px 0 22px;
  letter-spacing: 0.3px;
}

/* Texto urgencia rosa/rojo */
.downsell-urgencia {
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  color: #E91E63;
  line-height: 1.4;
  margin: 8px 0 22px;
  padding: 0 8px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

/* Botón verde principal — CTA del downsell */
.downsell-cta {
  font-size: 20px;
  padding: 18px 14px;
  box-shadow: 0 0 24px rgba(0, 189, 57, 0.4),
              0 4px 0 rgba(0,0,0,0.15);
  margin: 8px 0 6px;
}

/* Botón secundario gris "no gracias" */
.downsell-decline {
  display: block;
  text-align: center;
  background: #B0B0B0;
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 700;
  padding: 14px 16px;
  border-radius: 10px;
  margin: 12px auto 0;
  text-decoration: none;
  transition: background 0.15s;
  max-width: 320px;
}
.downsell-decline:hover {
  background: #999;
}

/* Bloquear scroll del body cuando el modal está abierto */
body.modal-abierto {
  overflow: hidden;
}

@media (min-width: 768px) {
  .downsell-titulo { font-size: 22px; }
  .downsell-precio { font-size: 96px; }
  .downsell-precio .ds-signo { font-size: 56px; }
  .downsell-urgencia { font-size: 16px; }
}

/* =========================================================
   UTILIDADES
   ========================================================= */
.tachado { text-decoration: line-through; color: var(--rojo-vino); }
.centro { text-align: center; }
.mt-md { margin-top: 20px; }
.mb-md { margin-bottom: 20px; }
.bold { font-weight: 800; }
.rojo { color: var(--rojo); }
.subrayado-italica { font-style: italic; text-decoration: underline; }

/* Fuerza texto en color negro (sobre-escribe reglas contextuales que lo pintan de rojo) */
.negro,
strong.negro,
span.negro { color: var(--texto) !important; font-weight: 800; }
