
/* Budgitek Landing (2026) — Full-width, responsive, clean */
:root{
  /* Brand palette (from logo) */
  --bg: #0e4261;
  --surface: rgba(255,255,255,.10);
  --surface2: rgba(255,255,255,.16);
  --text: rgba(255,255,255,.94);
  --muted: rgba(255,255,255,.78);
  --muted2: rgba(255,255,255,.62);
  --line: rgba(255,255,255,.14);
  --shadow: 0 18px 50px rgba(0,0,0,.28);
  --shadow2: 0 10px 24px rgba(0,0,0,.18);
  --radius: 18px;
  --radius2: 8px;

  --primary: #015c81;  /* logo blue */
  --primary2: #266586; /* logo blue 2 */
  --accent: #ea7938;   /* logo orange */
  --danger: #ef4444;
  --ok: #10b981;

  --padX: clamp(18px, 3.5vw, 64px);
  /* Menos separación entre secciones (más compacto) */
  --padY: clamp(40px, 5.8vw, 76px);
  --gap: clamp(14px, 2vw, 24px);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);              /* fondo parejo, sin bandas */
  line-height: 1.45;

  position: relative;
  isolation: isolate;                 /* clave: crea capa propia para ::before */
}

/* Glows fijos, no “por sección” */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;

  background:
    radial-gradient(950px 520px at 12% 8%,
      rgba(1,92,129,.28) 0%,
      rgba(1,92,129,.12) 42%,
      transparent 78%),

    radial-gradient(920px 520px at 90% 18%,
      rgba(234,121,56,.14) 0%,
      rgba(234,121,56,.06) 45%,
      transparent 82%),

    radial-gradient(900px 520px at 55% 90%,
      rgba(38,101,134,.20) 0%,
      rgba(38,101,134,.08) 48%,
      transparent 84%);
}


a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

/* Respect the hidden attribute (prevents duplicated mobile menu) */
[hidden]{ display: none !important; }
code{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

.w100{ width: 100%; }
.mt{ margin-top: clamp(14px, 2.2vw, 22px); }
.center{ text-align: center; }

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(14,42,70,.58);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.topbar__row{
  width: 100%;
  padding: 14px var(--padX);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}
.brand__logo{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.brand__name{
  font-weight: 700;
  letter-spacing: .2px;
}

.nav{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.nav__link{
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease;
}
.nav__link:hover{
  background: var(--surface);
  color: var(--text);
}

.topbar__actions{
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: var(--surface2);
  color: var(--text);
  cursor: pointer;
}
.hamburger span{
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.9);
  margin: 4px auto;
  border-radius: 2px;
}

.mobile{
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 10px var(--padX) 16px;
  display: grid;
  gap: 6px;
  background: rgba(14,42,70,.55);
}
.mobile__link{
  padding: 12px 10px;
  border-radius: 14px;
  color: var(--muted);
  background: var(--surface);
}
.mobile__link:hover{ color: var(--text); background: var(--surface); }
.mobile__cta{ display: grid; gap: 10px; padding-top: 8px; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: var(--surface2);
  color: var(--text);
  font-weight: 650;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{ transform: translateY(-1px); background: var(--surface); border-color: rgba(255,255,255,.16); }
.btn:active{ transform: translateY(0); }

.btn--primary{
  border-color: rgba(1,92,129,.55);
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 16px 40px rgba(1,92,129,.22);
}
.btn--primary:hover{ border-color: rgba(1,92,129,.75); }

.btn--ghost{
  background: var(--surface);
}

.btn--lg{
  padding: 13px 16px;
  border-radius: 16px;
  font-size: 15px;
}

/* HERO */
.hero{
  width: 100%;
  padding: calc(var(--padY) * .9) var(--padX) var(--padY);
  background:
    linear-gradient(90deg, rgba(1,92,129,.75) 0%, rgba(1,92,129,.75) 55%, rgba(1,92,129,.55) 100%),
    url("../img/hero-bg.jpg") center / cover no-repeat;
  }

.hero__content{ width: 100%; }
.hero__grid{
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(18px, 3vw, 52px);
  align-items: center;
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px 11px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  backdrop-filter: blur(8px);
}
.dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 0 0 6px rgba(1,92,129,.14);
}
.pill__text{
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  line-height: 1.2;
}
.pill__text strong{
  color: rgba(255,255,255,.98);
  font-weight: 750;
}
.pill__sep{
  color: rgba(255,255,255,.44);
  font-weight: 700;
}

.hero__title{
  margin: 16px 0 10px;
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.6px;
  max-width: 18ch;
}
.accent{
  background: linear-gradient(135deg, var(--accent), rgba(255,174,92,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle{
  margin: 0;
  font-size: clamp(15.5px, 1.3vw, 18px);
  color: var(--muted);
  max-width: 70ch;
}

.hero__cta{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust__item{
  padding: 10px 12px;
  border-radius: 16px;
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,.14);
}
.trust__kpi{
  display: block;
  font-weight: 750;
  letter-spacing: .4px;
  font-size: 12px;
}
.trust__txt{
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.micro{
  margin-top: 12px;
  color: var(--muted2);
  font-size: 12.5px;
  max-width: 72ch;
}

.hero__visual{
  /* Ventana + tarjetas: tarjetas debajo (no encima) */
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mock{
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.09);
  box-shadow: var(--shadow);
}
.mock__top{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.16);
}
.mock__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
}
.mock__label{
  margin-left: 10px;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .18px;
}
.mock__img{
  width: 100%;
  height: auto;
}

.floating{
  /* Debajo de la ventana (no sobre la imagen) */
  position: static;
  display: grid;
  gap: 10px;
  width: min(420px, 100%);
}
.floating__card{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(6,18,33,.58);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow2);
}
.floating__title{
  display: block;
  font-weight: 750;
  font-size: 13px;
}
.floating__text{
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--muted);
}

/* SECTIONS */
.section{
  width: 100%;
  padding: var(--padY) var(--padX);
  background: transparent;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}
.section::before,
.section::after{
  content: none !important;
}
.section--alt{background:transparent;}
.section__row{ width: 100%; }

/* ÚNICA “DIVISIÓN” DESPUÉS DEL HERO */
.heroDivider{
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}
.section__head{
  margin-bottom: clamp(18px, 3vw, 26px);
}
.section__head h2{
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.3px;
}
.section__head p{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  /*max-width: 80ch;*/
}

/* Cards + grids */
.grid3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.card{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.14);
  background: var(--surface2);
  padding: 18px 18px 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.card h3{
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: .6px;
}
/* Icono al lado del título (beneficios) */
.withIcon{
  display:flex;
  align-items:center;
  gap:10px;
}
.titleIcon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: var(--accent);
  flex: 0 0 auto;
}
.titleIcon svg{width:25px;height:25px}

/* Icono dentro de la pildora */
.pillIcon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #fff4ea;
  background: linear-gradient(135deg, rgba(234,121,56,.34), rgba(1,92,129,.28));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
  flex: 0 0 auto;
}
.pillIcon svg{width:18px;height:18px}

