/* =========================================================
   WOOLY MASTER DOCUMENT - STYLES.CSS
   ---------------------------------------------------------
   OBJETIVO:
   - Dar estilo al manual / landing de campaña Día de la Madre
   - Mantener una experiencia visual clara, vertical y mobile-first
   - Reforzar jerarquía, lectura rápida y CTA final
========================================================= */

/* =========================================================
   01. VARIABLES GLOBALES
   ---------------------------------------------------------
   Aquí vive el sistema visual base:
   - colores de marca
   - radios
   - sombras
   - transición general
========================================================= */
:root {
  /* Colores principales de marca */
  --color-primary: #1d8299;
  --color-primary-light: #e8f6f9;
  --color-secondary: #fce7f3;
  --color-secondary-strong: #f286be;
  --color-accent: #f5b025;

  /* Colores de fondo y texto */
  --color-bg: #fff5f7;
  --color-text: #1e293b;
  --color-muted: #64748b;
  --color-white: #ffffff;

  /* Colores funcionales */
  --color-whatsapp: #25d366;
  --color-danger: #ef4444;
  --color-danger-light: #fef2f2;
  --color-success: #10b981;

  /* Radios reutilizables */
  --radius: 20px;
  --radius-sm: 12px;
  --radius-md: 16px;

  /* Sombras */
  --shadow: 0 8px 30px rgba(242, 134, 190, 0.12);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-turquoise: 0 10px 25px rgba(29, 130, 153, 0.4);

  /* Transición general */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================
   02. RESET BÁSICO
   ---------------------------------------------------------
   Limpia estilos por defecto del navegador y unifica caja
========================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
}

/* =========================================================
   03. BODY GLOBAL
   ---------------------------------------------------------
   Base general del documento:
   - tipografía
   - fondo
   - color de texto
   - interlineado
========================================================= */
body {
  font-family: "Outfit", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
}

/* =========================================================
   04. CONTENEDOR GENERAL
   ---------------------------------------------------------
   Limita el ancho del contenido para lectura vertical
   tipo documento / mobile-first
========================================================= */
.container {
  max-width: 550px;
  margin: 0 auto;
  padding: 20px;
}

/* =========================================================
   05. UTILIDADES REUTILIZABLES
   ---------------------------------------------------------
   Clases pequeñas que ayudan a no repetir estilos
========================================================= */
.lead-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.center-message {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 20px;
  text-align: center;
}

.text-primary-strong {
  color: var(--color-primary);
}

.eyebrow-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-muted);
  margin-bottom: 10px;
}

.mini-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-title-danger {
  color: var(--color-danger);
}

.mini-title-primary {
  color: var(--color-primary);
}

.icon-danger {
  color: var(--color-danger);
}

/* =========================================================
   06. ANIMACIÓN DE ENTRADA
   ---------------------------------------------------------
   Se usa junto con JS para revelar bloques al hacer scroll
========================================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   HERO / PORTADA MEJORADO
   ---------------------------------------------------------
   OBJETIVO:
   - Dar más impacto visual al primer bloque
   - Mejorar jerarquía del título
   - Hacer que se sienta más landing y menos documento
   - Mantener el mismo HTML actual
========================================================= */
.header {
  position: relative;
  text-align: center;
  padding: 56px 24px 40px;
  margin-bottom: 30px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(242, 134, 190, 0.18), transparent 38%),
    radial-gradient(circle at top right, rgba(29, 130, 153, 0.18), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #fff7fa 100%);
  border: 1px solid rgba(242, 134, 190, 0.18);
  box-shadow:
    0 16px 45px rgba(242, 134, 190, 0.12),
    0 8px 20px rgba(29, 130, 153, 0.08);
}

/* Brillo decorativo superior */
.header::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(245, 176, 37, 0.20) 0%, transparent 70%);
  pointer-events: none;
}

/* Línea decorativa inferior */
.header::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary-strong),
    var(--color-accent)
  );
  opacity: 0.9;
}

.badge-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), #166071);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(29, 130, 153, 0.22);
  position: relative;
  z-index: 1;
}

.logo {
  width: 150px;
  margin: 0 auto 22px;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.06));
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.05;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

