/* ============================================================
   CANDADO LEGAL — Blindaje Premium · Design System
   Base oscura · acento #FF481F · Montserrat / Hanken Grotesk / Space Mono
   ============================================================ */

:root {
  /* — Color: superficies escalonadas (grafito cálido-frío) — */
  --bg:        #FAF8F4;   /* blanco papel cálido */
  --bg-1:      #F2EFE9;   /* papel */
  --bg-2:      #FFFFFF;   /* paneles */
  --bg-3:      #E8E4DC;   /* chips/hover */
  --bg-card:   #FFFFFF;
  --line:      rgba(22,38,59,0.12);
  --line-2:    rgba(22,38,59,0.22);

  /* — Texto: tinta navy de despacho — */
  --text:      #16263B;
  --text-2:    #43536B;
  --text-3:    #6F7D92;

  /* — Acento: NAVY autoridad (el naranja sale) — */
  --accent:    #163760;
  --accent-2:  #1F4B80;
  --accent-dk: #0D2138;
  --accent-glow: rgba(22,55,96,0.28);

  /* — Bloques oscuros de ritmo — */
  --navy:      #122C49;
  --navy-2:    #0E2238;

  /* — Acentos ronda 2: oro notarial + verde tinta — */
  --gold:      #A07E2F;
  --gold-2:    #BD9A45;
  --gold-glow: rgba(160,126,47,0.22);
  --ink:       #1E3A34;
  --crema:     #F4EEE6;
  --crema-ink: #211A15;

  /* — Tipografías — */
  --serif: "Montserrat", Georgia, serif;
  --sans:  "Hanken Grotesk", system-ui, sans-serif;
  --mono:  "Space Mono", ui-monospace, monospace;

  /* — Métricas — */
  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --radius-lg: 8px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font-family: inherit; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Tipografía base ---------- */
h1, h2, h3 { font-family: var(--sans); font-weight: 500; line-height: 1.04; letter-spacing: -0.01em; }
.serif-italic { font-style: italic; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.accent { color: var(--accent); }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(72px, 10vw, 140px); position: relative; }
.section-head { max-width: 760px; }
.section-head h2 {
  font-family: "Inter", var(--sans);
  font-weight: 700;
  font-size: clamp(34px, 5.2vw, 62px);
  margin-top: 18px;
  text-wrap: balance;
}
.section-head p { color: var(--text-2); margin-top: 22px; font-size: clamp(16px, 1.5vw, 19px); max-width: 60ch; }
.lead { color: var(--text-2); }

/* hairline divider */
.rule { height: 1px; background: var(--line); border: 0; }

/* ============================================================
   TOPBAR + NAV
   ============================================================ */
.topbar {
  background: var(--bg-1);
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--text-3);
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; height: 38px; gap: 24px; }
.topbar a { color: var(--text-2); transition: color .2s; }
.topbar a:hover { color: var(--accent); }
.topbar .tb-group { display: flex; gap: 22px; align-items: center; }
.topbar .tb-right { display: flex; gap: 20px; align-items: center; }
.topbar .dot { color: var(--accent); }
@media (max-width: 860px) { .topbar .tb-hide { display: none; } }
@media (max-width: 560px) { .topbar .tb-right span:not(.dot), .topbar .tb-right .dot { display: none; } .topbar .wrap { justify-content: center; } }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,244,0.8);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: background .3s, border-color .3s;
}
.nav.scrolled { background: rgba(250,248,244,0.95); box-shadow: 0 1px 0 var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 32px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 14.5px; color: var(--text-2); font-weight: 500;
  position: relative; padding: 6px 0; transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--accent); transition: width .25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-tel { font-family: var(--mono); font-size: 13px; color: var(--text-2); }
@media (max-width: 1000px) { .nav-links, .nav-tel { display: none; } }

/* Brand lockup */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { height: 42px; width: auto; display: block; }
footer .brand-logo { height: 48px; }
.brand .lock {
  position: relative; width: 22px; height: 26px; flex: none;
}
.brand .lock .body {
  position: absolute; bottom: 0; left: 0; width: 22px; height: 16px;
  background: var(--accent); border-radius: 3px;
}
.brand .lock .shackle {
  position: absolute; top: 0; left: 4px; width: 14px; height: 14px;
  border: 2.6px solid var(--text); border-bottom: none;
  border-radius: 8px 8px 0 0;
}
.brand .lock .body::after {
  content: ""; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px; background: var(--bg); border-radius: 2px;
}
.brand .name { font-family: var(--serif); font-size: 21px; font-weight: 600; letter-spacing: -0.01em; }
.brand .name b { color: var(--accent); font-weight: 600; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 14.5px; letter-spacing: 0.01em;
  padding: 13px 22px; border-radius: var(--radius); transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); box-shadow: 0 10px 30px -10px var(--accent-glow); }