@media (max-width: 640px){
  .pill{
    width: 100%;
    justify-content: flex-start;
    border-radius: 22px;
  }

  .pill__text{
    gap: 4px;
  }

  .pill__sep{
    display: none;
  }
}

/* Etiqueta de plan (naranja sólido) */
.planBadge{
  display:inline-block;
  padding:6px 12px;
  border-radius:14px;
  background: var(--accent);
  color:#0b1a26;
  font-weight:900;
  letter-spacing:.2px;
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
}

/* Testimonios con avatar */
.quote__text{margin:0 0 14px}
.quoteBy{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top: 14px;
}
.quote__avatar{
  width:42px;
  height:42px;
  border-radius:999px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.16);
}
.quote__name{font-weight:900; color: var(--text)}
.quote__meta{font-size:13px; opacity:.8}

/* Link 'arriba' como ícono */
.footer__icon{
  display:inline-flex;
  align-items:center;
  justify-content:right;
  width:38px;
  height:38px;
  border-radius:12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color: var(--text);
}
.footer__icon:hover{background: rgba(255,255,255,.10)}

/* Icono dentro de botón */
.btnIcon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-right:8px;
}
.btnIcon svg{width:18px;height:18px}
.card p{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  max-width: 68ch;
}
.card--soft{
  background: var(--surface);
}

.steps{
  display: grid;
  gap: 12px;
  margin-top: 10px;
}
.step{
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 16px 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.14);
  background: var(--surface2);
}
.step__num{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
}
.step h3{ margin: 0 0 6px; font-size: 16px; }
.step p{ margin: 0; color: var(--muted); max-width: 82ch; }

.ctaBar{
  margin-top: 18px;
  padding: 18px 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(1,92,129,.16), rgba(38,101,134,.10));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ctaBar h3{ margin: 0 0 4px; font-size: 18px; }
.ctaBar p{ margin: 0; color: var(--muted); }

/* Screens */
.shots{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.shot{
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.shot img{ width: 100%; height: auto; }
.shot figcaption{
  padding: 12px 12px 14px;
  color: #fff;
  font-size: 14px;
}

/* Billing tabs */
.billing{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 18px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: var(--surface);
}
.billing__tab{
  appearance: none;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.billing__tab:hover{
  color: var(--text);
  border-color: rgba(255,255,255,.20);
}
.billing__tab.is-active{
  background: rgba(1,92,129,.22);
  color: rgba(255,255,255,.96);
  border-color: rgba(1,92,129,.42);
  box-shadow: 0 12px 28px rgba(1,92,129,.18);
}
.billing__tabBadge{
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.22);
  color: inherit;
  font-size: 11px;
  font-weight: 800;
}

/* Pricing */
.pricing{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap);
  align-items: stretch;
}
.priceCard{
  position: relative;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.14);
  background: var(--surface2);
  padding: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}
.priceCard__head h3{
  margin: 0 0 6px;
  font-size: 18px;
}
.priceCard__head p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 60ch;
}

.price{
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 14px 0 10px;
}
.price__currency{ font-size: 16px; color: var(--muted); font-weight: 800; }
.price__value{ font-size: 40px; font-weight: 900; letter-spacing: -0.8px; }
.price__period{ color: var(--muted); font-weight: 650; }

.list{
  margin: 12px 0 16px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  display: grid;
  gap: 8px;
}
.list li strong{ color: rgba(255,255,255,.92); }
.list li.muted{ color: rgba(255,255,255,.48); }

.priceCard--popular{
  background: linear-gradient(135deg, rgba(1,92,129,.20), rgba(38,101,134,.10));
  border-color: rgba(1,92,129,.38);
  box-shadow: 0 22px 60px rgba(1,92,129,.16);
  transform: translateY(-2px);
}
.ribbon{
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.94);
  background: rgba(1,92,129,.34);
  border: 1px solid rgba(1,92,129,.50);
}

/* Compare table */
.compare{
  margin-top: 26px;
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.14);
  background: var(--surface);
}
.compare h3{ margin: 0 0 12px; font-size: 18px; }

.tableWrap{
  width: 100%;
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}
.table{
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.table th, .table td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-align: left;
  color: var(--muted);
  font-size: 14px;
}
.table th{
  color: rgba(255,255,255,.90);
  font-weight: 800;
  background: var(--surface);
}
.table .emph{
  color: rgba(255,255,255,.92);
  font-weight: 800;
}

/* Quotes */
.quotes{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.quote{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.14);
  background: var(--surface2);
  padding: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.quote p{ margin: 0; color: rgba(255,255,255,.88); font-size: 15px; max-width: 75ch; }
.quote__by{margin-top:12px;}

/* FAQ */
.faq{
  display: grid;
  gap: 10px;
}
.faq__item{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.14);
  background: var(--surface2);
  padding: 14px 16px;
}
.faq__item summary{
  cursor: pointer;
  font-weight: 800;
  color: rgba(255,255,255,.92);
}
.faq__item p{
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 85ch;
}

