/* =================================================================
   DÍAS NOMILINEA · Edición 2026
   Sistema de diseño — colores de marca
   Teal  #008180   ·   Naranja  #d87625   ·   Blanco
   ================================================================= */

:root {
  /* Marca */
  --teal:        #008180;
  --teal-dark:   #005f5e;
  --teal-darker: #00403f;
  --teal-deep:   #002b2a;
  --teal-soft:   #e6f3f3;
  --teal-tint:   #d3ebea;

  --orange:      #d87625;
  --orange-dark: #b85f16;
  --orange-soft: #fbeadb;

  --white:       #ffffff;
  --cream:       #f7faf9;
  --ink:         #10312f;
  --ink-soft:    #4a615f;
  --line:        #e2eceb;

  /* Degradados */
  --grad-teal:   linear-gradient(135deg, #008180 0%, #005f5e 100%);
  --grad-teal-deep: linear-gradient(160deg, #016d6c 0%, #00403f 60%, #002b2a 100%);
  --grad-orange: linear-gradient(135deg, #e88b3a 0%, #d87625 100%);
  --grad-text:   linear-gradient(120deg, #008180 0%, #d87625 100%);
  --grad-text-l: linear-gradient(120deg, #ffd9b8 0%, #ffb877 100%);

  /* Sombras */
  --sh-sm: 0 2px 8px rgba(0,64,63,.06);
  --sh-md: 0 12px 30px rgba(0,64,63,.10);
  --sh-lg: 0 24px 60px rgba(0,64,63,.16);
  --sh-orange: 0 14px 30px rgba(216,118,37,.35);
  --sh-wa: 0 12px 26px rgba(37,180,90,.32);

  /* Radios */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 36px;

  --wa: #25b45a;
  --wa-dark: #1e9c4c;

  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----------------------------- Reset ---------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; line-height: 1.1; letter-spacing: -.02em; }

.nowrap { white-space: nowrap; }
.only-desktop { display: none; }
@media (min-width: 720px){ .only-desktop { display: inline; } }

/* ------------------------- Utilidades texto --------------------- */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.grad-text-light {
  background: var(--grad-text-l);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: .78rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow--light { color: #ffcf9e; }

/* ------------------------------ Botones ------------------------- */
.btn {
  --pad-y: 14px; --pad-x: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--sm { --pad-y: 10px; --pad-x: 18px; font-size: .9rem; }
.btn--lg { --pad-y: 18px; --pad-x: 34px; font-size: 1.08rem; }
.btn--block { width: 100%; }

.btn--wa { background: var(--wa); color: #fff; box-shadow: var(--sh-wa); }
.btn--wa:hover { background: var(--wa-dark); box-shadow: 0 16px 32px rgba(37,180,90,.42); }

.btn--orange { background: var(--grad-orange); color: #fff; box-shadow: var(--sh-orange); }
.btn--orange:hover { box-shadow: 0 18px 38px rgba(216,118,37,.45); }

.btn--outline { background: transparent; border-color: var(--teal); color: var(--teal); }
.btn--outline:hover { background: var(--teal); color: #fff; }

.btn--white { background: #fff; color: var(--teal-dark); box-shadow: var(--sh-md); }
.btn--white:hover { box-shadow: var(--sh-lg); }

.btn--ghost { background: var(--teal-soft); color: var(--teal-dark); }
.btn--ghost:hover { background: var(--teal-tint); }

.ico-wa { width: 20px; height: 20px; fill: currentColor; flex: none; }
.ico-tour { width: 19px; height: 19px; fill: currentColor; flex: none; }

/* ============================= STICKY BAR ======================= */
.sticky-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: var(--grad-teal-deep);
  color: #fff;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 9px 20px; font-size: .86rem; flex-wrap: wrap;
}
.sticky-bar__text { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.sticky-bar__text strong { color: #ffcf9e; letter-spacing: .04em; }
.sticky-bar__sep { opacity: .5; }
.sticky-bar__count { color: #ffcf9e; font-weight: 700; }
.sticky-bar__cta {
  background: var(--orange); color: #fff; font-weight: 700;
  padding: 6px 16px; border-radius: 100px; font-size: .84rem;
  font-family: 'Poppins', sans-serif; transition: background .2s, transform .2s;
}
.sticky-bar__cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
@media (max-width: 620px){
  .sticky-bar__sep--hide { display: none; }
  .sticky-bar__inner { gap: 10px; padding: 8px 14px; }
}
/* En móvil/tablet no se muestra la barra sticky: solo el navbar */
@media (max-width: 939px){
  .sticky-bar { display: none !important; }
  .sticky-bar.is-visible ~ .nav,
  .nav { top: 0 !important; }
}

/* ============================== NAVBAR ========================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: top .4s var(--ease), background .3s, box-shadow .3s, padding .3s;
}
.sticky-bar.is-visible ~ .nav { top: 40px; }
.nav.is-scrolled { background: rgba(255,255,255,.9); backdrop-filter: blur(14px); box-shadow: var(--sh-sm); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
  padding: 16px 24px;
}
.nav__logo img { height: 46px; width: auto; transition: height .3s; }
.nav.is-scrolled .nav__logo img { height: 40px; }
.nav__links { display: none; gap: 26px; margin-left: 12px; }
.nav__links a {
  font-family: 'Poppins', sans-serif; font-weight: 500; font-size: .94rem;
  color: var(--ink-soft); position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--grad-text); transition: width .25s var(--ease);
}
.nav__links a:hover { color: var(--teal); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: none; gap: 10px; margin-left: auto; }

.nav__toggle {
  margin-left: auto; width: 44px; height: 44px; border: none; background: transparent;
  display: flex; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer;
}
.nav__toggle span { height: 3px; width: 26px; background: var(--teal); border-radius: 3px; transition: .3s var(--ease); }
.nav__toggle.is-open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2){ opacity: 0; }
.nav__toggle.is-open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* Menú móvil */
.nav__mobile {
  position: fixed; inset: 0 0 0 auto; width: min(330px, 86vw); z-index: 55;
  background: #fff; box-shadow: var(--sh-lg);
  transform: translateX(100%); transition: transform .35s var(--ease);
  padding: 76px 26px 28px; display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.nav__mobile.is-open { transform: translateX(0); }
.nav__mobile a:not(.btn) { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.02rem; padding: 15px 6px; border-bottom: 1px solid var(--line); color: var(--ink); transition: color .2s, padding-left .2s; }
.nav__mobile a:not(.btn):hover { color: var(--teal); padding-left: 12px; }
.nav__mobile .btn { margin-top: 12px; width: 100%; }
.nav__mobile .btn:first-of-type { margin-top: 22px; }
/* Botón de cerrar (X) del panel móvil */
.nav__close {
  position: absolute; top: 16px; right: 18px; width: 42px; height: 42px;
  border: 1px solid var(--line); background: var(--cream); border-radius: 50%;
  font-size: 1.5rem; line-height: 1; color: var(--teal-dark); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s, color .2s;
}
.nav__close:hover { background: var(--teal); color: #fff; transform: rotate(90deg); }
.nav__overlay { position: fixed; inset: 0; background: rgba(0,43,42,.4); z-index: 54; opacity: 0; visibility: hidden; transition: .3s; }
.nav__overlay.is-open { opacity: 1; visibility: visible; }

@media (min-width: 940px){
  .nav__links, .nav__actions { display: flex; }
  .nav__toggle { display: none; }
}

/* =============================== HERO =========================== */
.hero {
  position: relative; overflow: hidden;
  padding: 150px 24px 60px;
  background:
    radial-gradient(1200px 600px at 78% -10%, var(--teal-soft), transparent 60%),
    radial-gradient(900px 500px at 0% 20%, #fef2e6, transparent 55%),
    var(--cream);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; }
.blob--1 { width: 460px; height: 460px; background: #7fdad8; top: -120px; right: -80px; animation: float1 14s var(--ease) infinite; }
.blob--2 { width: 380px; height: 380px; background: #f4c088; bottom: -140px; left: -100px; animation: float2 16s var(--ease) infinite; }
.blob--3 { width: 520px; height: 520px; background: #ffb877; opacity: .28; }
.grid-glow { position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px; opacity: .35; mask-image: radial-gradient(700px 500px at 50% 30%, #000, transparent 75%);
}
@keyframes float1 { 50% { transform: translate(-30px, 30px) scale(1.08); } }
@keyframes float2 { 50% { transform: translate(30px, -20px) scale(1.1); } }

.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-sm);
  padding: 8px 16px; border-radius: 100px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .82rem; color: var(--teal-dark);
  margin-bottom: 22px;
}
.badge__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(216,118,37,.5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(216,118,37,0); } 100% { box-shadow: 0 0 0 0 rgba(216,118,37,0); } }

.hero__title {
  font-size: clamp(2.4rem, 6.2vw, 4.3rem);
  font-weight: 800; color: var(--ink);
  margin-bottom: 22px;
}
.hero__lead { font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: var(--ink-soft); max-width: 560px; margin-bottom: 32px; }
.hero__lead strong { color: var(--ink); }
.hero__lead .nowrap { color: var(--teal-dark); font-weight: 700; }

.hero__cta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 34px; max-width: 520px; }
.hero__cta > .btn { width: 100%; }
.hero__cta-sub { display: flex; gap: 12px; }
.hero__cta-sub .btn { flex: 1 1 170px; }

.live-proof {
  display: inline-flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-md);
  padding: 14px 22px; border-radius: var(--r-md);
}
.live-proof__pulse { width: 12px; height: 12px; border-radius: 50%; background: var(--wa); position: relative; flex: none; }
.live-proof__pulse::after { content:''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--wa); animation: ring 1.8s infinite; }
@keyframes ring { 0%{ transform: scale(.6); opacity: .8;} 100%{ transform: scale(1.4); opacity: 0;} }
.live-proof__num { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.9rem; color: var(--teal); line-height: 1; }
.live-proof__label { font-size: .82rem; color: var(--ink-soft); line-height: 1.25; }

/* Hero media (celular) */
.hero__media { position: relative; display: flex; justify-content: center; align-items: center; }
.hero__phone { width: min(500px, 90vw); height: auto; object-fit: contain; filter: drop-shadow(0 40px 60px rgba(0,64,63,.28)); animation: bob 5s var(--ease) infinite; position: relative; z-index: 1; }
.hero__phone-glow { position: absolute; width: 440px; height: 440px; border-radius: 50%; background: var(--grad-teal); filter: blur(60px); opacity: .3; top: 50%; left: 50%; transform: translate(-50%,-50%); }
@keyframes bob { 50% { transform: translateY(-16px); } }
@keyframes bob2 { 50% { transform: translateY(14px); } }

/* Tarjeta flotante del logo, enfrente de la laptop */
.hero__logo-card {
  position: absolute; z-index: 3;
  left: 2%; bottom: 4%;
  background: #fff; border-radius: var(--r-lg);
  padding: 22px 26px;
  box-shadow: 0 26px 55px rgba(0,64,63,.24);
  border: 1px solid rgba(255,255,255,.7);
  animation: bob2 6s var(--ease) infinite;
}
.hero__logo-card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--r-lg);
  padding: 2px; background: var(--grad-text);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .5; pointer-events: none;
}
.hero__logo-card img { width: clamp(120px, 15vw, 190px); height: auto; display: block; }

@media (min-width: 940px){
  .hero { padding: 190px 24px 40px; }
  .hero__inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero__phone { width: min(620px, 50vw); }
  .hero__phone-glow { width: 520px; height: 520px; }
  .hero__logo-card { left: auto; right: 4%; bottom: 8%; }
}
/* Tarjeta del logo en móvil: más compacta y sin salirse */
@media (max-width: 560px){
  .hero__logo-card { left: 4%; bottom: 2%; padding: 14px 18px; border-radius: var(--r-md); }
  .hero__logo-card img { width: clamp(96px, 30vw, 130px); }
}

/* ============ AJUSTES RESPONSIVE (centrado + sin cortes) ============ */
@media (max-width: 860px){
  /* Todo el texto centrado en pantallas chicas */
  .hero__content { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__cta { width: 100%; max-width: 460px; margin-left: auto; margin-right: auto; }
  .hero__cta .btn { width: 100%; }
  .hero__cta-sub { flex-direction: column; }
  /* En columna, evitar que flex-basis se convierta en alto gigante */
  .hero__cta-sub .btn { flex: 0 0 auto; }

  .modulo__content, .acomp__content { text-align: center; }
  .modulo__lead, .acomp__lead { margin-left: auto; margin-right: auto; }
  /* Las listas de viñetas se alinean a la izquierda (más legibles) */
  .modulo__list, .acomp__points { max-width: 480px; margin-left: auto; margin-right: auto; text-align: left; }
  .modulo__list li,
  .acomp__point, .acomp__point h4, .acomp__point p { text-align: left; }
}

@media (max-width: 560px){
  /* Botones grandes: permitir que el texto acomode y no se corte */
  .btn { white-space: normal; text-align: center; }
  .btn--lg { --pad-x: 18px; font-size: 1rem; }
  .hero__cta .btn { --pad-y: 16px; }
  .finalcta__btns { width: 100%; }
  .finalcta__btns .btn { width: 100%; }
}
/* Nota: los ajustes del contador regresivo en móvil van al FINAL del
   archivo, después de sus reglas base, para no perder por orden de cascada. */

/* ===================== SECCIÓN URGENCIA ===================== */
/* Contador + prueba social, como su propia sección debajo del hero */
.urgency {
  position: relative; overflow: hidden;
  padding: 72px 24px 82px;
  background: linear-gradient(180deg, #ffffff 0%, #eaf5f4 100%);
  border-top: 1px solid var(--line);
}
.urgency::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 620px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,129,128,.10), transparent 68%);
  pointer-events: none;
}
.urgency::after {
  content: ''; position: absolute; bottom: -60px; right: -40px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,118,37,.10), transparent 66%);
  pointer-events: none;
}
.urgency__inner {
  position: relative; z-index: 1;
  max-width: 660px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 26px;
}
.urgency__head { margin-bottom: 6px; max-width: 640px; }
.urgency .countdown { margin: 0; width: 100%; }

/* Prueba social realzada dentro de la sección */
.urgency .live-proof {
  gap: 16px; padding: 16px 26px;
  box-shadow: 0 16px 34px rgba(0,64,63,.12);
}
.urgency .live-proof__num { font-size: 2.1rem; }
.urgency .live-proof__label { font-size: .9rem; }

/* Contador regresivo */
.countdown {
  position: relative; z-index: 1;
  max-width: 640px; margin: 56px auto 0; text-align: center;
  background: var(--grad-teal-deep); color: #fff;
  border-radius: var(--r-lg); padding: 30px 24px 26px;
  box-shadow: var(--sh-lg);
}
.countdown__title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .95rem; letter-spacing: .04em; color: #cfeae9; margin-bottom: 18px; text-transform: uppercase; }
.countdown__grid, .finalcta__count { display: flex; justify-content: center; gap: 12px; }
.countdown__cell {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md); padding: 14px 8px; min-width: 74px; backdrop-filter: blur(4px);
}
.countdown__n { display: block; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 6vw, 2.6rem); line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.countdown__u { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: #a9d4d3; margin-top: 6px; }
.countdown__foot { margin-top: 18px; font-size: .82rem; color: #a9d4d3; }
.countdown__cell--light { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.28); }

/* ============================= MARQUEE ========================== */
.marquee { overflow: hidden; background: var(--orange); color: #fff; padding: 12px 0; margin-top: 0; }
.marquee__track { display: inline-flex; align-items: center; gap: 28px; white-space: nowrap; animation: scroll 24s linear infinite; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: .02em; }
.marquee__track .dot { opacity: .6; font-size: .6rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================= SECTIONS ========================= */
.section { max-width: var(--maxw); margin: 0 auto; padding: 90px 24px; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section__title { font-size: clamp(1.9rem, 4.6vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.section__sub { font-size: 1.08rem; color: var(--ink-soft); }
.section__sub strong { color: var(--teal-dark); }

/* ============================== PLANES ========================== */
.planes__grid { display: grid; grid-template-columns: 1fr; gap: 26px; max-width: 920px; margin: 0 auto; }
@media (min-width: 860px){ .planes__grid { grid-template-columns: 1.05fr .95fr; align-items: start; } }

.plan {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 34px 30px;
  box-shadow: var(--sh-md); transition: transform .3s var(--ease), box-shadow .3s;
  display: flex; flex-direction: column;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.plan--anual { border: 2px solid var(--teal); box-shadow: 0 26px 60px rgba(0,129,128,.18); }
.plan--anual::before { content:''; position: absolute; inset: 0; border-radius: var(--r-xl); padding: 2px; background: var(--grad-text); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: .0; }
.plan__flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-orange); color: #fff; font-family: 'Poppins',sans-serif; font-weight: 700;
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 20px; border-radius: 100px; box-shadow: var(--sh-orange); white-space: nowrap;
}
.plan__head { margin-bottom: 22px; }
.plan__name { font-size: 1.7rem; font-weight: 800; color: var(--teal-dark); }
.plan--tri .plan__name { color: var(--ink); }
.plan__tag { color: var(--ink-soft); font-size: .95rem; margin-top: 2px; }

.plan__discount { text-align: center; padding: 22px; border-radius: var(--r-md); background: var(--teal-soft); margin-bottom: 20px; }
.plan--tri .plan__discount { background: var(--cream); border: 1px solid var(--line); }
.plan__pcts { display: flex; align-items: baseline; justify-content: center; gap: 12px; }
.pct { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: clamp(2.6rem, 8vw, 3.6rem); line-height: 1; color: var(--teal); }
.plan--anual .pct { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.pct--sm { font-size: clamp(2.2rem, 7vw, 3rem); color: var(--ink); -webkit-text-fill-color: currentColor; background: none; }
.plus { font-family: 'Poppins',sans-serif; font-weight: 700; font-size: 1.6rem; color: var(--orange); }
.plan__discount-note { font-size: .86rem; color: var(--ink-soft); margin-top: 10px; }

.plan__gift { display: flex; gap: 14px; align-items: center; padding: 16px 18px; border-radius: var(--r-md); background: var(--orange-soft); border: 1px dashed var(--orange); margin-bottom: 22px; }
.plan__gift--muted { background: var(--cream); border: 1px solid var(--line); }
.plan__gift-ico { font-size: 1.8rem; flex: none; }
.plan__gift-title { font-family: 'Poppins',sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: .02em; color: var(--orange-dark); line-height: 1.2; }
.plan__gift--muted .plan__gift-title { color: var(--teal-dark); }
.plan__gift-sub { font-size: .88rem; color: var(--ink-soft); }

.plan__list { list-style: none; margin-bottom: 26px; display: grid; gap: 11px; }
.plan__list li { position: relative; padding-left: 30px; font-size: .95rem; color: var(--ink-soft); }
.plan__list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--teal); color: #fff; font-size: .7rem; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.plan__list strong { color: var(--ink); }

.plan__cta { margin-top: auto; display: grid; gap: 10px; }
.plan__cta .btn--sm { --pad-y: 9px; font-size: .85rem; }
.plan__cta .btn--outline { border-color: var(--line); color: var(--ink-soft); }
.plan__cta .btn--outline:hover { border-color: var(--teal); background: var(--teal); color: #fff; }

.planes__fine { text-align: center; color: var(--ink-soft); font-size: .84rem; margin-top: 30px; }

/* =========================== MÓDULO ============================= */
.modulo { max-width: none; padding: 0; margin: 0; }
.modulo__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 90px 24px;
  display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center;
}
.modulo {
  background: var(--grad-teal-deep); color: #fff; position: relative; overflow: hidden;
}
.modulo::before { content:''; position: absolute; inset: 0; background: radial-gradient(600px 400px at 85% 20%, rgba(216,118,37,.28), transparent 60%); pointer-events: none; }
.modulo__media { position: relative; display: flex; justify-content: center; align-items: center; }
.modulo__media img { width: min(300px, 66%); height: auto; object-fit: contain; border-radius: 0; box-shadow: none; filter: drop-shadow(0 34px 50px rgba(0,0,0,.4)); position: relative; z-index: 1; animation: bob 6s var(--ease) infinite; }
.modulo__glow { position: absolute; width: 360px; height: 360px; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--grad-orange); filter: blur(60px); opacity: .32; border-radius: 50%; }
.modulo__content { position: relative; z-index: 1; }
.modulo__title { font-size: clamp(1.9rem, 4.6vw, 2.9rem); font-weight: 800; margin-bottom: 18px; }
.modulo__lead { color: #cfeae9; font-size: 1.08rem; margin-bottom: 26px; max-width: 520px; }
.modulo__list { list-style: none; display: grid; gap: 14px; margin-bottom: 30px; }
.modulo__list li { display: flex; gap: 12px; align-items: flex-start; color: #e4f3f2; font-size: 1rem; }
.modulo__list li span { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; margin-top: 2px; }
.modulo__list strong { color: #fff; }
@media (min-width: 900px){ .modulo__inner { grid-template-columns: .9fr 1.1fr; } }

/* ============================ VENTAJAS ========================== */
.ventajas__grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 640px){ .ventajas__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 940px){ .ventajas__grid { grid-template-columns: repeat(3,1fr); } }

.feat {
  position: relative; overflow: hidden; isolation: isolate;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px; box-shadow: var(--sh-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
/* Blob líquido que sube desde abajo en hover (toque nomilinea: teal→naranja) */
.feat::before {
  content: ''; position: absolute; z-index: -1; left: 50%; top: 115%;
  width: 130%; aspect-ratio: 1; transform: translate(-50%, 0) rotate(0deg);
  background: radial-gradient(circle at 50% 50%, rgba(0,129,128,.16), rgba(216,118,37,.12) 45%, transparent 68%);
  border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
  transition: top .6s var(--ease), transform .6s var(--ease);
  pointer-events: none;
}
.feat:hover { transform: translateY(-7px); box-shadow: var(--sh-md); border-color: var(--teal-tint); }
.feat:hover::before { top: -25%; animation: liquid 7s linear infinite; }
@keyframes liquid {
  0%   { border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%; transform: translate(-50%,0) rotate(0deg); }
  50%  { border-radius: 55% 45% 48% 52% / 55% 52% 48% 45%; transform: translate(-50%,-14px) rotate(180deg); }
  100% { border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%; transform: translate(-50%,0) rotate(360deg); }
}
.feat__ico {
  width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; background: var(--teal-soft); margin-bottom: 18px;
  transition: background .45s var(--ease), transform .45s var(--ease), box-shadow .45s;
}
.feat:hover .feat__ico { background: var(--grad-teal); transform: translateY(-2px) rotate(-6deg) scale(1.06); box-shadow: 0 10px 22px rgba(0,129,128,.28); }
.feat h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 8px; transition: color .3s; }
.feat:hover h3 { color: var(--teal-dark); }
.feat p { color: var(--ink-soft); font-size: .95rem; }

.ventajas__showcase { margin-top: 46px; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid var(--line); background: #fff; }
.ventajas__showcase img { width: 100%; }

/* ========================= ACOMPAÑAMIENTO ======================= */
.acomp { max-width: none; padding: 0; margin: 0; background: linear-gradient(160deg, #016d6c, #00403f); color: #fff; position: relative; overflow: hidden; }
.acomp::after { content:''; position: absolute; top: -80px; left: -80px; width: 320px; height: 320px; background: var(--orange); filter: blur(90px); opacity: .18; border-radius: 50%; }
.acomp__inner { max-width: var(--maxw); margin: 0 auto; padding: 90px 24px; display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
.acomp__media { position: relative; display: flex; justify-content: center; }
.acomp__media img { width: min(420px, 82%); filter: drop-shadow(0 30px 50px rgba(0,0,0,.3)); }
.acomp__title { font-size: clamp(1.9rem, 4.6vw, 2.9rem); font-weight: 800; margin-bottom: 18px; }
.acomp__lead { color: #cfeae9; font-size: 1.1rem; margin-bottom: 30px; max-width: 520px; }
.acomp__points { display: grid; gap: 20px; margin-bottom: 32px; }
.acomp__point { display: flex; gap: 16px; align-items: flex-start; }
.acomp__point-ico { flex: none; width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.acomp__point h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 3px; }
.acomp__point p { color: #b9dcdb; font-size: .92rem; }
@media (min-width: 900px){ .acomp__inner { grid-template-columns: 1fr 1.1fr; } .acomp__media { order: 2; } }

/* =========================== TESTIMONIOS ======================== */
.carousel { max-width: 820px; margin: 0 auto; }
.carousel__viewport { overflow: hidden; border-radius: var(--r-xl); }
.carousel__track { display: flex; transition: transform .5s var(--ease); }
.tcard { flex: 0 0 100%; padding: 44px clamp(24px, 5vw, 54px); background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-md); border-radius: var(--r-xl); }
.tcard__quote { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: clamp(1.2rem, 3vw, 1.6rem); line-height: 1.35; color: var(--ink); margin-bottom: 26px; letter-spacing: -.01em; }
.tcard__author { display: flex; align-items: center; gap: 16px; }
.tcard__avatar { flex: none; width: 54px; height: 54px; border-radius: 50%; background: var(--grad-teal); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Poppins',sans-serif; font-weight: 700; font-size: 1.3rem; background-size: cover; background-position: center; }
.tcard__meta { display: flex; flex-direction: column; }
.tcard__meta strong { font-family: 'Poppins',sans-serif; color: var(--teal-dark); }
.tcard__meta em { font-style: normal; color: var(--ink-soft); font-size: .88rem; }

.carousel__ctrls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 26px; }
.carousel__btn { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--line); background: #fff; color: var(--teal); font-size: 1.6rem; line-height: 1; cursor: pointer; transition: .2s var(--ease); font-family: 'Poppins',sans-serif; }
.carousel__btn:hover { border-color: var(--teal); background: var(--teal); color: #fff; transform: translateY(-2px); }
.carousel__dots { display: flex; gap: 9px; }
.carousel__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line); border: none; cursor: pointer; transition: .25s; padding: 0; }
.carousel__dot.is-active { background: var(--orange); width: 28px; border-radius: 6px; }

/* ============================== STATS =========================== */
.stats { background: var(--grad-teal); color: #fff; }
.stats__inner { max-width: var(--maxw); margin: 0 auto; padding: 60px 24px; display: grid; grid-template-columns: repeat(2,1fr); gap: 30px 20px; text-align: center; }
@media (min-width: 820px){ .stats__inner { grid-template-columns: repeat(4,1fr); } }
.stat__num { display: block; font-family: 'Poppins',sans-serif; font-weight: 900; font-size: clamp(2.2rem, 6vw, 3.2rem); line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.stat__label { display: block; margin-top: 10px; font-size: .92rem; color: #d9efee; }
.stat__live { display: inline-block; color: #b6f0c8; font-weight: 700; font-size: .78rem; }

/* =============================== FAQ ============================ */
.faq__list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq__item[open] { box-shadow: var(--sh-md); border-color: var(--teal-tint); }
.faq__item summary { cursor: pointer; list-style: none; padding: 22px 26px; font-family: 'Poppins',sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 1.6rem; color: var(--orange); font-weight: 400; transition: transform .3s var(--ease); flex: none; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body { padding: 0 26px 24px; color: var(--ink-soft); font-size: .98rem; }
.faq__body strong { color: var(--teal-dark); }

/* ============================ CTA FINAL ========================= */
.finalcta { position: relative; overflow: hidden; background: var(--grad-teal-deep); color: #fff; text-align: center; padding: 90px 24px 100px; }
.finalcta__bg { position: absolute; inset: 0; display: flex; justify-content: center; align-items: center; }
.finalcta__bg .blob--3 { position: static; }
.finalcta__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.finalcta__title { font-size: clamp(2.4rem, 7vw, 4rem); font-weight: 900; margin-bottom: 14px; }
.finalcta__sub { color: #cfeae9; font-size: 1.1rem; margin-bottom: 34px; }
.finalcta__count { margin-bottom: 36px; }
.finalcta__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================== FOOTER ========================== */
.footer { background: var(--teal-deep); color: #cfeae9; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 60px 24px 40px; display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 720px){ .footer__inner { grid-template-columns: 1.4fr 1fr; } }
.footer__logo { height: 54px; background: #fff; padding: 8px 12px; border-radius: 12px; margin-bottom: 16px; }
.footer__brand p { font-size: .92rem; line-height: 1.7; }
.footer__cols { display: grid; grid-template-columns: repeat(2,1fr); gap: 30px; }
.footer__col h5 { font-family: 'Poppins',sans-serif; color: #fff; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer__col a { display: block; padding: 6px 0; font-size: .94rem; color: #a9d4d3; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 24px; text-align: center; font-size: .82rem; color: #7fb0af; }

/* =========================== WA FLOAT =========================== */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 45; width: 60px; height: 60px; border-radius: 50%; background: var(--wa); box-shadow: var(--sh-wa); display: flex; align-items: center; justify-content: center; transition: transform .25s var(--ease); }
.wa-float svg { width: 34px; height: 34px; fill: #fff; }
.wa-float::before { content:''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: ring 2s infinite; }
.wa-float:hover { transform: scale(1.08); }

/* ============================ REVEAL =========================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ CONTADOR REGRESIVO EN MÓVIL (va al final para
   ganar en cascada a las reglas base del contador) ============ */
@media (max-width: 560px){
  .countdown { padding: 26px 12px 22px; }
  .countdown__grid, .finalcta__count { gap: 7px; width: 100%; }
  .countdown__cell { min-width: 0; flex: 1 1 0; padding: 12px 4px; }
  .countdown__n { font-size: clamp(1.3rem, 7.5vw, 1.9rem); }
  .countdown__u { font-size: .56rem; letter-spacing: .05em; margin-top: 5px; }
  .countdown__foot { font-size: .74rem; }
}