.hero-title span {
  display: block;
  margin-top: 8px;
  font-size: 3rem;
  line-height: 0.95;
  font-weight: 800;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary-strong)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-p {
  max-width: 420px;
  margin: 0 auto 28px;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Caja de frase principal */
.phrase-section {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: 0 auto;
  padding: 18px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(242, 134, 190, 0.22);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transform: none;
}

.phrase {
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 700;
  color: var(--color-text);
}

.highlight-box {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--color-secondary-strong),
    #d96aa5
  );
  color: var(--color-white);
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(242, 134, 190, 0.18);
}

/* =========================================================
   HERO RESPONSIVE
========================================================= */
@media (min-width: 768px) {
  .header {
    padding: 68px 40px 48px;
    border-radius: 32px;
  }

  .hero-title {
    font-size: 3.1rem;
  }

  .hero-title span {
    font-size: 4rem;
  }

  .hero-p {
    font-size: 1.1rem;
  }

  .phrase {
    font-size: 1.12rem;
  }
}


/* =========================================================
   08. TARJETAS DE BLOQUES
   ---------------------------------------------------------
   Tarjeta base usada en las secciones del documento
========================================================= */
.section-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 30px 22px;
  margin-bottom: 25px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(242, 134, 190, 0.2);
}

/* Etiqueta pequeña superior */
.tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--color-secondary);
  color: var(--color-secondary-strong);
  border-radius: 10px;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tagline-danger {
  background: var(--color-danger-light);
  color: var(--color-danger);
}

/* Títulos secundarios generales */
h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--color-text);
  line-height: 1.2;
}

h2 span {
  color: var(--color-secondary-strong);
}

/* Cajas de cita / remate */
.quote-block {
  text-align: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 15px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  border-left: 4px solid var(--color-primary);
}

.quote-block-secondary {
  background: var(--color-secondary);
  color: var(--color-secondary-strong);
  border-left-color: var(--color-secondary-strong);
}

.quote-block-big {
  font-size: 1.3rem;
}

/* =========================================================
   BLOQUE 09 - ACTIVACIÓN DE OPORTUNIDAD
   ---------------------------------------------------------
   OBJETIVO:
   - Generar interés inmediato
   - Romper mentalidad pasiva
   - Hacer que el usuario diga "esto es real"
========================================================= */

/* Mejora general de tarjetas */
.section-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 26px 20px;
  margin-bottom: 26px;
  border: 1px solid rgba(29, 130, 153, 0.12);
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.05),
    0 4px 10px rgba(29, 130, 153, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section-card:hover {
  transform: translateY(-2px);
}

/* Frase clave */
.lead-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 14px 0 10px;
}

/* Lista mejorada */
.bullet-list {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
}

/* icono tipo check elegante */
.bullet-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary-strong)
  );
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  margin-top: 2px;
}

/* Cita final potente */
.quote-block {
  margin-top: 20px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(29, 130, 153, 0.08),
    rgba(242, 134, 190, 0.08)
  );
  border: 1px solid rgba(29, 130, 153, 0.15);
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
  color: var(--color-text);
  line-height: 1.4;
}

/* =========================================================
   BLOQUE 10 - DIAGNÓSTICO COMERCIAL MEJORADO
   ---------------------------------------------------------
   OBJETIVO:
   - Marcar mejor el contraste entre error y método
   - Dar más jerarquía a las tarjetas comparativas
   - Hacer que se sienta más venta y menos documento
========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
}

.diagnostic-card {
  position: relative;
  padding: 22px 18px 18px;
  border-radius: 22px;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.diagnostic-card:hover {
  transform: translateY(-3px);
}

/* -------------------------
   TARJETA NEGATIVA
------------------------- */
.diagnostic-card.bad {
  background: linear-gradient(180deg, #fff7f7 0%, #fff1f2 100%);
  border-color: rgba(239, 68, 68, 0.16);
}

.diagnostic-card.bad::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #ef4444 0%, #f87171 100%);
}

/* -------------------------
   TARJETA POSITIVA
------------------------- */
.diagnostic-card.good {
  background: linear-gradient(180deg, #f4fcfe 0%, #ecfdf5 100%);
  border-color: rgba(29, 130, 153, 0.18);
}

.diagnostic-card.good::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-success) 100%);
}