/* Final CTA */
.final{
  margin-top: 18px;
  padding: 22px 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(1,92,129,.18), rgba(38,101,134,.10));
  text-align: center;
}
.final h3{ margin: 0 0 8px; font-size: 22px; }
.final p{ margin: 0 auto; color: var(--muted); max-width: 78ch; }
.final__cta{
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Footer */
.footer{
  width: 100%;
  padding: 18px var(--padX);
  border-top: 0;
  background: rgba(16,53,82,.52);
}
.footer__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__left{ display: flex; align-items: center; gap: 10px; }
.footer__logo{ width: 30px; height: 30px; border-radius: 12px; }
.footer__muted{ color: var(--muted2); font-size: 13px; }
.footer__links{ display: flex; gap: 14px; color: var(--muted); font-size: 13px; }
.footer__links a:hover{ color: var(--text); }

/* Responsive */
@media (max-width: 1180px){
  .pricing{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px){
  .nav{ display: none; }
  .hamburger{ display: inline-flex; flex-direction: column; justify-content: center; }
  .hero__grid{ grid-template-columns: 1fr; }
  .floating{ width: 100%; }
  .grid3{ grid-template-columns: 1fr; }
  .shots{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .quotes{ grid-template-columns: 1fr; }
  .priceCard--popular{ transform: none; }
  .billing{ width: 100%; }
  .billing__tab{ flex: 1 1 calc(33.333% - 8px); justify-content: center; }
}


section, .section{
  background: transparent !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

/* ================================
   Alternar secciones (sin tocar hero)
   Gris MUY claro + contraste correcto
   Pegar AL FINAL del CSS
================================ */

:root{ --altSolid: #F2F3F5; } /* gris muy claro (elegante, casi blanco) */

/* 1) Base: todas las secciones normales (color original del sitio) */
body .section{
  background: transparent !important;
}

/* 2) Alternancia: 2,4,6... (gris sólido) */
body .section:nth-of-type(even){
  background: var(--altSolid) !important;

  /* Paleta oscura SOLO dentro del bloque gris */
  color: rgba(11,26,38,.95) !important;
  --text: rgba(11,26,38,.95);
  --muted: rgba(11,26,38,.72);
  --muted2: rgba(11,26,38,.60);
  --line: rgba(11,26,38,.12);

  /* Superficies claras para que cards/steps/faq se vean bien */
  --surface: rgba(255,255,255,.55);
  --surface2: rgba(255,255,255,.72);
}

/* 3) Corrige textos que en tu CSS están forzados en blanco */
body .section:nth-of-type(even) .section__head p,
body .section:nth-of-type(even) .card p,
body .section:nth-of-type(even) .step p,
body .section:nth-of-type(even) .quote p,
body .section:nth-of-type(even) .faq__item summary,
body .section:nth-of-type(even) .faq__item p,
body .section:nth-of-type(even) .table th,
body .section:nth-of-type(even) .table td,
body .section:nth-of-type(even) .table .emph{
  color: rgba(11,26,38,.78) !important;
}

/* 4) Mantén acentos naranjas tal cual */
body .section:nth-of-type(even) .titleIcon,
body .section:nth-of-type(even) .pillIcon{
  color: var(--accent) !important;
}


/* ================================
   1) Suavizar el “corte” azul ↔ gris
   (sin líneas divisorias)
================================ */

/* Secciones claras: una sombra suave arriba/abajo tipo “fade” */
body .section:nth-of-type(even){
  position: relative;
}

body .section:nth-of-type(even)::before,
body .section:nth-of-type(even)::after{
  content:"";
  position:absolute;
  left:0; right:0;
  height:28px;                 /* ajusta 22–40 si quieres más/menos suavidad */
  pointer-events:none;
}

body .section:nth-of-type(even)::before{
  top:0;
  background: linear-gradient(to bottom,
    rgba(14,66,97,.18),
    rgba(14,66,97,0)
  );
}

body .section:nth-of-type(even)::after{
  bottom:0;
  background: linear-gradient(to top,
    rgba(14,66,97,.18),
    rgba(14,66,97,0)
  );
}


/* ================================
   2) Sombras más finas en secciones claras
   (se ve más “premium”)
================================ */

body .section:nth-of-type(even) .card,
body .section:nth-of-type(even) .step,
body .section:nth-of-type(even) .quote,
body .section:nth-of-type(even) .faq__item,
body .section:nth-of-type(even) .compare,
body .section:nth-of-type(even) .tableWrap,
body .section:nth-of-type(even) .priceCard,
body .section:nth-of-type(even) .shot{
  box-shadow: 0 10px 20px rgba(0,0,0,.10) !important; /* antes se veía más pesada */
}

/* Bordes un poquito más suaves en fondo claro */
body .section:nth-of-type(even) .card,
body .section:nth-of-type(even) .step,
body .section:nth-of-type(even) .quote,
body .section:nth-of-type(even) .faq__item,
body .section:nth-of-type(even) .compare,
body .section:nth-of-type(even) .tableWrap,
body .section:nth-of-type(even) .priceCard{
  border-color: rgba(11,26,38,.10) !important;
}

/* ================================
   Fade más natural (sin “barra”)
================================ */

body section.section:nth-of-type(even){
  position: relative;
  overflow: hidden;
}

body section.section:nth-of-type(even) > *{
  position: relative;
  z-index: 1;
}

body section.section:nth-of-type(even)::before,
body section.section:nth-of-type(even)::after{
  content: "" !important;
  display: block !important;
  position: absolute;
  left: 0; right: 0;
  height: 52px;                 /* más alto = más suave */
  pointer-events: none;
  z-index: 0;
  opacity: .85;                 /* baja la “barra” */
}

body section.section:nth-of-type(even)::before{
  top: 0;
  background: linear-gradient(to bottom,
    rgba(14,66,97,.08) 0%,
    rgba(14,66,97,.03) 45%,
    rgba(14,66,97,0) 100%
  );
}

body section.section:nth-of-type(even)::after{
  bottom: 0;
  background: linear-gradient(to top,
    rgba(14,66,97,.08) 0%,
    rgba(14,66,97,.03) 45%,
    rgba(14,66,97,0) 100%
  );
}


/* ================================
   FIX TOPBAR — solo móvil smartphone
================================ */
@media (max-width: 520px){

  /* Evita desface horizontal global */
  html, body{
    overflow-x: hidden;
  }

  .topbar__row{
    padding: 10px 14px;       /* más compacto */
    gap: 10px;
  }

  /* Logo: que no empuje el layout */
  .brand{
    min-width: 0;
    flex: 1 1 auto;           /* ocupa espacio disponible */
    gap: 8px;
  }
  .brand__name{
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;  /* si no cabe, se corta elegante */
    max-width: 120px;
  }
  .brand__logo{
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  /* Acciones: compactas y sin overflow */
  .topbar__actions{
    flex: 0 0 auto;
    gap: 8px;
    align-items: center;
  }

  /* Botones más pequeños para que no saturen */
  .topbar__actions .btn{
    padding: 9px 10px;
    font-size: 13px;
    border-radius: 12px;
    max-width: 120px;         /* evita botones gigantes */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 8px 16px rgba(0,0,0,.16);
  }

  /* Si quieres que "Iniciar sesión" no se vea tan largo */
  .topbar__actions .btn--ghost{
    max-width: 108px;
  }

  /* Hamburguesa: siempre visible y compacta */
  .hamburger{
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    flex: 0 0 auto;
  }

  /* Menú móvil: que no se corte y se vea ordenado */
  .mobile{
    padding: 10px 14px 14px;
  }
  .mobile__cta .btn{
    width: 100%;
    max-width: none;
    justify-content: center;
  }
}


/* ================================
   FIX: que el logo NO se lo coma el header (solo móvil)
   Topbar en 2 líneas: logo arriba, acciones abajo
================================ */
@media (max-width: 520px){

  .topbar__row{
    flex-wrap: wrap;        /* clave: permitir salto de línea */
    align-items: center;
  }

  /* LOGO: siempre visible y completo */
  .brand{
    flex: 0 0 100%;         /* ocupa toda la primera línea */
    min-width: 0;
    padding-bottom: 6px;
  }

  .brand__name{
    max-width: none;        /* quita el límite que lo cortaba */
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
  }

  /* ACCIONES: se van a la segunda línea */
  .topbar__actions{
    width: 100%;
    justify-content: flex-end;
    gap: 8px;
  }

}


@media (max-width: 520px){

  html, body{ overflow-x: hidden; }

  /* Quitar CTAs duplicados dentro del menú */
  .mobile__cta{ display: none !important; }
}


/* ========================================= Budgitek brand logo fix - header + footer ========================================= */ 

.brand{ display:inline-flex; align-items:center; justify-content:flex-start; text-decoration:none; background:transparent !important; border:0 !important; box-shadow:none !important; padding:0 !important; border-radius:0 !important; backdrop-filter:none !important; min-width:0; } .brand:hover, .brand:focus, .brand:active{ background:transparent !important; box-shadow:none !important; border:0 !important; outline:none; } .brand__name{ display:none !important; } .brand__logo{ display:block; width:auto; height:44px; max-width:230px; object-fit:contain; object-position:left center; background:transparent; border:0; box-shadow:none; filter:none; } .footer__left{ display:flex; align-items:center; gap:12px; } .footer__logo{ display:block; width:auto; height:36px; max-width:190px; object-fit:contain; object-position:left center; background:transparent; border:0; box-shadow:none; filter:none; } .footer__brandText{ display:flex; flex-direction:column; justify-content:center; } .footer__brandText strong{ display:none; } @media (max-width: 980px){ .brand__logo{ height:38px; max-width:190px; } .footer__logo{ height:32px; max-width:165px; } } @media (max-width: 640px){ .brand__logo{ height:32px; max-width:150px; } .footer__logo{ height:28px; max-width:145px; } .footer__left{ gap:10px; } }





/* ========================================
   Visual polish round 2
======================================== */

:root{
  --headerBg: rgba(238,241,245,.92);
  --headerBorder: rgba(11,26,38,.08);
  --headerText: rgba(11,26,38,.84);
  --headerMuted: rgba(11,26,38,.68);
  --accentStrong: #f28a43;
  --accentDeep: #db6d2f;
  --accentSoft: rgba(242,138,67,.16);
  --darkInk: #0b1a26;
}

.topbar{
  backdrop-filter: blur(14px) saturate(135%);
  background: var(--headerBg);
  border-bottom: 1px solid var(--headerBorder);
  box-shadow: 0 14px 34px rgba(11,26,38,.08);
}

.nav__link{
  color: var(--headerMuted);
  font-weight: 700;
  letter-spacing: .1px;
}

.nav__link:hover,
.nav__link:focus-visible{
  color: var(--headerText);
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 18px rgba(11,26,38,.06);
}

.topbar .btn--ghost{
  background: rgba(255,255,255,.68);
  color: var(--headerText);
  border-color: rgba(11,26,38,.10);
  box-shadow: 0 10px 18px rgba(11,26,38,.08);
}

.topbar .btn--ghost:hover{
  background: rgba(255,255,255,.94);
  border-color: rgba(11,26,38,.16);
}

.topbar .btn--primary{
  border-color: rgba(1,92,129,.44);
  box-shadow: 0 14px 24px rgba(1,92,129,.20);
}

.topbar .btn--primary:hover{
  background: rgba(256,125,56);
  border-color: rgba(256,125,56);
  box-shadow: 0 14px 24px rgba(1,92,129,.20);
}

.hamburger{
  border-color: rgba(11,26,38,.10);
  background: rgba(255,255,255,.76);
  box-shadow: 0 10px 18px rgba(11,26,38,.08);
}

.hamburger span{
  background: rgba(11,26,38,.82);
}

.mobile{
  background: rgba(243,245,248,.97);
  border-top: 1px solid rgba(11,26,38,.06);
}

.mobile__link{
  color: var(--headerText);
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(11,26,38,.08);
}

.mobile__link:hover{
  background: #fff;
  color: var(--headerText);
}

.btn--accent{
  border-color: rgba(242,138,67,.44);
  background: linear-gradient(135deg, var(--accentStrong), var(--accentDeep));
  color: #fff8f2;
  box-shadow: 0 18px 36px rgba(234,121,56,.24);
}

.btn--accent:hover{
  background: linear-gradient(135deg, #f49451, #df7437);
  border-color: rgba(242,138,67,.62);
}

.btn--ghostStrong{
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.96);
  border-color: rgba(255,255,255,.20);
  box-shadow: 0 14px 28px rgba(0,0,0,.14);
}

.btn--ghostStrong:hover{
  background: rgba(255,255,255,.20);
  border-color: rgba(255,255,255,.28);
}

body .section:nth-of-type(even) .btn--ghostStrong,
body .section:nth-of-type(even) .final .btn--ghostStrong{
  background: rgba(242,138,67,.12);
  color: rgba(128,63,26,.96);
  border-color: rgba(242,138,67,.24);
  box-shadow: 0 12px 24px rgba(234,121,56,.10);
}

body .section:nth-of-type(even) .btn--ghostStrong:hover,
body .section:nth-of-type(even) .final .btn--ghostStrong:hover{
  background: rgba(242,138,67,.18);
  border-color: rgba(242,138,67,.36);
}

.btn--iconTrail{
  gap: 12px;
}

.btn__label{
  display: inline-flex;
  align-items: center;
}

.btnIcon--trail{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  margin-right: 0;
  transition: transform .18s ease, background .18s ease;
}

.btnIcon--trail svg{
  width: 14px;
  height: 14px;
}

.btn:hover .btnIcon--trail{
  transform: translateX(1px);
  background: rgba(255,255,255,.24);
}

.hero__cta .btn,
.final__cta .btn{
  min-height: 54px;
  padding-inline: 18px;
  font-weight: 800;
}

.trust__item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,.15);
}

.trust__icon,
.floating__icon{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff5ed;
  background: linear-gradient(135deg, rgba(242,138,67,.48), rgba(1,92,129,.40));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 8px 18px rgba(0,0,0,.12);
  flex: 0 0 auto;
}

.trust__icon svg,
.floating__icon svg{
  width: 18px;
  height: 18px;
}

.trust__body{
  display: grid;
  gap: 1px;
}

.trust__kpi{
  letter-spacing: .5px;
}

.floating__card{
  padding: 14px 14px;
  background: linear-gradient(135deg, rgba(5,20,35,.72), rgba(8,32,54,.58));
}

.floating__head{
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating__title{
  font-size: 13.5px;
  letter-spacing: .1px;
}

.floating__text{
  margin-top: 8px;
  padding-left: 50px;
}

.step{
  align-items: start;
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
}

.step__num{
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f59a57, var(--accentDeep));
  border: 1px solid rgba(255,255,255,.26);
  color: #fffaf6;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(234,121,56,.22), inset 0 1px 0 rgba(255,255,255,.26);
}

.step__num::after{
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  border: 1px solid rgba(242,138,67,.18);
}

.billing{
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 12px 0 22px;
  padding: 12px;
  border-radius: 24px;
  border: 1px solid rgba(11,26,38,.10);
  background: linear-gradient(135deg, rgba(255,255,255,.80), rgba(255,255,255,.62));
  box-shadow: 0 18px 34px rgba(11,26,38,.08);
}

.billing__tab{
  position: relative;
  min-height: 54px;
  padding: 12px 16px;
  justify-content: center;
  border-radius: 18px;
  border-color: rgba(11,26,38,.10);
  background: rgba(255,255,255,.88);
  color: rgba(11,26,38,.76);
  box-shadow: 0 10px 18px rgba(11,26,38,.06);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.billing__tab:hover,
.billing__tab:focus-visible{
  transform: translateY(-1px);
  color: var(--darkInk);
  border-color: rgba(242,138,67,.28);
  box-shadow: 0 14px 22px rgba(11,26,38,.10);
}

.billing__tab.is-active{
  background: linear-gradient(135deg, var(--accentStrong), var(--accentDeep));
  color: #fff9f3;
  border-color: rgba(242,138,67,.42);
  box-shadow: 0 18px 28px rgba(234,121,56,.24);
}

.billing__tabBadge{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.16);
  color: inherit;
  padding: 4px 10px;
}

.priceCard{
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.70));
  border-color: rgba(11,26,38,.10);
}

.priceCard__head p,
.priceCard .list,
.priceCard .micro{
  color: rgba(11,26,38,.72);
}

.priceCard .list li strong,
.priceCard .list li,
.priceCard .price__currency,
.priceCard .price__period,
.priceCard h3,
.priceCard__head h3,
.priceCard__head p,
.priceCard .micro,
.priceCard .muted{
  color: rgba(11,26,38,.82);
}

.price__value{
  color: var(--darkInk);
}

.btn--price{
  min-height: 52px;
  border-color: rgba(242,138,67,.40);
  background: linear-gradient(135deg, var(--accentStrong), var(--accentDeep));
  color: #fff8f2;
  font-size: 15px;
  font-weight: 850;
  box-shadow: 0 18px 32px rgba(234,121,56,.18);
}

.btn--price:hover{
  background: linear-gradient(135deg, #f79a57, #de7336);
  border-color: rgba(242,138,67,.58);
}

.priceCard--popular{
  background: linear-gradient(180deg, rgba(255,250,245,.95), rgba(255,245,236,.82));
  border-color: rgba(242,138,67,.30) !important;
  box-shadow: 0 26px 56px rgba(234,121,56,.18);
  transform: translateY(-6px);
}

.ribbon{
  color: #fff8f2;
  background: linear-gradient(135deg, var(--accentStrong), var(--accentDeep));
  border-color: rgba(242,138,67,.40);
  box-shadow: 0 16px 28px rgba(234,121,56,.20);
}

.compare{
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.64));
  border-color: rgba(11,26,38,.10) !important;
  box-shadow: 0 16px 30px rgba(11,26,38,.08) !important;
}

.compare h3{
  color: var(--darkInk);
  font-size: 18px;
}

.tableWrap{
  background: rgba(255,255,255,.84) !important;
  border-color: rgba(11,26,38,.08) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}

.table th,
.table td{
  color: rgba(11,26,38,.78) !important;
}

.table thead th{
  background: linear-gradient(180deg, rgba(230,236,241,.92), rgba(221,229,236,.92));
  color: rgba(11,26,38,.84) !important;
}

.table tbody tr:nth-child(odd){
  background: rgba(248,250,252,.82);
}

.table tbody tr:nth-child(even){
  background: rgba(239,244,248,.78);
}


.table th:last-child,
.table td:last-child,
.table .emph{
  color: rgba(128,63,26,.96) !important;
  font-weight: 850;
}

.table th:last-child,
.table td:last-child{
  background: linear-gradient(180deg, rgba(255,244,235,.84), rgba(255,239,228,.72));
}

.final__cta .btn--accent{
  box-shadow: 0 20px 38px rgba(234,121,56,.22);
}

.final__cta .btn--ghostStrong .btnIcon--trail,
body .section:nth-of-type(even) .btn--ghostStrong .btnIcon--trail{
  background: rgba(242,138,67,.14);
  border-color: rgba(242,138,67,.18);
}

@media (max-width: 980px){
  .billing{
    width: 100%;
    display: grid;
  }

  .billing__tab{
    flex: initial;
  }

  .priceCard--popular{
    transform: none;
  }
}

@media (max-width: 640px){
  .topbar{
    background: rgba(243,245,248,.96);
  }

  .hero__cta .btn,
  .final__cta .btn{
    width: 100%;
  }

  .floating__text{
    padding-left: 0;
  }

  .billing{
    grid-template-columns: 1fr;
  }

  .billing__tab{
    justify-content: space-between;
  }
}


/* === Ajustes finos solicitados v3 === */
.pillIcon,
.trust__icon,
.floating__icon{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--accent) !important;
}