.btn-ghost { border: 1px solid var(--line-2); color: var(--text); }
.btn-ghost:hover { border-color: var(--text); background: rgba(22,55,96,0.05); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

/* hamburger */
.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: var(--radius); flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.burger span { width: 18px; height: 1.5px; background: var(--text); transition: .25s; }
@media (max-width: 1000px) { .burger { display: flex; } }
@media (max-width: 560px) { .nav-right .btn { display: none; } }

/* ── Nav navy: franja en --accent, texto blanco, CTA dorado ── */
.nav, .nav.scrolled { background: rgba(22,55,96,0.92); border-bottom-color: rgba(255,255,255,0.16); }
.nav.scrolled { background: rgba(22,55,96,0.97); box-shadow: 0 1px 0 rgba(255,255,255,0.14); }
.nav .nav-links a { color: rgba(255,255,255,0.8); }
.nav .nav-links a:hover { color: #fff; }
.nav .nav-links a::after { background: var(--gold-2); }
.nav .nav-tel { color: rgba(255,255,255,0.65); }
.nav .btn-primary { background: var(--accent-dk); color: #fff; border: 1px solid rgba(255,255,255,0.45); }
.nav .btn-primary:hover { background: var(--accent); box-shadow: 0 10px 30px -10px var(--accent-glow); }
.nav .burger { border-color: rgba(255,255,255,0.35); }
.nav .burger span { background: #fff; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--bg);
  padding: 100px var(--pad) 40px; display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-100%); opacity: 0; pointer-events: none; transition: .35s ease;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--serif); font-size: 30px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 24px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(60px, 9vw, 110px); padding-bottom: clamp(60px, 9vw, 120px); overflow: hidden; }

/* ── Stack scroll: el hero se ancla y banner/partners/nosotros se le enciman.
     El wrapper .hero-stack limita el sticky: al terminar "¿Qué es?/nosotros",
     el hero se libera y todo lo demás desplaza normal. ── */
.hero-stack .hero,
.hero-stack .svc-hero { position: sticky; top: 0; z-index: 0; }
.hero-stack .header-banner,
.hero-stack .partners,
.hero-stack #nosotros,
.hero-stack .section { position: relative; z-index: 2; }
.hero-stack .partners,
.hero-stack #nosotros,
.hero-stack .section { background: var(--bg); }
.hero-stack .section.services { background: var(--bg-1); }
.hero-stack .header-banner,
.hero-stack .svc-hero + .section { box-shadow: 0 -26px 60px -18px rgba(13, 33, 56, 0.35); }
.hero-stack #nosotros,
.hero-stack > .section:last-child { border-bottom: 1px solid var(--line); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(70% 90% at 78% 18%, rgba(22,55,96,0.07), transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg));
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(22,38,59,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,38,59,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 75%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero h1 {
  font-family: "Inter", var(--sans);
  font-weight: 700;
  font-size: clamp(46px, 8.2vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin-top: 26px;
  text-wrap: balance;
}
.hero h1 .em { color: var(--gold); font-style: italic; }
.hero .sub {
  color: var(--text);
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 600;
  line-height: 1.5;
  max-width: 44ch; margin-top: 28px;
}
.hero .sub strong { color: var(--accent-2); font-weight: 700; }
.hero-cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 30px; margin-top: 48px; flex-wrap: wrap; }
.hero-meta .m { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .m b { font-family: var(--serif); font-size: 30px; font-weight: 600; line-height: 1; }
.hero-meta .m span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); }
.hero-meta .m b em { color: var(--accent); font-style: normal; }

/* hero visual */
.hero-visual { position: relative; }
.hero-visual .ph { aspect-ratio: 4/5; border-radius: var(--radius-lg); }
.hero-badge {
  position: absolute; left: -36px; bottom: -12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border: 1px solid rgba(189,154,69,0.45); border-left: 3px solid var(--gold-2);
  border-radius: var(--radius-lg); padding: 14px 18px; max-width: 235px;
  box-shadow: 0 30px 70px -22px rgba(13,33,56,0.55), 0 0 0 4px rgba(250,248,244,0.85);
}
.hero-badge .tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-2); display: flex; align-items: center; gap: 7px; }
.hero-badge .tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-2); flex: none; animation: badgePulse 2.2s ease-out infinite; }
@keyframes badgePulse { 0% { box-shadow: 0 0 0 0 rgba(189,154,69,0.55); } 70% { box-shadow: 0 0 0 9px rgba(189,154,69,0); } 100% { box-shadow: 0 0 0 0 rgba(189,154,69,0); } }
.hero-badge .big { font-family: var(--serif); font-size: 19px; font-weight: 600; margin-top: 7px; line-height: 1.12; color: #F3F1EE; }
.hero-badge .small { font-size: 11.5px; color: rgba(232,236,242,0.72); margin-top: 5px; line-height: 1.45; }
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* ============================================================
   PLACEHOLDER (imágenes)
   ============================================================ */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(22,38,59,0.03) 0 10px, transparent 10px 20px),
    var(--bg-3);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.ph .ph-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); padding: 6px 12px; border: 1px solid var(--line-2); border-radius: 100px;
  background: rgba(255,255,255,0.7);
}
.ph .ph-corner { position: absolute; top: 12px; left: 12px; width: 14px; height: 14px; border-top: 1px solid var(--accent); border-left: 1px solid var(--accent); opacity: .7; }
.ph .ph-corner.br { top: auto; left: auto; bottom: 12px; right: 12px; border: 0; border-bottom: 1px solid var(--accent); border-right: 1px solid var(--accent); }

/* ============================================================
   QUÉ ES
   ============================================================ */
.intro-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 96px); align-items: start; }
.intro-grid .big-stmt { font-family: "Inter", var(--sans); font-weight: 700; font-size: clamp(30px, 4.2vw, 50px); line-height: 1.06; text-wrap: balance; }
.intro-grid .big-stmt em { color: var(--gold); font-style: italic; }
.intro-body p { color: var(--text-2); font-size: clamp(16px, 1.5vw, 18.5px); margin-bottom: 22px; }
.intro-body p strong { color: var(--text); font-weight: 600; }
.intro-body .btn { margin-top: 12px; }
@media (max-width: 820px) { .intro-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   SERVICIOS
   ============================================================ */
.services { background: var(--bg-1); border-block: 1px solid var(--line); }
/* head de servicios: texto + imagen a la derecha */
.svc-head-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.svc-head-img { width: 100%; max-width: 500px; height: auto; display: block; justify-self: end; border-radius: var(--radius-lg); }
/* entrada dinámica: desliza desde la derecha + zoom + blur, tras el texto */
.svc-head-img.reveal {
  opacity: 0; transform: translateX(56px) scale(0.9) rotate(1.5deg); filter: blur(10px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1) .18s, transform .9s cubic-bezier(.2,.7,.2,1) .18s, filter .9s ease .18s;
}
.svc-head-img.reveal.in { opacity: 1; transform: none; filter: none; }
@media (max-width: 820px) { .svc-head-grid { grid-template-columns: 1fr; gap: 28px; } .svc-head-img { justify-self: start; } }

.svc-list { margin-top: 60px; display: flex; flex-direction: column; }
.svc {
  display: grid; grid-template-columns: 120px 1.2fr 1fr; gap: clamp(24px, 4vw, 56px);
  padding: clamp(32px, 4vw, 48px) 0; border-top: 1px solid var(--line);
  align-items: start; transition: background .3s;
}
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc:hover { background: linear-gradient(90deg, rgba(22,55,96,0.05), transparent 60%); }
.svc .num { font-family: var(--serif); font-size: clamp(40px, 5vw, 64px); font-weight: 500; color: var(--text-3); line-height: .9; }
.svc:hover .num { color: var(--accent); }
.svc .main h3 { font-size: clamp(24px, 2.6vw, 33px); }
.svc .main .sub { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em; color: var(--accent); margin-top: 12px; text-transform: uppercase; }
.svc .main p { color: var(--text-2); margin-top: 16px; font-size: 16px; max-width: 42ch; }
.svc .incl .incl-t { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.svc .incl ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.svc .incl li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--text); }
.svc .incl li .ck { color: var(--accent); flex: none; margin-top: 2px; }
.svc .go { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-3); margin-top: 22px; transition: color .2s, gap .2s; }
.svc:hover .go { color: var(--text); }
.svc .go:hover { gap: 14px; color: var(--accent); }
@media (max-width: 900px) {
  .svc { grid-template-columns: 1fr; gap: 18px; }
  .svc .num { font-size: 36px; }
}

/* ============================================================
   BENEFICIOS BROKER
   ============================================================ */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 56px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.benefit { padding: clamp(28px, 3.5vw, 44px); border-right: 1px solid var(--line); position: relative; transition: background .3s; }