/* -------------------------
   LISTA INTERNA
------------------------- */
.diagnostic-list {
  list-style: none;
  margin-top: 14px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.diagnostic-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--color-text);
  font-weight: 500;
}

.diagnostic-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  font-weight: 800;
  color: currentColor;
}

/* -------------------------
   CAJAS DE RESULTADO
------------------------- */
.result-box {
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  border: 1px dashed transparent;
}

.result-box-danger {
  background: rgba(239, 68, 68, 0.08);
  color: #b91c1c;
  border-color: rgba(239, 68, 68, 0.22);
}

.result-box-primary {
  background: rgba(29, 130, 153, 0.08);
  color: #0f766e;
  border-color: rgba(29, 130, 153, 0.22);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .diagnostic-card {
    padding: 24px 20px 20px;
  }

  .diagnostic-list li {
    font-size: 0.95rem;
  }
}

/* =========================================================
   11. RENTABILIDAD
   ---------------------------------------------------------
   Tarjeta destacada de inversión / ventas / ganancia
========================================================= */
/* =========================================================
   ---------------------------------------------------------
   OBJETIVO:
   - Mostrar oportunidad económica con claridad
   - Evitar exceso visual
   - Mejorar lectura en móvil
   - Dar sensación de bloque premium y comercial
========================================================= */

.profit-card {
  background: #ffffff;
  border: 1px solid rgba(29, 130, 153, 0.12);
  border-radius: 24px;
  padding: 22px 18px;
  margin-top: 20px;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.05),
    0 4px 10px rgba(29, 130, 153, 0.04);
}

/* -------------------------
   GRID DE MÉTRICAS
------------------------- */
.profit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.profit-item {
  background: #f8fbfc;
  border: 1px solid rgba(29, 130, 153, 0.08);
  border-radius: 16px;
  padding: 14px 14px;
  text-align: left;
}

.profit-item.full-width {
  grid-column: auto;
}

/* Etiqueta pequeña */
.profit-item span {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-muted);
  margin-bottom: 4px;
}

/* Valor principal */
.profit-item strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
}

.profit-note {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  color: var(--color-muted);
}

/* -------------------------
   GANANCIA DESTACADA
------------------------- */
.profit-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 8px;
}

.profit-big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--color-primary), #166071);
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 10px 18px rgba(29, 130, 153, 0.18);
}

/* -------------------------
   MENSAJES DE REFUERZO
------------------------- */
.message-stack-center {
  margin-top: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.message-main {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}

.center-divider {
  width: 70px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary-strong)
  );
  margin: 0 auto;
  opacity: 0.8;
}

.message-accent {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.45;
}

/* -------------------------
   RESPONSIVE
------------------------- */
@media (min-width: 560px) {
  .profit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .profit-item.full-width {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  .profit-card {
    padding: 26px 24px;
  }

  .profit-big {
    font-size: 2rem;
  }

  .profit-item strong {
    font-size: 1.2rem;
  }
}


/* =========================================================
   BLOQUE 12 - REGLA DE ORO MEJORADO
   ---------------------------------------------------------
   OBJETIVO:
   - Mostrar transformación de producto a emoción
   - Hacer el bloque más claro, visual y elegante
   - Mejorar lectura en móvil
========================================================= */

.center-message {
  margin: 16px 0 22px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--color-text);
}

.text-primary-strong {
  display: inline-block;
  margin-top: 6px;
  color: var(--color-primary);
  font-weight: 800;
}

.eyebrow-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  color: var(--color-muted);
  text-align: center;
  margin-bottom: 14px;
}

/* Contenedor general */
.gold-rule-grid {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

/* Tarjeta de transformación */
.rule-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 16px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
  border: 1px solid rgba(29, 130, 153, 0.10);
  box-shadow:
    0 8px 18px rgba(15, 23, 42, 0.04),
    0 3px 8px rgba(29, 130, 153, 0.03);
}

/* Lado izquierdo: producto literal */
.rule-item .cross {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  padding: 10px 12px;
  min-height: 48px;
  border-radius: 14px;
  background: #fff5f5;
  color: #b91c1c;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
}