.pillIcon{
  width: 20px !important;
  height: 20px !important;
  border-radius: 0 !important;
  flex: 0 0 20px;
}

.trust__icon,
.floating__icon{
  width: 20px !important;
  height: 20px !important;
  border-radius: 0 !important;
  flex: 0 0 20px;
}

.pillIcon svg,
.trust__icon svg,
.floating__icon svg{
  width: 20px !important;
  height: 20px !important;
}

.trust__item{
  gap: 10px;
}

.floating__head{
  gap: 10px;
}

.floating__text{
  padding-left: 30px;
}

.step__num{
  background: var(--accent) !important;
  border: 0 !important;
  box-shadow: 0 14px 24px rgba(234,121,56,.16) !important;
}

.step__num::after{
  display: none !important;
}

.btn--accent{
  background: var(--accent) !important;
  border-color: rgba(242,138,67,.52) !important;
  box-shadow: 0 18px 30px rgba(234,121,56,.20) !important;
}

.btn--accent:hover{
  background: #df7437 !important;
  border-color: rgba(242,138,67,.64) !important;
}

.btn--price{
  background: var(--accent) !important;
  border-color: rgba(242,138,67,.52) !important;
  box-shadow: 0 14px 26px rgba(234,121,56,.16) !important;
}

.btn--price:hover{
  background: #df7437 !important;
  border-color: rgba(242,138,67,.64) !important;
}