.benefit:last-child { border-right: none; }
.benefit:hover { background: var(--bg-2); }
.benefit .bn { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.benefit h3 { font-size: clamp(22px, 2.4vw, 28px); margin-top: 18px; }
.benefit p { color: var(--text-2); margin-top: 14px; font-size: 15.5px; }
@media (max-width: 820px) { .benefits { grid-template-columns: 1fr; } .benefit { border-right: none; border-bottom: 1px solid var(--line); } .benefit:last-child { border-bottom: none; } }

/* ============================================================
   TRUST GRID (contadores)
   ============================================================ */
.trust { background: var(--accent); border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust-cell { padding: clamp(36px, 5vw, 64px) clamp(20px, 3vw, 40px); border-right: 1px solid #fff; }
.trust-cell:last-child { border-right: none; }
.trust-cell .stat { font-family: var(--serif); font-size: clamp(48px, 7vw, 86px); font-weight: 500; line-height: 1; letter-spacing: -0.02em; color: #fff; }
.trust-cell .stat .u { color: #fff; }
.trust-cell .lbl { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-top: 16px; }
@media (max-width: 820px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } .trust-cell:nth-child(2) { border-right: none; } .trust-cell:nth-child(-n+2) { border-bottom: 1px solid #fff; } }

/* ============================================================
   CALCULADORA + PLANES
   ============================================================ */
.calc-wrap { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(28px, 4vw, 56px); margin-top: 56px; align-items: start; }
@media (max-width: 1000px) { .calc-wrap { grid-template-columns: 1fr; } }

.calc-panel { background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 36px); position: sticky; top: 92px; }
.calc-panel .ct { font-family: var(--serif); font-size: 26px; font-weight: 600; line-height: 1.1; }
.calc-panel .cs { color: var(--text-2); font-size: 14.5px; margin-top: 10px; }
.field { margin-top: 26px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); display: block; margin-bottom: 12px; }
.seg { display: flex; gap: 6px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 5px; }
.seg button { flex: 1; padding: 10px 8px; border-radius: 2px; font-size: 13.5px; font-weight: 600; color: var(--text-3); transition: all .18s; }
.seg button.on { background: var(--accent); color: #fff; }
.seg button:not(.on):hover { color: var(--text); }
.seg.col { flex-direction: column; }
.seg.col button { text-align: left; padding: 12px 14px; display: flex; justify-content: space-between; align-items: center; }

.rent-input { display: flex; align-items: center; gap: 0; border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; background: var(--bg); }
.rent-input .cur { padding: 0 16px; font-family: var(--mono); color: var(--text-3); font-size: 18px; border-right: 1px solid var(--line); align-self: stretch; display: flex; align-items: center; }
.rent-input input { flex: 1; background: none; border: none; outline: none; color: var(--text); font-family: var(--serif); font-size: 26px; font-weight: 600; padding: 14px 16px; width: 100%; }
.rent-slider { width: 100%; margin-top: 16px; -webkit-appearance: none; appearance: none; height: 3px; background: var(--line-2); border-radius: 2px; outline: none; }
.rent-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); cursor: pointer; border: 3px solid var(--bg-2); box-shadow: 0 0 0 1px var(--accent); }
.rent-slider::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); cursor: pointer; border: 3px solid var(--bg-2); }
.rent-range-lbls { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 10.5px; color: var(--text-3); margin-top: 8px; }
.calc-note { font-family: var(--mono); font-size: 11px; color: var(--text-3); margin-top: 24px; line-height: 1.6; border-top: 1px solid var(--line); padding-top: 18px; }

/* Plan cards */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.plan {
  background: var(--bg-card);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px; position: relative; transition: border-color .25s, transform .25s, background .25s;
  display: flex; flex-direction: column;
}
.plan:hover { transform: translateY(-3px); border-color: var(--line-2); }
.plan.reco {
  border-color: var(--navy);
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  color: #F3F1EE;
  box-shadow: 0 24px 60px -22px rgba(13,33,56,0.5);
}
@media (min-width: 561px) {
  .plan.reco { transform: scale(1.03); }
  .plan.reco:hover { transform: scale(1.03) translateY(-3px); }
}
.plan .reco-badge {
  position: absolute; top: -1px; right: 20px; transform: translateY(-50%);
  background: linear-gradient(110deg, var(--accent) 35%, var(--accent-2) 47%, #ffd9cc 50%, var(--accent-2) 53%, var(--accent) 65%);
  background-size: 220% 100%;
  animation: badge-shimmer 2.6s linear infinite;
  color: #fff; font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; font-weight: 700;
  box-shadow: 0 6px 18px -6px var(--accent-glow);
}
@keyframes badge-shimmer { to { background-position: -220% 0; } }
.plan .pname { font-family: var(--serif); font-size: 24px; font-weight: 600; }
.plan .pdesc { color: var(--text-2); font-size: 13.5px; margin-top: 8px; min-height: 56px; }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.plan .price .amt { font-family: var(--serif); font-size: clamp(32px, 4vw, 44px); font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.plan.reco .price .amt { color: var(--gold-2); }
.plan.reco .pname, .plan.reco ul li, .plan.reco .pdesc { color: #E8ECF2; }
.plan.reco ul li .ck { background: rgba(189,154,69,0.2); color: var(--gold-2); }
.plan.reco .price { border-top-color: rgba(243,241,238,0.18); }
.plan.reco .more { color: rgba(232,236,242,0.6); }
.plan .price .cur { font-family: var(--mono); font-size: 12px; color: var(--text-3); }
.plan .price .per { font-family: var(--mono); font-size: 11px; color: var(--text-3); margin-left: auto; text-align: right; }
.plan ul { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.plan ul li { display: flex; gap: 9px; font-size: 13px; color: var(--text-2); align-items: flex-start; }
.plan ul li .ck {
  display: grid; place-content: center; flex: none;
  width: 17px; height: 17px; margin-top: 1px; border-radius: 50%;
  background: rgba(22,55,96,0.10); color: var(--accent);
  font-size: 10px; line-height: 1;
}
.plan .btn { margin-top: 22px; width: 100%; }
.plan .more { font-family: var(--mono); font-size: 11px; color: var(--text-3); margin-top: 12px; text-align: center; }
@media (max-width: 560px) { .plans { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESO
   ============================================================ */
.proceso { background: var(--bg-1); border-block: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; counter-reset: step; }
.step { padding: 32px clamp(18px, 2vw, 28px) 0; border-top: 2px solid var(--line); position: relative; }
.step::before {
  content: ""; position: absolute; top: -2px; left: 0; height: 2px; width: 0; background: var(--accent);
  transition: width .6s ease;
}
.step.lit::before { width: 100%; }
.step .sn { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.step h3 { font-size: clamp(20px, 2vw, 25px); margin-top: 18px; }
.step p { color: var(--text-2); font-size: 14.5px; margin-top: 14px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; gap: 24px 16px; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners { padding-block: clamp(31px, 3.8vw, 46px); border-bottom: 1px solid var(--line); overflow: hidden; }
.partners .pt-lbl { text-align: center; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); margin-bottom: 26px; -webkit-text-stroke: 0.2px currentColor; }
.marquee { display: flex; gap: 0; align-items: center; width: max-content; animation: scrollx 30s linear infinite; }
.marquee:hover { animation-play-state: paused; }
@keyframes scrollx { to { transform: translateX(-50%); } }
.logo-img {
  height: 34px; width: auto; flex: none; align-self: center;
  margin-right: 64px; /* margen uniforme: el wrap del loop no salta */
  /* logos -> NARANJA ember #FF481F */
  filter: brightness(0) saturate(100%) invert(17%) sepia(31%) saturate(1200%) hue-rotate(185deg) brightness(95%) contrast(95%);
  opacity: .9; transition: opacity .25s, transform .25s;
}
.logo-img:hover { opacity: 1; transform: scale(1.06); }
.logo-img[height="44"] { height: 44px; }
.logo-img[height="28"] { height: 28px; }
.logo-img[height="24"] { height: 24px; }
.marquee-mask { position: relative; }
.marquee-mask::before, .marquee-mask::after { content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.marquee-mask::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee-mask::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(32px, 5vw, 72px); align-items: center; margin-top: 24px; }
.testi-stage { position: relative; min-height: 280px; }
.testi {
  position: absolute; inset: 0; opacity: 0; transform: translateY(16px); transition: opacity .5s, transform .5s; pointer-events: none;
  display: flex; flex-direction: column; justify-content: center;
}
.testi.on { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.testi .quote-mark { font-family: var(--serif); font-size: 90px; line-height: 0.5; color: var(--accent); height: 44px; }
.testi blockquote { font-family: var(--serif); font-size: clamp(22px, 2.8vw, 34px); line-height: 1.28; font-weight: 500; text-wrap: balance; }
.testi .who { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.testi .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 600; color: var(--accent); font-size: 18px; }
.testi .who .nm { font-weight: 600; font-size: 15px; }
.testi .who .rl { font-family: var(--mono); font-size: 11.5px; color: var(--text-3); letter-spacing: 0.04em; }
.testi-nav { display: flex; gap: 12px; margin-top: 40px; align-items: center; }
.testi-nav button { width: 46px; height: 46px; border: 1px solid var(--line-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: .2s; color: var(--text-2); }
.testi-nav button:hover { border-color: var(--accent); color: var(--accent); }
.testi-count { font-family: var(--mono); font-size: 12px; color: var(--text-3); margin-left: 8px; }
.testi-count b { color: var(--text); }
@media (max-width: 820px) { .testi-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; gap: 24px; align-items: center; text-align: left; padding: 26px 0; font-family: var(--serif); font-size: clamp(18px, 2vw, 23px); font-weight: 500; transition: color .2s; }
.faq-q:hover { color: var(--accent); }
.faq-q .ic { flex: none; width: 26px; height: 26px; position: relative; }
.faq-q .ic::before, .faq-q .ic::after { content: ""; position: absolute; background: var(--accent); transition: transform .3s; }
.faq-q .ic::before { top: 50%; left: 4px; right: 4px; height: 1.5px; transform: translateY(-50%); }
.faq-q .ic::after { left: 50%; top: 4px; bottom: 4px; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .faq-q .ic::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 0 28px; color: var(--text-2); font-size: 16px; max-width: 62ch; line-height: 1.7; }
.faq-side .eyebrow { margin-bottom: 18px; }
.faq-side h2 { font-family: "Inter", var(--sans); font-weight: 700; font-size: clamp(30px, 3.6vw, 46px); }
.faq-side p { color: var(--text-2); margin-top: 18px; }
.faq-side .btn { margin-top: 26px; }
@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG
   ============================================================ */
.blog { background: var(--bg-1); border-block: 1px solid var(--line); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.post { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-card); transition: border-color .25s, transform .25s; }
.post:hover { border-color: var(--line-2); transform: translateY(-3px); }
.post .ph { aspect-ratio: 16/10; border: none; border-bottom: 1px solid var(--line); }
.post .pbody { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post .cat { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.post h3 { font-size: 22px; margin-top: 14px; line-height: 1.15; }
.post .date { font-family: var(--mono); font-size: 11px; color: var(--text-3); margin-top: auto; padding-top: 22px; }
@media (max-width: 820px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA + NEWSLETTER + FOOTER
   ============================================================ */
.cta-banner { position: relative; overflow: hidden; }
.cta-banner { background: linear-gradient(180deg, var(--navy), var(--navy-2)); color: #F3F1EE; }
.cta-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0%, rgba(189,154,69,0.14), transparent 60%); }
.cta-banner h2, .cta-banner .nl-lbl { color: #F6F3EC; }
.cta-banner h2 em { color: var(--gold-2); }
.cta-banner .nl-form { background: rgba(243,241,238,0.06); border-color: rgba(243,241,238,0.25); }
.cta-banner .nl-form input { color: #F3F1EE; }
.cta-banner .btn-ghost { border-color: rgba(243,241,238,0.4); color: #F3F1EE; }
.cta-inner { position: relative; text-align: center; max-width: 880px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(36px, 6vw, 76px); line-height: 1.0; text-wrap: balance; }
.cta-inner h2 em { color: var(--accent); font-style: italic; }
.cta-inner .cta-row { display: flex; gap: 14px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }
.newsletter { max-width: 520px; margin: 56px auto 0; }
.newsletter .nl-lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); text-align: center; margin-bottom: 14px; }
.nl-form { display: flex; gap: 8px; border: 1px solid var(--line-2); border-radius: var(--radius); padding: 7px; background: var(--bg-2); }
.nl-form input { flex: 1; background: none; border: none; outline: none; color: var(--text); padding: 0 14px; font-size: 15px; }
.nl-form input::placeholder { color: var(--text-3); }

footer { background: var(--navy-2); border-top: 1px solid rgba(160,126,47,0.25); color: #E8ECF2; padding-block: clamp(56px, 7vw, 88px) 32px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; }
.foot-brand .blurb { color: rgba(232,236,242,0.75); font-size: 14.5px; margin-top: 20px; max-width: 34ch; }
.foot-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 18px; font-weight: 400; }
footer .brand .name { color: #F6F3EC; }
footer .lock .shackle { border-color: #F6F3EC !important; }
.foot-col a, .foot-col p { display: block; color: rgba(232,236,242,0.8); font-size: 14.5px; margin-bottom: 12px; transition: color .2s; }
.foot-col a:hover { color: var(--gold-2); }
.foot-contact b { color: #F6F3EC; font-weight: 600; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(243,241,238,0.15); font-family: var(--mono); font-size: 11.5px; color: rgba(232,236,242,0.6); flex-wrap: wrap; }
.foot-bottom a:hover { color: var(--accent); }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* ============================================================
   REVEAL ANIM
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }


/* ============================================================
   IMÁGENES REALES (hero + blog)
   ============================================================ */
.ph img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-photo img { filter: saturate(.92) contrast(1.04); }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(10,10,12,0) 50%, rgba(10,10,12,0.55));
  pointer-events: none;
}
.post .ph img { transition: transform .5s ease; }
.post:hover .ph img { transform: scale(1.04); }
.ph .ph-corner { z-index: 2; }


/* ============================================================
   21ST.DEV PATTERNS — pill eyebrow + dot grid
   ============================================================ */
.eyebrow.pill {
  border: 1px solid var(--accent-2);
  background: transparent;
  border-radius: 100px;
  padding: 6px 16px 6px 6px;
  color: var(--accent-2);
}
.eyebrow.pill::before { display: none; }
.eyebrow.pill .chip {
  background: var(--accent); color: #fff;
  border-radius: 100px; padding: 3px 10px;
  font-weight: 700; letter-spacing: 0.1em;
}

/* dot grid de fondo para la sección de precios */
#precios { position: relative; }
#precios::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .35;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(80% 70% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
}
#precios .wrap { position: relative; z-index: 1; }


/* ============================================================
   21ST.DEV BackgroundPaths — CANVAS: dash fluyendo por cada línea
   (lineDashOffset en rAF sobre un solo lienzo; gates en JS)
   ============================================================ */
.hero-paths { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-paths canvas { width: 100%; height: 100%; display: block; }

/* ============================================================
   21ST.DEV dark-gradient-pricing — blur-in escalonado de planes
   ============================================================ */
.plans.reveal .plan { filter: blur(7px); opacity: 0; transform: translateY(18px); }
.plans.reveal.in .plan {
  filter: blur(0); opacity: 1; transform: none;
  transition: filter .6s ease, opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1);
}
.plans.reveal.in .plan:nth-child(1) { transition-delay: .05s; }
.plans.reveal.in .plan:nth-child(2) { transition-delay: .15s; }
.plans.reveal.in .plan:nth-child(3) { transition-delay: .25s; }
.plans.reveal.in .plan:nth-child(4) { transition-delay: .35s; }
.plans.reveal.in .plan.reco { transform: scale(1.03); }
@media (max-width: 560px) { .plans.reveal.in .plan.reco { transform: none; } }


/* vapor word host */
#vaporWord canvas { max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; clip-path: inset(50%); overflow: hidden; white-space: nowrap; }


/* ============================================================
   CHAT FLOTANTE — Asesor IA Candado Legal
   ============================================================ */
.chat-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 95;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px -8px var(--accent-glow);
  transition: transform .2s, background .2s;
}
.chat-float:hover { transform: scale(1.07); background: var(--accent-2); }
.chat-float-badge {
  position: absolute; top: -2px; right: -2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; color: var(--accent-dk);
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--accent);
}
.chat-float.seen .chat-float-badge { display: none; }

.chat-panel {
  position: fixed; right: 22px; bottom: 94px; z-index: 96;
  width: 372px; max-width: calc(100vw - 28px);
  height: 540px; max-height: calc(100dvh - 120px);
  background: var(--bg-1); border: 1px solid var(--line-2); border-radius: 12px;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.75);
  opacity: 0; transform: translateY(14px) scale(.98); pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.chat-panel.open { opacity: 1; transform: none; pointer-events: auto; }
.chat-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; background: var(--bg-2); border-bottom: 1px solid var(--line);
}
.chat-head .lock { position: relative; width: 18px; height: 21px; flex: none; }
.chat-head .lock .body { position: absolute; bottom: 0; left: 0; width: 18px; height: 13px; background: var(--accent); border-radius: 3px; }
.chat-head .lock .shackle { position: absolute; top: 0; left: 3px; width: 12px; height: 11px; border: 2.2px solid var(--text); border-bottom: none; border-radius: 7px 7px 0 0; }
.chat-head-t { display: flex; flex-direction: column; line-height: 1.25; }
.chat-head-t b { font-family: var(--serif); font-size: 16px; }
.chat-head-t span { font-family: var(--mono); font-size: 10.5px; color: var(--text-3); display: flex; align-items: center; gap: 6px; }
.chat-dot { width: 7px; height: 7px; border-radius: 50%; background: #2ecc71; display: inline-block; }
.chat-close { margin-left: auto; font-size: 22px; color: var(--text-3); width: 32px; height: 32px; border-radius: 6px; transition: .2s; }
.chat-close:hover { color: var(--text); background: rgba(255,255,255,.06); }

.chat-msgs { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 86%; padding: 10px 14px; border-radius: 12px; font-size: 14px; line-height: 1.55; white-space: pre-wrap; }
.chat-msg.bot { background: var(--bg-1); border: 1px solid var(--line); color: var(--text); border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-msg.user { background: var(--accent); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-typing { display: inline-flex; gap: 5px; padding: 13px 16px; }
.chat-typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--text-3); animation: ct .9s ease-in-out infinite; }
.chat-typing i:nth-child(2) { animation-delay: .15s; }
.chat-typing i:nth-child(3) { animation-delay: .3s; }
@keyframes ct { 0%,100% { transform: translateY(0); opacity: .4; } 50% { transform: translateY(-4px); opacity: 1; } }

.chat-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: var(--bg-2); }
.chat-form input {
  flex: 1; background: var(--bg); border: 1px solid var(--line); border-radius: 8px;
  padding: 11px 14px; color: var(--text); font-size: 14px; outline: none;
}
.chat-form input:focus { border-color: var(--accent); }
.chat-form button {
  width: 44px; border-radius: 8px; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.chat-form button:hover { background: var(--accent-2); }
.chat-form button:disabled { opacity: .5; }
.chat-form .chat-attach { width: 40px; flex: none; background: var(--bg); color: var(--text-3); border: 1px solid var(--line); }
.chat-form .chat-attach:hover { background: var(--bg-3); color: var(--accent); border-color: var(--line-2); }
.chat-chip {
  display: flex; align-items: center; gap: 8px; margin: 0 12px;
  padding: 7px 12px; border: 1px solid var(--line-2); border-radius: 8px;
  background: var(--bg-1); font-size: 12.5px; color: var(--text-2);
}
.chat-chip b { font-weight: 600; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 240px; }
.chat-chip button { margin-left: auto; width: 20px; height: 20px; line-height: 1; border-radius: 50%; color: var(--text-3); font-size: 15px; }
.chat-chip button:hover { color: var(--accent); background: var(--bg-3); }
.chat-foot { font-family: var(--mono); font-size: 9.5px; color: var(--text-3); text-align: center; padding: 7px 10px 10px; background: var(--bg-2); }

@media (max-width: 480px) {
  .chat-panel { right: 8px; left: 8px; width: auto; bottom: 86px; height: calc(100dvh - 104px); }
}


/* ============================================================
   21ST.DEV card-stack — abanico 3D del blog (port vanilla)
   ============================================================ */
.stack { position: relative; margin-top: 56px; outline: none; }
.stack-glow {
  position: absolute; left: 50%; bottom: 40px; transform: translateX(-50%);
  width: 70%; height: 150px; border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(22,55,96,0.12), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.stack-stage {
  position: relative; height: 420px;
  perspective: 1100px;
  display: flex; align-items: flex-end; justify-content: center;
}
.stack-card {
  position: absolute; bottom: 24px; left: 50%;
  width: min(520px, 82vw); aspect-ratio: 520/320;
  margin-left: calc(min(520px, 82vw) / -2);
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 70px -24px rgba(0,0,0,.8);
  transform-style: preserve-3d;
  transition: transform .65s cubic-bezier(.3,1.25,.35,1), opacity .4s ease, border-color .3s;
  will-change: transform;
  user-select: none; -webkit-user-drag: none;
  touch-action: pan-y;
}
.stack-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.stack-card .sc-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,38,.85) 0%, rgba(10,22,38,.2) 55%, transparent 100%); }
.stack-card .sc-body { position: absolute; inset: auto 0 0 0; padding: 20px 22px; display: flex; flex-direction: column; gap: 6px; }
.stack-card .cat { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-2); }
.stack-card b { font-family: var(--serif); font-size: clamp(19px, 2.2vw, 25px); font-weight: 500; color: #fff; line-height: 1.12; }
.stack-card .date { font-family: var(--mono); font-size: 10.5px; color: rgba(255,255,255,.55); }
.stack-card.is-active { cursor: grab; border-color: var(--gold); }
.stack-card.is-active:active { cursor: grabbing; }
.stack-card:not(.is-active) { cursor: pointer; }
.stack-card:not(.is-active) .sc-body { opacity: .55; }
.stack-card.dragging { transition: none; }

.stack-dots { display: flex; justify-content: center; gap: 10px; margin-top: 22px; }
.stack-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(22,55,96,.25); transition: background .25s, transform .25s;
}
.stack-dots button:hover { background: rgba(22,55,96,.5); }
.stack-dots button.on { background: var(--accent); transform: scale(1.25); }

@media (max-width: 640px) {
  .stack-stage { height: clamp(260px, 64vw, 420px); }
}


/* ============================================================
   21ST.DEV crystal-cursor — port vanilla brand (canvas overlay)
   pointer-events none · loop duerme sin partículas
   ============================================================ */
#crystalFx { position: fixed; inset: 0; z-index: 200; pointer-events: none; }


/* ============================================================
   21ST.DEV wave-text — ola por letra al hover
   ============================================================ */
.wv .wv-w { display: inline-block; white-space: nowrap; }
.wv .wv-c {
  display: inline-block;
  transition: transform .45s cubic-bezier(.3,1.6,.4,1);
}
.wv.wave .wv-c { transform: translateY(-5px) scale(1.1); }


/* Kill-switch manual de efectos (?fx=off) */
.no-fx *, .no-fx *::before, .no-fx *::after {
  animation: none !important;
  transition: none !important;
}
.no-fx .reveal, .no-fx .plans.reveal .plan { opacity: 1 !important; transform: none !important; filter: none !important; }
#crystalFx { display: var(--fx-display, block); }
.no-fx #crystalFx { display: none; }


/* ============================================================
   21ST.DEV SplineScene + Spotlight — sección Tecnología 3D
   ============================================================ */
.tech-card {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #F3F1EE; border: 1px solid rgba(160,126,47,0.25); border-radius: 14px;
  min-height: 480px;
}
.tech-spot {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(189,154,69,0.18), rgba(22,55,96,0.06) 45%, transparent 75%);
  filter: blur(28px); opacity: 0; transition: opacity .25s;
  pointer-events: none; z-index: 1;
}
.tech-card:hover .tech-spot { opacity: 1; }
.tech-copy { position: relative; z-index: 2; padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.tech-copy .eyebrow.accent { color: #fff; }
.tech-copy .eyebrow.accent::before { background: #fff; }
.tech-copy h2 { font-size: clamp(28px, 3.4vw, 44px); margin-top: 18px; color: #F6F3EC; }
.tech-copy h2 em { color: var(--gold-2); }
.tech-copy p { color: rgba(232,236,242,0.8); margin-top: 16px; max-width: 46ch; }
.tech-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.tech-list li { display: flex; gap: 10px; font-size: 15px; color: #E8ECF2; }
.tech-list .ck { color: var(--gold-2); }
.tech-copy .btn { margin-top: 26px; align-self: flex-start; }
.tech-3d { position: relative; min-height: 420px; }
.tech-3d spline-viewer { position: absolute; inset: 0; width: 100%; height: 100%; }
.tech-3d-ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(60% 60% at 60% 40%, rgba(189,154,69,0.15), transparent 70%);
}
.tech-3d-ph span { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); }
@media (max-width: 900px) {
  .tech-card { grid-template-columns: 1fr; }
  .tech-3d { display: none; }  /* 3D solo desktop: presupuesto mobile */
}


/* ============================================================
   PULIDO AGENTES DE DISEÑO (4 jun) — color cálido + detalles finos
   ============================================================ */

/* — Sección crema editorial: TESTIMONIOS (pico de marca) — */
#testimonios {
  background:
    linear-gradient(180deg, rgba(18,44,73,0.92), rgba(14,34,56,0.94)),
    url("img/clientes-opinan.webp") center / cover no-repeat;
  background-attachment: fixed; /* parallax: la imagen queda anclada al viewport */
  color: #F3F1EE; border-block: 1px solid rgba(160,126,47,0.25);
}
/* iOS/móvil no soporta bien fixed con cover → fallback sin parallax */
@media (max-width: 820px), (hover: none) {
  #testimonios { background-attachment: scroll; }
}
#testimonios .section-head h2, #testimonios h2, #testimonios .testi blockquote { color: #F6F3EC; }
#testimonios h2 { font-family: "Inter", var(--sans); font-weight: 700; }
#testimonios .eyebrow { color: var(--gold-2); }
#testimonios .testi .who .nm { color: #F6F3EC; }
#testimonios .testi .who .rl, #testimonios .testi-count { color: rgba(243,241,238,0.6); }
#testimonios .testi-count b { color: #F6F3EC; }
#testimonios .testi .who .av { background: rgba(243,241,238,0.1); border-color: rgba(243,241,238,0.25); color: var(--gold-2); }
#testimonios .testi-nav button { border-color: rgba(243,241,238,0.3); color: rgba(243,241,238,0.75); }
#testimonios .testi-nav button:hover { border-color: var(--gold-2); color: var(--gold-2); }
#testimonios .testi .quote-mark { color: var(--accent); }

/* — Chat: mensajes anclados abajo (spacer flex seguro con scroll) — */
.chat-msgs .chat-msg:first-child { margin-top: auto; }

/* — Burger → X (usa aria-expanded que ya togglea el JS) — */
#burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
#burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
#burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* — Focos visibles (calculadora, newsletter, toggles) — */
.nl-form:focus-within { border-color: var(--accent); }
.rent-input:focus-within { border-color: var(--accent); }
.seg button:focus-visible { outline: 1px solid var(--accent); outline-offset: 2px; }
.rent-slider::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(255,72,31,.18); }

/* — Plan cards: radio unificado con superficies grandes + colchón desc — */
.plan { border-radius: 12px; }
.plan .pdesc { min-height: 64px; }

/* — Servicio hover: barra acento — */
.svc:hover { box-shadow: inset 3px 0 0 var(--accent); }

/* — Hero meta: sin wraps rotos — */
.hero-meta .m { max-width: 150px; }
.hero-meta .m span { line-height: 1.35; }

/* — Trust mobile: respiro — */
@media (max-width: 820px) { .trust-cell { padding-block: clamp(28px, 6vw, 40px); } }

/* — FAQ icono nítido — */
.faq-q .ic { width: 24px; height: 24px; }
.faq-q .ic::before { left: 5px; right: 5px; }
.faq-q .ic::before, .faq-q .ic::after { background: var(--accent-2); }

/* — Footer: affordance en contacto + bottom centrado mobile — */
.foot-contact a[href^="tel"], .foot-contact a[href^="mailto"] {
  color: #F6F3EC; border-bottom: 1px solid var(--line); width: max-content; padding-bottom: 2px;
}
@media (max-width: 520px) { .foot-bottom { justify-content: center; text-align: center; gap: 10px; } }


/* ============================================================
   FX PRO — progress bar · magnetic · tilt
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 300;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform-origin: 0 50%; transform: scaleX(0);
  box-shadow: 0 0 12px var(--accent-glow);
  pointer-events: none;
}
.btn.magnetic { transition: transform .18s ease, background .2s, box-shadow .2s, border-color .2s; will-change: transform; }
.tiltable { transition: transform .35s ease; will-change: transform; transform-style: preserve-3d; }
.plan.tiltable:hover { transform: none; } /* el tilt JS toma el control del hover-lift */
.plan.reco.tiltable:hover { transform: scale(1.03); }


/* ============================================================
   FLYERS — material para brokers (film strip + lightbox)
   ============================================================ */
.flyers-sec { background: var(--bg-1); border-block: 1px solid var(--line); padding-bottom: 48px; }
.flyer-strip {
  display: flex; gap: 22px; margin-top: 48px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 16px var(--pad) 26px;
  scrollbar-width: thin; scrollbar-color: var(--accent) transparent;
}
.flyer {
  flex: none; width: clamp(190px, 21vw, 250px);
  scroll-snap-align: center;
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--line-2);
  transform: rotate(var(--rot, 0deg));
  transition: transform .35s cubic-bezier(.3,1.3,.4,1), border-color .25s, box-shadow .3s;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.7);
}
.flyer:nth-child(odd) { --rot: -1.6deg; }
.flyer:nth-child(even) { --rot: 1.4deg; }
.flyer:hover { transform: rotate(0deg) translateY(-8px) scale(1.04); border-color: var(--accent); box-shadow: 0 26px 50px -16px rgba(255,72,31,.25); }
.flyer img { display: block; width: 100%; height: auto; }
.flyer-hint { text-align: center; font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); }

.lightbox {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(14,28,46,.92); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  padding: 24px;
  opacity: 0; transition: opacity .25s; pointer-events: none;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-height: 78vh; max-width: 92vw; border-radius: 10px; border: 1px solid var(--line-2); box-shadow: 0 40px 100px -30px #000; }
.lb-close { position: absolute; top: 18px; right: 22px; font-size: 34px; color: var(--text-2); width: 48px; height: 48px; }
.lb-close:hover { color: var(--accent); }


/* ============================================================
   BANNER REMOTION — video de fondo del CTA final
   ============================================================ */
.cta-banner { position: relative; }
.cta-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: 0; transition: opacity 1.2s ease;
}
.cta-video.on { opacity: .45; }
.cta-video-shade {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(70% 90% at 50% 50%, rgba(21,17,15,0.55), rgba(21,17,15,0.92));
}
.cta-banner::before { z-index: 1; }
.cta-banner .wrap { position: relative; z-index: 2; }


/* ============================================================
   HEADER BANNER — video Remotion hasta arriba, sin textos
   ============================================================ */
.header-banner {
  /* franja navy arriba + frame COMPLETO del video Glass Editorial (1920x410: MITAD del alto original, cero recorte) */
  border-top: 12px solid var(--navy);
  position: relative;
  aspect-ratio: 1920 / 410;
  height: auto;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.header-banner video {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
/* logo centrado sobre el video, pintado en --accent vía mask */
.header-banner .hb-logo {
  position: absolute; inset: 0; margin: auto;
  width: clamp(242px, 35.2vw, 506px); aspect-ratio: 460 / 120;
  background: var(--accent);
  -webkit-mask: url("img/logo-candado-legal.svg?v=1") center / contain no-repeat;
  mask: url("img/logo-candado-legal.svg?v=1") center / contain no-repeat;
  pointer-events: none;
}


/* ============================================================
   RONDA 2 AGENTE DISEÑO — oro notarial · verde tinta · grain ·
   § gigante · draw-on · scrollbar · marquee vertical
   ============================================================ */

/* A. Oro quirúrgico (autoridad, nunca CTA) */
::selection { background: var(--gold); color: var(--crema-ink); }
.trust-cell .stat .u { color: #fff; }
.hero-meta .m b em { color: var(--gold); }
#testimonios .testi .quote-mark { color: var(--gold); opacity: .9; }
.plan .reco-badge {
  background: linear-gradient(110deg, var(--gold) 35%, var(--gold-2) 50%, var(--gold) 65%);
  background-size: 220% 100%;
}
.section-head .eyebrow { color: var(--gold); }
.section-head .eyebrow::before { background: var(--gold); }
.svc .main .sub { color: var(--gold-2); }

/* B4. § notarial gigante outline en Servicios */
.services { position: relative; overflow: hidden; }
.services::before {
  content: "§"; position: absolute; top: -.14em; right: 1vw;
  font-family: var(--serif); font-weight: 500; line-height: .8;
  font-size: clamp(220px, 32vw, 500px);
  color: transparent; -webkit-text-stroke: 1px rgba(160,126,47,0.22);
  pointer-events: none; z-index: 0; user-select: none;
}
.services .wrap { position: relative; z-index: 1; }

/* B5. Trazos que se dibujan al revelar (solo dentro de .reveal: blog intacto) */
.reveal .eyebrow::before { width: 0; transition: width .8s cubic-bezier(.2,.7,.2,1) .15s; }
.reveal.in .eyebrow::before { width: 42px; }
.section-head h2 { position: relative; }
.section-head h2::after {
  content: ""; position: absolute; left: 0; bottom: -14px; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  transition: width .9s cubic-bezier(.2,.7,.2,1) .25s;
}
.reveal.in h2::after, .section-head.in h2::after { width: 64px; }

/* B6. Sello § en blend sobre la foto del hero */
.hero-visual { position: relative; }
.hero-visual::before {
  content: "§"; position: absolute; z-index: 3; top: 14px; left: 18px;
  font-family: var(--serif); font-size: 58px; color: #fff;
  mix-blend-mode: overlay; opacity: .7; pointer-events: none;
}

/* B7. Grain fílmico global (SVG data:, cero requests) */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 250; pointer-events: none;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.no-fx body::after { display: none; }

/* B8. Scrollbar de marca + marquee vertical en Trust */
* { scrollbar-width: thin; scrollbar-color: var(--accent) var(--bg-2); }
*::-webkit-scrollbar { width: 11px; height: 11px; }
*::-webkit-scrollbar-track { background: var(--bg); }
*::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--accent), var(--accent-dk));
  border: 3px solid var(--bg); border-radius: 100px;
}
*::-webkit-scrollbar-thumb:hover { background: var(--gold); }
.trust { position: relative; }
.trust .vmarquee {
  position: absolute; left: 8px; top: 0; bottom: 0; width: 18px; overflow: hidden;
  font-family: var(--mono); font-size: 10px; letter-spacing: .3em;
  color: rgba(160,126,47,.5); writing-mode: vertical-rl; pointer-events: none;
}
.trust .vmarquee span { display: inline-block; animation: vscroll 22s linear infinite; }
@keyframes vscroll { to { transform: translateY(-50%); } }

/* C9. PROCESO → verde tinta (rompe la racha marrón) */
.proceso {
  background:
    linear-gradient(180deg, rgba(22,55,96,0.82) 0%, rgba(22,55,96,0.88) 100%),
    url("img/fondo-proceso-impecable.webp") center / cover no-repeat;
  background-attachment: fixed; /* parallax: la imagen queda anclada al viewport */
  border-block: 1px solid rgba(160,126,47,0.3);
}
/* iOS/móvil no soporta bien fixed con cover → fallback sin parallax */
@media (max-width: 820px), (hover: none) {
  .proceso { background-attachment: scroll; }
}
.proceso .step { border-top-color: rgba(244,238,230,0.12); }
.proceso .step .sn { color: var(--gold-2); }
.proceso .step::before { background: var(--gold); }
.proceso .section-head p, .proceso .step p { color: #BFD3CD; }

/* C10. Escalonar superficies oscuras + hairline de oro entre bloques */
#beneficios { background: var(--bg); }
.trust { background: var(--accent); }
.services, .trust, .proceso { box-shadow: inset 0 1px 0 rgba(160,126,47,0.18); }

/* C11. Menos vacío arriba de secciones */
.section { padding-block: clamp(60px, 7.5vw, 108px); }


/* ============================================================
   COVER TICKER — coberturas en marquee sobre el footer
   ============================================================ */
.cover-ticker {
  overflow: hidden; border-block: 1px solid rgba(160,126,47,0.3);
  background: var(--bg-1); padding: 22px 0;
}
.cover-ticker .ct-track {
  display: flex; align-items: center; gap: 34px; width: max-content;
  animation: scrollx 36s linear infinite;
}
.cover-ticker:hover .ct-track { animation-play-state: paused; }
.cover-ticker span {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(20px, 2.6vw, 32px); color: var(--text);
  white-space: nowrap;
}
.cover-ticker i { color: var(--gold); font-style: normal; font-size: 18px; }


/* ============================================================
   VIDEO CTA — sección con player (sustituye flyers)
   ============================================================ */
.video-sec { background: var(--bg-1); border-block: 1px solid var(--line); }
.video-frame {
  position: relative; margin-top: 48px;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 36px 90px -38px rgba(13,33,56,0.4), 0 0 0 1px rgba(160,126,47,0.15) inset;
}
.video-frame video { width: 100%; display: block; aspect-ratio: 16/9; background: var(--bg); }
.video-play {
  position: absolute; inset: 0; margin: auto;
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 70px -16px var(--accent-glow), 0 0 0 12px rgba(255,72,31,0.16);
  transition: transform .25s, background .2s;
}
.video-play:hover { transform: scale(1.1); background: var(--accent-2); }
.video-play svg { margin-left: 5px; }
.video-frame.playing .video-play { display: none; }


/* ============================================================
   HERO CTA bajo la foto derecha (adaptado a la columna)
   ============================================================ */
.hero-media { position: relative; }
.hero-cta-d { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.hero-cta-d .btn { width: 100%; justify-content: center; }
.hero-cta-m { display: none; }
@media (max-width: 880px) {
  .hero-cta-m { display: flex; }   /* en mobile la foto no existe: CTA vuelve al copy */
}
/* el badge ahora ancla a la foto (su wrapper), no a la columna */
.hero-media .hero-badge { bottom: -12px; }


/* ============================================================
   21ST.DEV scroll-portrait-wall — scrub en filas de servicios
   ============================================================ */
.svc.scrub { opacity: 1; transform: none; transition: background .3s, box-shadow .3s; will-change: transform, opacity; }
.svc.scrub .num { will-change: transform; transition: color .3s; }


/* ── Métricas bajo Ver servicios (columna derecha, compactas) ── */
.hero-meta-d { margin-top: 24px; gap: 14px; justify-content: space-between; flex-wrap: nowrap; }
.hero-meta-d .m { max-width: none; flex: 1; }
.hero-meta-d .m b { font-size: 24px; }
.hero-meta-d .m span { font-size: 9.5px; letter-spacing: .06em; }
.hero-meta-m { display: none; }
@media (max-width: 880px) { .hero-meta-m { display: flex; } }


/* — Proceso (bloque verde tinta): tipografía en marfil — */
.proceso .section-head h2, .proceso .step h3 { color: #F2EFE7; }
.proceso .section-head .eyebrow { color: var(--gold-2); }
.proceso .section-head h2::after { background: linear-gradient(90deg, var(--gold-2), rgba(189,154,69,0.3)); }

/* ── Contraste CTA banner: oro sobre navy (gana cascada a .cta-inner) ── */
.cta-banner .cta-inner h2 em { color: var(--gold-2); }
.cta-banner .cta-inner .eyebrow.accent { color: var(--gold-2); }
.cta-banner .cta-inner .eyebrow::before { background: var(--gold-2); }

/* ===== Tarjeta de cotización descargable en el chat ===== */
.cl-quotecard{align-self:flex-start;max-width:90%;margin:2px 0 6px;border:1px solid rgba(189,154,69,.4);border-radius:14px;background:linear-gradient(135deg,#122C49,#16263B);color:#fff;padding:13px 14px;box-shadow:0 8px 22px rgba(18,28,40,.28)}
.cl-quotecard .clq-hd{display:flex;align-items:center;gap:10px;margin-bottom:11px}
.cl-quotecard .clq-seal{width:34px;height:34px;border:1.5px solid #BD9A45;border-radius:9px;display:grid;place-items:center;color:#BD9A45;font-size:18px;flex:0 0 auto}
.cl-quotecard .clq-hd b{font-size:14px;letter-spacing:.02em}
.cl-quotecard .clq-hd small{display:block;color:#D9BE78;font-size:12px;margin-top:2px}
.cl-quotecard .clq-act{display:flex;gap:7px;flex-wrap:wrap}
.cl-quotecard .clq-b{flex:1 1 auto;text-align:center;text-decoration:none;font-weight:700;font-size:13px;padding:9px 8px;border-radius:9px;transition:.15s;white-space:nowrap}
.cl-quotecard .clq-pdf{background:#BD9A45;color:#1c1407}
.cl-quotecard .clq-doc{background:#2b5fa6;color:#fff}
.cl-quotecard .clq-xls{background:#1f7a4d;color:#fff}
.cl-quotecard .clq-b:hover{filter:brightness(1.1);transform:translateY(-1px)}
.cl-quotecard .clq-logo{height:26px;width:auto;flex:0 0 auto;display:block}

/* ===== CTA dual en sección Tecnología (chat cotiza) ===== */
.tech-cta{display:flex;align-items:center;gap:18px;flex-wrap:wrap;margin-top:6px}
.tech-list li strong{color:#fff;font-weight:700}
.tech-link{color:var(--gold,#BD9A45);font-weight:600;font-size:14px;text-decoration:none;border-bottom:1px solid transparent;transition:border-color .2s}
.tech-link:hover{border-bottom-color:var(--gold,#BD9A45)}

/* ===== Shader WebGL animado + glassy en la sección de precios (port 21st.dev) ===== */
#precios.precios-fx{background:#0E1C2E;overflow:hidden;isolation:isolate}
#precios.precios-fx::before{display:none}            /* el shader sustituye al dot-grid */
#precios.precios-fx .px-shader{position:absolute;inset:0;width:100%;height:100%;z-index:0;display:block;pointer-events:none}
#precios.precios-fx .section-head h2{color:#fff}
#precios.precios-fx .section-head p{color:rgba(255,255,255,.84)}
#precios.precios-fx .calc-panel,
#precios.precios-fx .plan:not(.reco){background:rgba(250,248,244,.95);border:1px solid rgba(255,255,255,.55);box-shadow:0 20px 55px rgba(7,16,28,.5);backdrop-filter:blur(3px)}
#precios.precios-fx .plan.reco{box-shadow:0 24px 64px rgba(7,16,28,.62)}