/* Flecha central */
.rule-item .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(29, 130, 153, 0.12),
    rgba(242, 134, 190, 0.12)
  );
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Lado derecho: significado emocional */
.rule-item .check {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  padding: 10px 12px;
  min-height: 48px;
  border-radius: 14px;
  background: #f3fbf8;
  color: #0f766e;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

/* Responsive móvil más compacto */
@media (max-width: 480px) {
  .rule-item {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .rule-item .cross,
  .rule-item .check {
    justify-content: center;
  }

  .rule-item .arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }
}

/* Tablet / desktop */
@media (min-width: 768px) {
  .center-message {
    font-size: 1.05rem;
  }

  .rule-item {
    padding: 18px 16px;
  }

  .rule-item .cross,
  .rule-item .check {
    font-size: 0.95rem;
  }
}
/* =========================================================
   13. BLOQUE DE ERRORES
/* =========================================================
   BLOQUE 05 - ERRORES CRÍTICOS MEJORADO
   ---------------------------------------------------------
   OBJETIVO:
   - Hacer el bloque más claro y más contundente
   - Mejorar lectura rápida en móvil
   - Dar sensación de alerta real de negocio
========================================================= */

.error-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

/* Tarjeta individual de error */
.error-item {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
  border: 1px solid rgba(239, 68, 68, 0.12);
  border-left: 5px solid #ef4444;
  border-radius: 18px;
  padding: 16px 14px 14px;
  box-shadow:
    0 8px 18px rgba(15, 23, 42, 0.04),
    0 3px 8px rgba(239, 68, 68, 0.03);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.error-item:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 24px rgba(15, 23, 42, 0.06),
    0 4px 10px rgba(239, 68, 68, 0.05);
}

/* Título del error */
.error-item h4 {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.98rem;
  line-height: 1.3;
  color: #b91c1c;
  font-weight: 800;
}

/* Explicación */
.error-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 10px;
  font-weight: 500;
}

/* Resultado / consecuencia */
.error-item .result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.07);
  border: 1px dashed rgba(239, 68, 68, 0.20);
  color: #b91c1c;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

/* Caso más severo */
.result-severe {
  background: rgba(127, 29, 29, 0.08) !important;
  border-color: rgba(127, 29, 29, 0.25) !important;
  color: #7f1d1d !important;
}

/* Tablet / desktop */
@media (min-width: 768px) {
  .error-list {
    gap: 16px;
  }

  .error-item {
    padding: 18px 16px 16px;
  }

  .error-item h4 {
    font-size: 1rem;
  }

  .error-item p {
    font-size: 0.92rem;
  }
} 
 
/* =========================================================
   14. PASO A PASO / TIMELINE
   ---------------------------------------------------------
   Línea vertical con pasos numerados
/* =========================================================
   BLOQUE 06 - PASO A PASO MEJORADO
   ---------------------------------------------------------
   OBJETIVO:
   - Dar sensación de proceso simple y accionable
   - Hacer el timeline más limpio y premium
   - Mejorar lectura en móvil
========================================================= */

/* Contenedor general del timeline */
.step-timeline {
  position: relative;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Línea vertical */
.step-timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 20px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(29, 130, 153, 0.22),
    rgba(242, 134, 190, 0.22)
  );
  border-radius: 999px;
}

/* Cada paso */
.step-item {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 14px;
  z-index: 1;
}

.step-item:last-child {
  margin-bottom: 0;
}

/* Círculo con número */
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #166071);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow:
    0 8px 16px rgba(29, 130, 153, 0.18),
    0 3px 8px rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}

/* Caja del contenido */
.step-content {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
  border: 1px solid rgba(29, 130, 153, 0.10);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  box-shadow:
    0 8px 18px rgba(15, 23, 42, 0.04),
    0 3px 8px rgba(29, 130, 153, 0.03);
}

/* Cita final del bloque */
.quote-block-secondary {
  margin-top: 22px;
  padding: 18px 16px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(242, 134, 190, 0.10),
    rgba(29, 130, 153, 0.08)
  );
  border: 1px solid rgba(242, 134, 190, 0.14);
  text-align: center;
  color: var(--color-text);
  font-weight: 800;
  line-height: 1.45;
}