.btnIcon--trail{
  background: rgba(255,255,255,.14) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: none !important;
}

.final__cta .btn--ghostStrong .btnIcon--trail,
body .section:nth-of-type(even) .btn--ghostStrong .btnIcon--trail{
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.14) !important;
}

.billing{
  display: inline-grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px !important;
  padding: 6px !important;
  margin: 12px 0 20px !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.10) !important;
}

body .section:nth-of-type(even) .billing{
  background: rgba(11,26,38,.06) !important;
  border-color: rgba(11,26,38,.10) !important;
}

.billing__tab{
  min-height: 44px !important;
  padding: 9px 18px !important;
  border-radius: 14px !important;
  background: rgba(255,255,255,.90) !important;
  border-color: rgba(11,26,38,.10) !important;
  box-shadow: none !important;
  transform: none !important;
}

.billing__tab:hover,
.billing__tab:focus-visible{
  transform: none !important;
  border-color: rgba(242,138,67,.36) !important;
  box-shadow: none !important;
}

.billing__tab.is-active{
  background: var(--accent) !important;
  color: #fff8f2 !important;
  border-color: rgba(242,138,67,.52) !important;
  box-shadow: none !important;
}

.billing__tabBadge{
  display: none !important;
}

.priceCard{
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.72)) !important;
}

.priceCard--popular{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,250,245,.96), rgba(255,245,236,.86)) !important;
  border-color: rgba(242,138,67,.28) !important;
  transform: translateY(-4px);
}

.ribbon{
  top: 16px !important;
  right: -44px !important;
  width: 168px;
  padding: 8px 0 !important;
  border-radius: 0 !important;
  transform: rotate(45deg);
  transform-origin: center;
  text-align: center;
  background: #0f6a8f !important;
  color: #f7fbff !important;
  border: 0 !important;
  box-shadow: 0 12px 24px rgba(0,0,0,.14) !important;
  letter-spacing: .02em;
}

.compare{
  padding: 0 !important;
  margin-top: 22px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.compare h3{
  margin: 0 0 14px !important;
  color: rgba(11,26,38,.90) !important;
  font-size: 18px;
  letter-spacing: -.01em;
}

.tableWrap{
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 20px;
}

.table{
  border-collapse: separate;
  border-spacing: 0;
}

.table thead th{
  background: linear-gradient(180deg, rgba(230,236,241,.92), rgba(222,229,236,.92)) !important;
  color: rgba(11,26,38,.84) !important;
  font-weight: 850;
  letter-spacing: -.01em;
}

.table thead th:first-child{
  border-top-left-radius: 18px;
}

.table thead th:last-child{
  border-top-right-radius: 18px;
}

.table tbody tr:last-child td:first-child{
  border-bottom-left-radius: 18px;
}

.table tbody tr:last-child td:last-child{
  border-bottom-right-radius: 18px;
}

.table td:first-child{
  font-weight: 650;
  color: rgba(11,26,38,.82) !important;
}

.table th:last-child,
.table td:last-child,
.table .emph{
  background: transparent !important;
  color: rgba(11,26,38,.78) !important;
  font-weight: 700 !important;
}

.compare .micro{
  margin-top: 12px;
  color: rgba(11,26,38,.58) !important;
}

@media (max-width: 980px){
  .priceCard--popular{
    transform: none;
  }
}

@media (max-width: 640px){
  .billing{
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .billing__tab{
    padding: 9px 10px !important;
    font-size: 13px !important;
  }

  .floating__text{
    padding-left: 0;
  }

  .ribbon{
    top: 14px !important;
    right: -48px !important;
    width: 160px;
    font-size: 11px;
  }
}


/* === Ajustes finales solicitados v4 === */
.btn--accent,
.btn--price,
.final__cta .btn--accent{
  box-shadow: 0 12px 24px rgba(0,0,0,.16) !important;
}

.btn--accent:hover,
.btn--price:hover,
.final__cta .btn--accent:hover{
  box-shadow: 0 14px 26px rgba(0,0,0,.18) !important;
}

.compare{
  margin-top: 34px !important;
}

.compare h3{
  color: rgba(255,255,255,.95) !important;
  margin: 0 0 18px !important;
  padding-left: 2px;
  font-weight: 850;
  letter-spacing: -.01em;
}

.table thead th,
.table thead .emph{
  color: var(--accent) !important;
  font-weight: 850 !important;
}

.table thead th:last-child,
.table thead .emph{
  background: linear-gradient(180deg, rgba(230,236,241,.92), rgba(222,229,236,.92)) !important;
  color: var(--accent) !important;
}

.table tbody td:last-child,
.table tbody .emph{
  background: transparent !important;
  color: rgba(11,26,38,.78) !important;
  font-weight: 700 !important;
}

.compare .micro{
  margin-top: 14px;
  color: rgba(255,255,255,.70) !important;
}

.final .micro{
  margin-top: 12px;
  color: rgba(255,255,255,.78) !important;
}

.priceCard__head h3{
  margin: 0 !important;
}

.priceCard__head p{
  margin-top: 12px !important;
  line-height: 1.5;
}

@media (max-width: 640px){
  .compare{
    margin-top: 28px !important;
  }

  .compare h3{
    margin-bottom: 14px !important;
  }

  .compare .micro,
  .final .micro{
    font-size: 12.5px;
  }
}


/* === Ajustes finales solicitados v5 === */
.planBadge{
  box-shadow: none !important;
}

.priceCard__head p{
  margin-top: 18px !important;
}

.btn--accent,
.btn--price,
.final__cta .btn--accent{
  box-shadow: none !important;
}

.btn--accent:hover,
.btn--price:hover,
.final__cta .btn--accent:hover{
  box-shadow: none !important;
}

.compare h3{
  color: rgba(255,255,255,.96) !important;
  padding-left: 4px !important;
}

.table thead th,
.table thead .emph{
  background: var(--accent) !important;
  color: rgba(11,26,38,.88) !important;
  font-weight: 850 !important;
}

.table thead th:last-child,
.table thead .emph{
  background: var(--accent) !important;
  color: rgba(11,26,38,.88) !important;
}

.table tbody tr{
  transition: background-color .18s ease;
}


.table td:first-child{
  color: rgba(11,26,38,.82) !important;
  font-weight: 700 !important;
}

.compare .micro{
  color: rgba(255,255,255,.74) !important;
}

.quote__avatar{
  border: 0 !important;
  box-shadow: none !important;
}

.quote__avatar--initial{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff8f2;
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  flex: 0 0 46px;
}

@media (max-width: 640px){
  .priceCard__head p{
    margin-top: 16px !important;
  }

  .quote__avatar--initial{
    width: 42px;
    height: 42px;
    font-size: 18px;
    flex-basis: 42px;
  }
}

/* === Ajustes solicitados v6 === */
#testimonios .section__head{
  margin-bottom: 22px;
}

#testimonios .testimonialsLead{
  max-width: 1120px;
  line-height: 1.45;
}