.quote-block-big {
  display: inline-block;
  margin-top: 6px;
  font-size: 1.08rem;
  color: var(--color-primary);
  font-weight: 800;
}

/* Tablet / desktop */
@media (min-width: 768px) {
  .step-timeline {
    gap: 16px;
  }

  .step-item {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .step-content {
    font-size: 0.98rem;
    padding: 15px 18px;
  }

  .quote-block-big {
    font-size: 1.14rem;
  }
}
/* =========================================================
   15. ESTADÍSTICAS
   ---------------------------------------------------------
/* =========================================================
   BLOQUE 07 - ESTADÍSTICAS MEJORADO
   ---------------------------------------------------------
   OBJETIVO:
   - Reforzar credibilidad con mejor presencia visual
   - Hacer los datos más escaneables
   - Mejorar lectura en móvil
========================================================= */

/* Línea superior de contexto */
.stats-topline {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-primary);
  margin-bottom: 18px;
  opacity: 0.9;
}

/* Grid de estadísticas */
.stats-grid-6 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

/* Tarjeta individual */
.stat-mini-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfd 100%);
  border: 1px solid rgba(29, 130, 153, 0.10);
  border-radius: 18px;
  padding: 18px 14px;
  text-align: center;
  box-shadow:
    0 8px 18px rgba(15, 23, 42, 0.04),
    0 3px 8px rgba(29, 130, 153, 0.03);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.stat-mini-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 22px rgba(15, 23, 42, 0.06),
    0 4px 10px rgba(29, 130, 153, 0.04);
}

/* Número o dato principal */
.stat-mini-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 900;
  color: var(--color-primary);
}

/* Texto de apoyo */
.stat-mini-card span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--color-text);
  font-weight: 600;
}

/* Variante para cifras un poco más largas */
.stat-strong-sm {
  font-size: 1.15rem !important;
  line-height: 1.15 !important;
}

/* Tablet */
@media (min-width: 560px) {
  .stats-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop */
@media (min-width: 768px) {
  .stats-topline {
    font-size: 0.8rem;
    margin-bottom: 20px;
  }

  .stat-mini-card {
    padding: 20px 16px;
  }

  .stat-mini-card strong {
    font-size: 1.55rem;
  }

  .stat-mini-card span {
    font-size: 0.84rem;
  }

  .stat-strong-sm {
    font-size: 1.2rem !important;
  }
}

/* =========================================================
   16. CTA FINAL
   ---------------------------------------------------------
/* =========================================================
   BLOQUE 08 - CTA FINAL MEJORADO
   ---------------------------------------------------------
   OBJETIVO:
   - Cerrar con urgencia y claridad
   - Dar más peso visual al llamado a la acción
   - Hacer que los botones se sientan premium y accionables
========================================================= */

.cta-footer-card {
  position: relative;
  overflow: hidden;
  padding: 30px 20px 26px;
  margin-bottom: 26px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(242, 134, 190, 0.10), transparent 35%),
    radial-gradient(circle at top left, rgba(29, 130, 153, 0.10), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #fffafc 100%);
  border: 1px solid rgba(242, 134, 190, 0.16);
  box-shadow:
    0 14px 32px rgba(15, 23, 42, 0.06),
    0 4px 12px rgba(242, 134, 190, 0.05);
  text-align: center;
}

.cta-footer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary-strong),
    var(--color-accent)
  );
}

/* -------------------------
   TITULAR FINAL
------------------------- */
.cta-title {
  font-size: 1.65rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 18px;
}

.cta-title span {
  color: var(--color-primary);
}

/* -------------------------
   BLOQUE DE REFUERZO
------------------------- */
.reinforcement-list {
  text-align: left;
  background: linear-gradient(180deg, #fff7f8 0%, #ffffff 100%);
  border: 1px solid rgba(239, 68, 68, 0.10);
  border-radius: 20px;
  padding: 18px 16px;
  margin: 22px 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.reinforcement-list p {
  margin-bottom: 10px;
  font-size: 0.96rem;
  font-weight: 800;
  color: #b91c1c;
}

.reinforcement-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reinforcement-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--color-text);
  font-weight: 600;
}