#testimonios .leadKeep{
  white-space: nowrap;
}

#testimonios .ctaBar .btn--primary{
  color: #ffffff !important;
}

#testimonios .ctaBar .btn--primary .btn__label,
#testimonios .ctaBar .btn--primary .btnIcon,
#testimonios .ctaBar .btn--primary .btnIcon svg,
#testimonios .ctaBar .btn--primary .btnIcon--trail{
  color: #ffffff !important;
}

#testimonios .ctaBar .btn--primary .btnIcon--trail{
  background: rgba(255,255,255,.14) !important;
  border-color: rgba(255,255,255,.24) !important;
}

#testimonios .ctaBar .btn--primary:hover{
  background: rgba(256,125,56);
  border-color: rgba(256,125,56);
  box-shadow: 0 14px 24px rgba(1,92,129,.20);
}


.mock__media{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #0e1731;
  overflow: hidden;
}

.mediaSlot__fallback,
.mediaSlot__frame,
.mediaSlot__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mediaSlot__frame,
.mediaSlot__video{
  border: 0;
  display: none;
  background: #0e1731;
}

.mediaSlot__video{
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.mediaSlot__video::-webkit-media-controls,
.mediaSlot__video::-webkit-media-controls-enclosure,
.mediaSlot__video::-webkit-media-controls-panel{
  display: none !important;
  -webkit-appearance: none;
}

.mediaSlot--ready .mediaSlot__fallback{
  display: none;
}

.mediaSlot--iframe.mediaSlot--ready .mediaSlot__frame{
  display: block;
}

.mediaSlot--video.mediaSlot--ready .mediaSlot__video{
  display: block;
}

.mock__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shot{
  display: flex;
  flex-direction: column;
}

.shot__media{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #12203d;
}

.shot__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.shot figcaption{
  font-size: 14px;
  line-height: 1.55;
  background-color: #015c81;
}

@media (max-width: 1100px){
  #testimonios .leadKeep{
    white-space: normal;
  }
}

@media (max-width: 640px){
  .shot__media{
    aspect-ratio: 16 / 10;
  }

  .shot figcaption{
    font-size: 14.5px;
  }
}


/* === Legal pages === */
body.legalPage{
  background: var(--bg);
  color: var(--text);
}

body.legalPage .topbar{
  background: rgba(243,245,248,.96);
  border-bottom: 1px solid rgba(14,42,70,.08);
}

body.legalPage .nav__link,
body.legalPage .btn--ghost{
  color: rgba(14,42,70,.86);
}

body.legalPage .brand__name,
body.legalPage .hamburger span,
body.legalPage .mobile__link,
body.legalPage .footer__links a,
body.legalPage .footer__muted{
  color: rgba(255,255,255,.76);
}

body.legalPage .nav__link:hover,
body.legalPage .mobile__link:hover{
  color: rgba(14,42,70,.96);
  background: rgba(14,42,70,.06);
}

body.legalPage .mobile{
  background: rgba(243,245,248,.96);
  border-top-color: rgba(14,42,70,.08);
}

body.legalPage .btn--ghost{
  background: rgba(14,42,70,.06);
  border-color: rgba(14,42,70,.10);
}

body.legalPage .btn--ghost:hover{
  background: rgba(14,42,70,.10);
  border-color: rgba(14,42,70,.14);
}

.legalHero{
  padding: clamp(44px, 6vw, 80px) var(--padX) 26px;
}

.legalHero__inner,
.legalBody,
.legalFoot{
  width: min(1120px, 100%);
  margin: 0 auto;
}

.legalHero__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
}

.legalHero h1{
  margin: 18px 0 14px;
  max-width: 920px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .98;
  letter-spacing: -.035em;
}

.legalHero p{
  margin: 0;
  max-width: 880px;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--muted);
  line-height: 1.55;
}

.legalSummary{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 24px 0 8px;
}

.legalChip{
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
}

.legalChip__title{
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,.98);
  letter-spacing: .02em;
}

.legalChip p{
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.legalBody{
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  gap: 26px;
  padding: 20px var(--padX) clamp(44px, 6vw, 72px);
}

.legalContent,
.legalAside{
  min-width: 0;
}

.legalPanel{
  padding: clamp(22px, 3vw, 32px);
  border-radius: 28px;
  background: rgba(255,255,255,.95);
  color: rgba(14,42,70,.9);
  box-shadow: var(--shadow);
}

.legalPanel + .legalPanel{
  margin-top: 18px;
}


.legalBody--stacked{
  grid-template-columns: 1fr;
  gap: 22px;
}

.legalBody--stacked .legalContent,
.legalBody--stacked .legalAside{
  grid-column: 1 / -1;
}

.legalBody--stacked .legalAside .legalPanel{
  position: static;
}

.legalBody--stacked .legalAside{
  max-width: 100%;
}

.legalSection + .legalSection{
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(14,42,70,.08);
}

.legalSection h2{
  margin: 0 0 12px;
  font-size: clamp(23px, 2.3vw, 31px);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: rgba(14,42,70,.96);
}

.legalSection h3{
  margin: 18px 0 8px;
  font-size: 18px;
  line-height: 1.2;
  color: rgba(14,42,70,.94);
}

.legalSection p,
.legalSection li{
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(14,42,70,.82);
}

.legalSection p + p,
.legalSection ul + p,
.legalSection p + ul,
.legalSection ul + ul{
  margin-top: 12px;
}

.legalSection ul{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.legalSection strong{
  color: rgba(14,42,70,.96);
}

.legalAside .legalPanel{
  position: sticky;
  top: 92px;
}

.legalAside h3{
  margin: 0 0 12px;
  font-size: 18px;
  color: rgba(14,42,70,.96);
}

.legalAside p,
.legalAside li{
  font-size: 14px;
  line-height: 1.65;
  color: rgba(14,42,70,.78);
}

.legalAside ul{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.legalCallout{
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(1,92,129,.08), rgba(234,121,56,.08));
  border: 1px solid rgba(14,42,70,.08);
}

.legalCallout strong{
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  color: rgba(14,42,70,.96);
}

.legalMeta{
  display: grid;
  gap: 12px;
}

.legalMeta__row{
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(14,42,70,.04);
  border: 1px solid rgba(14,42,70,.06);
}

.legalMeta__label{
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(14,42,70,.60);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.legalMeta__value{
  font-size: 14px;
  line-height: 1.55;
  color: rgba(14,42,70,.86);
}

.legalMeta__value a{
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.legalFoot{
  padding: 0 var(--padX) clamp(44px, 6vw, 70px);
}

.legalFoot .ctaBar{
  margin-top: 0;
}

@media (max-width: 980px){
  .legalSummary,
  .legalBody{
    grid-template-columns: 1fr;
  }

  .legalAside .legalPanel{
    position: static;
  }
}

@media (max-width: 640px){
  .legalHero{
    padding-top: 28px;
  }

  .legalPanel{
    border-radius: 24px;
  }

  .legalSection h2{
    font-size: 24px;
  }
}

/* === Ajustes puntuales 2026-03-17 === */
#precios .section__head p{
  max-width: none !important;
  width: 100%;
}

#precios .billing{
  display: grid !important;
  width: max-content;
  margin: 12px auto 20px !important;
}

@media (max-width: 980px){
  #precios .billing{
    width: 100%;
  }
}



/* === Sección problema de presentación === */
.problemBand{
  padding: clamp(34px, 5vw, 56px) var(--padX) clamp(30px, 4.5vw, 48px);
  background: transparent;
}
.problemBand__inner{
  width: 100%;
}
.problemBand__head{
  margin: 0 auto 24px;
  max-width: 1280px;
}
.problemBand__eyebrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(234,121,56,.42);
  color: #fff4ea;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #ea7938;
}
.problemBand__head h2{
  margin: 16px auto 14px;
  max-width: 1280px;
  font-size: clamp(30px, 3.35vw, 44px);
  line-height: 1.14;
  letter-spacing: -.02em;
}
.problemBand__head p{
  margin: 0 auto;
  max-width: 1180px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}
.problemBand__miniGrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  margin-top: 22px;
}
.problemMini{
  padding: 18px 18px 16px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(11,26,38,.08);
  box-shadow: 0 12px 26px rgba(0,0,0,.12);
  color: rgba(11,26,38,.88);
}
.problemMini__icon{
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(234,121,56,.12);
  color: var(--accent);
  margin-bottom: 14px;
}
.problemMini__icon svg{
  width: 40px;
  height: 40px;
}
.problemMini h3{
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.26;
  color: rgba(11,26,38,.94);
}
.problemMini p{
  margin: 0;
  font-size: 15px;
  line-height: 1.68;
  color: rgba(11,26,38,.72);
}
.problemVoices{
  margin-top: 38px;
}
.problemVoices h3{
  display: inline-flex;
  align-items: center;
  margin: 0 0 20px;
  padding: 14px 20px;
  border-radius: 16px;
  background: var(--accent);
  border: 1px solid rgba(234,121,56,.55);
  box-shadow: 0 12px 24px rgba(0,0,0,.14);
  font-size: clamp(25px, 2.25vw, 22px);
  line-height: 1.2;
  color: #fff8f2;
}
.problemVoices__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.problemVoice{
  padding: 18px 18px;
  border-radius: 16px;
  background: rgba(7,32,54,.72);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 28px rgba(0,0,0,.14);
  color: rgba(255,255,255,.94);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
}
@media (max-width: 1080px){
  .problemBand__miniGrid,
  .problemVoices__grid{
    grid-template-columns: 1fr;
  }
  .problemBand__head h2,
  .problemBand__head p{
    max-width: 100%;
  }
}
@media (max-width: 640px){
  .problemBand{
    padding-top: 28px;
  }
  .problemBand__eyebrow{
    font-size: 12px;
    padding: 9px 14px;
  }
  .problemBand__head h2{
    font-size: 32px;
  }
  .problemBand__head p{
    font-size: 17px;
  }
  .problemMini{
    padding: 16px;
  }
  .problemMini h3{
    font-size: 19px;
  }
  .problemVoices h3{
    font-size: 24px;
  }
  .problemVoice{
    padding: 16px;
    font-size: 18px;
  }
}