.reinforcement-divider-box {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(239, 68, 68, 0.18);
}

.reinforcement-final {
  margin-bottom: 0 !important;
  font-size: 0.98rem;
  color: var(--color-primary) !important;
  font-weight: 800;
}

/* -------------------------
   SUBTÍTULO Y APOYO
------------------------- */
.cta-subtitle {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--color-text);
}

.cta-support {
  margin-bottom: 20px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--color-muted);
  font-weight: 600;
}

/* -------------------------
   BOTONERA
------------------------- */
.btn-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.btn-stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 14px;
  text-decoration: none;
  text-align: center;
  border-radius: 18px;
  border: 1px solid transparent;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
  box-shadow:
    0 10px 20px rgba(15, 23, 42, 0.08),
    0 4px 10px rgba(15, 23, 42, 0.04);
}

.btn-stacked strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.25;
}

.btn-stacked > span {
  font-size: 0.76rem;
  line-height: 1.35;
  font-weight: 500;
  opacity: 0.95;
  max-width: 260px;
}

/* Variantes */
.btn-style-1 {
  background: linear-gradient(135deg, var(--color-primary), #166071);
  color: #ffffff;
}

.btn-style-2 {
  background: linear-gradient(135deg, var(--color-secondary-strong), #d96aa5);
  color: #ffffff;
}

.btn-style-wa {
  background: linear-gradient(135deg, var(--color-whatsapp), #1fb956);
  color: #ffffff;
}

.btn-stacked:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

/* -------------------------
   MICRO CIERRE
------------------------- */
.micro-cierre {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(29, 130, 153, 0.16);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 800;
  color: var(--color-text);
}

.micro-cierre span {
  color: var(--color-primary);
}

/* -------------------------
   RESPONSIVE
------------------------- */
@media (min-width: 768px) {
  .cta-footer-card {
    padding: 34px 26px 30px;
  }

  .cta-title {
    font-size: 1.9rem;
  }

  .cta-subtitle {
    font-size: 1.4rem;
  }

  .btn-stacked {
    padding: 18px 16px;
  }

  .btn-stacked strong {
    font-size: 1rem;
  }

  .btn-stacked > span {
    font-size: 0.8rem;
    max-width: 320px;
  }
}

/* =========================================================
   17. FOOTER
========================================================= */
.footer {
  text-align: center;
  padding: 20px 0 40px;
  color: var(--color-muted);
  font-size: 0.8rem;
}

/* =========================================================
   18. RESPONSIVE
   ---------------------------------------------------------
   A partir de 500px la grilla de diagnóstico se vuelve doble
========================================================= */
@media (min-width: 500px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
   BOTONES FLOTANTES - WOOLY (3 CTAs)
   Orden:
   1. Catálogo
   2. Packs
   3. Asesora
========================================================= */

.floating-shortcuts {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =======================
   BASE BOTÓN
======================= */
.floating-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  transition: all 0.25s ease;
}

.floating-btn i {
  width: 18px;
  height: 18px;
}

/* =======================
   CATÁLOGO (#166071)
======================= */
.btn-catalogo {
  background: #166071;
}

.btn-catalogo:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(22, 96, 113, 0.35);
}

/* =======================
   PACKS (#d96aa5)
======================= */
.btn-packs {
  background: #d96aa5;
}

.btn-packs:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(217, 106, 165, 0.35);
}

/* =======================
   ASESORA (#1fb956) - CTA FUERTE
======================= */
.btn-asesora {
  background: #1fb956;
  font-weight: 800;
  animation: pulseWsp 2s infinite;
}

.btn-asesora:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 35px rgba(31, 185, 86, 0.4);
}

/* =======================
   ANIMACIÓN (WHATSAPP)
======================= */
@keyframes pulseWsp {
  0% {
    box-shadow: 0 0 0 0 rgba(31, 185, 86, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(31, 185, 86, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(31, 185, 86, 0);
  }
}
.animate-on-scroll {
  opacity: 1 !important;
  transform: none !important;
}