/* =========================================================
   FLECHA CENTER — Sistema de diseño
   Comercial cálido + confianza corporativa
   ========================================================= */

:root {
  /* Azules corporativos */
  --ink: #0A2342;        /* texto principal, navy profundo */
  --navy: #0C2D52;
  --navy-700: #0A2440;
  --blue: #1A5FD0;       /* primario */
  --blue-600: #1450B5;
  --blue-tint: #EAF1FC;  /* secciones tinte azul */
  --blue-tint-2: #DBE8FB;

  /* Acento cálido coral */
  --accent: #FF6A3D;
  --accent-600: #F2551F;
  --accent-tint: #FFE9E0;

  /* Cálido secundario (estrellas, badges) */
  --amber: #FFB22E;

  /* Neutros cálidos */
  --cream: #FBF7F1;      /* fondo principal tibio */
  --cream-2: #F4EDE3;
  --white: #FFFFFF;
  --muted: #54657B;      /* texto secundario */
  --muted-2: #8595A6;
  --line: rgba(10,35,66,0.10);
  --line-strong: rgba(10,35,66,0.16);

  /* Tipografía */
  --font-display: "Satoshi", system-ui, sans-serif;
  --font-body: "Satoshi", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  /* Radios y sombras */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --shadow-sm: 0 2px 8px rgba(10,35,66,0.06);
  --shadow-md: 0 14px 40px -18px rgba(10,35,66,0.28);
  --shadow-lg: 0 40px 90px -36px rgba(10,35,66,0.40);
  --shadow-accent: 0 18px 40px -16px rgba(242,85,31,0.50);

  --maxw: 1180px;
  --nav-h: 80px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
  font-size: 17px;
  -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; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-weight: 700; }
h4 { font-weight: 700; line-height: 1.35; letter-spacing: -0.03em; }

p { margin: 0; text-wrap: pretty; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 110px 0; position: relative; }
.section--tight { padding: 80px 0; }
.section--cream { background: #F2F5FF; }
.section--white { background: var(--white); }
.section--blue {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-700) 100%);
  color: #EAF1FC;
}
/* Headings heredan color blanco en sección oscura */
.section--blue h1,
.section--blue h2,
.section--blue h3,
.section--blue h4 { color: #ffffff; }
.section--tint { background: var(--blue-tint); }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-600);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section--blue .eyebrow { color: var(--amber); }
.section--blue .eyebrow::before { background: var(--amber); }

.section-head { max-width: 760px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 {
  font-size: clamp(36px, 5.2vw, 60px);
  margin: 18px 0 0;
}
.section-head p {
  margin-top: 20px;
  font-size: 19px;
  color: var(--muted);
  max-width: 620px;
}
.section--blue .section-head p { color: #B9CBE6; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  border: 1.5px solid transparent;
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .2s, color .2s;
  white-space: nowrap;
  font-family: var(--font-body);
  letter-spacing: -0.01em;
}
.btn svg { width: 18px; height: 18px; }
.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn--accent:hover { background: var(--accent-600); transform: translateY(-2px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 16px 34px -16px rgba(26,95,208,.6); }
.btn--primary:hover { background: var(--blue-600); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #061a33; transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--on-dark { background: rgba(255,255,255,.10); color:#fff; border-color: rgba(255,255,255,.22); }
.btn--on-dark:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.btn--lg { padding: 18px 32px; font-size: 17px; }
.btn--block { width: 100%; }

/* ---------- Chips / badges ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.dot--green { background: #1FA971 !important; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

/* ---------- Image placeholders (a falta de fotos reales) ---------- */
.ph {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(26,95,208,.07) 0 12px, rgba(26,95,208,.02) 12px 24px),
    var(--blue-tint);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
}
.ph__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(255,255,255,.85);
  padding: 7px 12px;
  border-radius: 100px;
  border: 1px solid var(--line);
  backdrop-filter: blur(4px);
}
.ph--warm {
  background:
    repeating-linear-gradient(135deg, rgba(242,85,31,.08) 0 12px, rgba(242,85,31,.02) 12px 24px),
    var(--accent-tint);
  color: var(--accent-600);
}
.ph--dark {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 12px, rgba(255,255,255,.01) 12px 24px),
    #143258;
  color: #cfe0fb;
  border-color: rgba(255,255,255,.12);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ===================== NAV ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251,247,241,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.nav.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px -22px rgba(10,35,66,.5);
}
.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; align-self: center; }
.brand__logo { height: 52px; width: auto; display: block; object-fit: contain; }
/* brand__mark kept for wizard modal only */
.brand__mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  flex: none;
}
.brand__mark svg { width: 21px; height: 21px; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav__links a {
  padding: 9px 14px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: background .2s, color .2s;
}
.nav__links a:hover { background: rgba(10,35,66,.06); }
.nav__right { margin-left: auto; display: flex; align-items: center; gap: 12px; }

.lang {
  display: inline-flex;
  background: rgba(10,35,66,.07);
  border-radius: 100px;
  padding: 3px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}
.lang button {
  border: none; background: transparent; color: var(--muted);
  padding: 6px 11px; border-radius: 100px; transition: all .2s;
  letter-spacing: .04em;
}
.lang button.active { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }

.nav__toggle { display: none; background: none; border: none; padding: 8px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; transition: .3s; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0; z-index: 55;
  background: var(--white);
  padding: 28px 24px;
  display: none; flex-direction: column; gap: 6px;
  transform: translateY(-8px); opacity: 0;
  transition: opacity .25s, transform .25s;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; opacity: 1; transform: none; }
.mobile-menu a { padding: 16px 8px; font-size: 21px; font-family: var(--font-display); font-weight: 700; border-bottom: 1px solid var(--line); }

/* ===================== Announce bar ===================== */
.announce {
  background: linear-gradient(90deg, #0C2D52 0%, #1A4880 50%, #0C2D52 100%);
  color: #C4D8F0;
  font-size: 13.5px;
  text-align: center;
  padding: 10px 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.announce strong { color: #ffffff; }
.announce .flag { filter: saturate(1.2); }

/* ===================== HERO ===================== */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero__blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .5;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* --- Hero full-bleed background variant --- */
.hero--fullbg {
  min-height: min(90vh, 860px);
  /* Fondo de respaldo: si la imagen no carga, el hero se ve intencional
     (navy sólido) en lugar de blanco con texto ilegible. */
  background-color: var(--navy);
  background-size: cover;
  background-position: center 35%;
  padding: calc(var(--nav-h) + 40px) 0 40px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.hero--fullbg .hero__bg { display: none; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(
    108deg,
    rgba(6,18,44,0.94) 0%,
    rgba(8,25,58,0.85) 30%,
    rgba(10,32,66,0.60) 60%,
    rgba(10,32,66,0.18) 100%
  );
}
.hero--fullbg .container { position: relative; z-index: 1; }
.hero--fullbg .hero__copy { max-width: 660px; }

/* Glass chip & avatars on dark */
.chip--glass {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
}
.av--glass {
  background: rgba(255,255,255,0.14) !important;
  border-color: rgba(255,255,255,0.35) !important;
  color: #fff !important;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(44px, 7.2vw, 84px);
  letter-spacing: -0.04em;
}
.hero h1 .hl { color: var(--accent); position: relative; white-space: nowrap; }
.hero__sub {
  font-size: 20px; color: var(--muted); margin-top: 24px; max-width: 520px;
}
.hero__cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__trust { display: flex; align-items: center; gap: 22px; margin-top: 38px; flex-wrap: wrap; }
.hero__avatars { display: flex; }
.hero__avatars .av {
  width: 42px; height: 42px; border-radius: 50%; border: 2.5px solid var(--white);
  margin-left: -12px; background: var(--blue-tint-2);
  display: grid; place-items: center; font-weight: 700; color: var(--blue-600); font-size: 14px;
  box-shadow: var(--shadow-sm);
}
.hero__avatars .av:first-child { margin-left: 0; }
.hero__trust-txt { font-size: 14px; color: var(--muted); line-height: 1.4; }
.hero__trust-txt b { color: var(--ink); }
.stars { color: var(--amber); letter-spacing: 2px; font-size: 14px; }

/* hero visual */
.hero__visual { position: relative; }
.hero__photo {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 15px 17px;
  border: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
}
.float-card__icon {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  display: grid; place-items: center; color: #fff;
}
.float-card__icon svg { width: 19px; height: 19px; }
.float-card .ttl { font-size: 12px; color: var(--muted); font-family: var(--font-mono); letter-spacing: .04em; }
.float-card .val { font-size: 16px; font-weight: 700; font-family: var(--font-display); }
.float-card--tl { top: 26px; left: -28px; }
.float-card--br { bottom: 36px; right: -26px; }
.float-card--b { bottom: -22px; left: 30px; }

@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-9px);} }
.floaty { animation: floaty 5s ease-in-out infinite; }
.floaty.d2 { animation-delay: 1.4s; }

/* ===================== Logo / trust strip ===================== */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trustbar__inner { display: flex; align-items: center; gap: 40px; padding-top: 26px; padding-bottom: 26px; flex-wrap: wrap; justify-content: space-between; }
.trustbar__lead { font-size: 14px; color: var(--muted); font-weight: 600; max-width: 220px; }
.trustbar__logos { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; flex: 1; justify-content: space-around; }
.logo-ph {
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  color: var(--muted-2); letter-spacing: -.02em; opacity: .8;
  display: flex; align-items: center; gap: 8px;
}
.logo-ph svg { width: 22px; height: 22px; opacity: .6; }
.client-logo { height: 60px; max-width: 160px; width: auto; object-fit: contain; opacity: .75; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.client-logo:hover { opacity: 1; filter: grayscale(0); }

/* ===================== Servicios ===================== */
.services-grid {
  display: grid;
  grid-template-columns: 1.28fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 18px;
  margin-top: 56px;
}
.svc {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
  display: flex; flex-direction: column;
  min-height: 260px;
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }

/* First card (LLC) — anchor card, spans full left column */
.services-grid .svc:first-child {
  grid-row: 1 / 4;
  background: linear-gradient(160deg, var(--navy) 0%, #0a1e3d 100%);
  border-color: transparent;
  min-height: 460px;
}
.services-grid .svc:first-child:hover { border-color: transparent; box-shadow: var(--shadow-lg); }
.services-grid .svc:first-child h3 { color: #ffffff; font-size: 28px; }
.services-grid .svc:first-child p { color: rgba(176,201,234,0.9); }
.services-grid .svc:first-child .svc__num { color: rgba(255,255,255,0.18); font-size: 15px; }
.services-grid .svc:first-child .svc__link { color: var(--accent); font-size: 16px; margin-top: auto; }
.services-grid .svc:first-child .svc__glow { opacity: .2; }
.svc__num {
  position: absolute; top: 26px; right: 30px;
  font-family: var(--font-mono); font-size: 13px; color: var(--muted-2); letter-spacing: .1em;
}
.svc__icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: grid; place-items: center; color: #fff; margin-bottom: 18px;
  box-shadow: none; opacity: 0.92;
}
.svc__icon svg { width: 17px; height: 17px; }
.svc h3 { font-size: 25px; margin-bottom: 10px; }
.svc p { color: var(--muted); font-size: 16px; flex: 1; }
.svc__link {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--blue); font-size: 15px;
  transition: gap .2s;
}
.svc:hover .svc__link { gap: 13px; }
.svc__glow {
  position: absolute; bottom: -50px; right: -40px; width: 160px; height: 160px;
  border-radius: 50%; filter: blur(50px); opacity: 0; transition: opacity .4s;
}
.svc:hover .svc__glow { opacity: .35; }

/* gradients util */
.g-blue { background: linear-gradient(135deg, #2D7BF0 0%, #1450B5 100%); }
.g-coral { background: linear-gradient(135deg, #FF8A5B 0%, #F2551F 100%); }
.g-navy { background: linear-gradient(135deg, #20406E 0%, #0C2D52 100%); }
.g-amber { background: linear-gradient(135deg, #FFC247 0%, #F59B16 100%); }

/* ===================== Por qué Flecha ===================== */

/* Bento: first card (navy) spans 2 rows left, 2 cards stack on right */
.why-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 48px;
}
.why-card {
  padding: 28px 24px; border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--white); transition: border-color .25s, box-shadow .25s;
}
.why-card:hover { border-color: var(--blue-tint-2); box-shadow: var(--shadow-sm); }
.why-card .why-item__ic { margin-bottom: 18px; }
.why-card h4 { font-size: 17.5px; margin-bottom: 8px; }
.why-card p { font-size: 15px; color: var(--muted); line-height: 1.56; }

/* First why-card: navy anchor, spans both rows */
.why-row .why-card:first-child {
  grid-row: 1 / 3;
  background: linear-gradient(160deg, var(--navy) 0%, #0a1e3d 100%);
  border-color: transparent;
  min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.why-row .why-card:first-child:hover { border-color: transparent; box-shadow: none; }
.why-row .why-card:first-child h4 { color: #fff; font-size: 20px; }
.why-row .why-card:first-child p { color: rgba(176,201,234,0.88); }

/* Legacy why-item (sub-pages) */
.why-item {
  display: flex; gap: 16px; padding: 20px; border-radius: var(--r-md);
  background: var(--white); border: 1px solid var(--line);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.why-item:hover { border-color: var(--blue-tint-2); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.why-item__ic {
  width: 32px; height: 32px; border-radius: 8px; flex: none;
  display: grid; place-items: center; color: #fff; opacity: 0.9;
}
.why-item__ic svg { width: 15px; height: 15px; }
.why-item h4 { font-size: 18.5px; margin-bottom: 4px; }
.why-item p { font-size: 15px; color: var(--muted); }

/* ===================== Comparativa unificada ===================== */
.feat-cmp { margin-top: 44px; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.feat-cmp__hd {
  display: grid; grid-template-columns: 1fr 130px 130px;
  background: var(--navy); padding: 14px 24px; align-items: center;
}
.feat-cmp__hd-brand {
  font-size: 12px; font-weight: 700;
  letter-spacing: .04em;
  color: var(--accent); text-align: center;
}
.feat-cmp__hd-them {
  font-size: 12px; font-weight: 600;
  letter-spacing: .03em;
  color: rgba(255,255,255,0.38); text-align: center;
}
.feat-cmp__r {
  display: grid; grid-template-columns: 1fr 130px 130px;
  padding: 13px 24px; border-top: 1px solid var(--line); align-items: center;
}
.feat-cmp__r:nth-child(even) { background: #FAFBFF; }
.feat-cmp__f { font-size: 15px; color: var(--ink); }
.feat-cmp__v { display: flex; justify-content: center; align-items: center; }
.feat-cmp__v svg { width: 18px; height: 18px; }
.feat-cmp__v--yes svg { color: var(--accent); }
.feat-cmp__v--neutral svg { color: var(--muted-2); }
.feat-cmp__v--no svg { color: var(--muted-2); opacity: 0.32; }

/* Keep old compare/vs hidden (legacy) */
.compare { display: none; }

/* ===================== Cómo funciona ===================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; position: relative; }
.step {
  position: relative; padding-top: 8px; text-align: center;
}
.step__num {
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); color: var(--blue);
  border: 1.5px solid var(--blue-tint-2);
  display: grid; place-items: center; margin: 0 auto 22px;
  position: relative; z-index: 2;
}
.section--blue .step__num { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.2); }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }
.section--blue .step h3 { color: #fff; }
.section--blue .step p { color: #AFC2E0; }
.step__line {
  position: absolute; top: 26px; left: calc(50% + 26px); right: calc(-50% + 6px); height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-tint-2) 0 6px, transparent 6px 12px);
  z-index: 1;
}
.section--blue .step__line { background: repeating-linear-gradient(90deg, rgba(255,255,255,.25) 0 6px, transparent 6px 12px); }
.step:last-child .step__line { display: none; }

/* ===================== Precios ===================== */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; align-items: stretch; }
.plan {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px 30px; display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.plan--featured {
  background: var(--white);
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 20px 60px -20px rgba(255,106,61,0.18);
  transform: none;
}
.plan--featured:hover { transform: translateY(-5px); box-shadow: 0 24px 64px -20px rgba(255,106,61,0.24); }
.plan__tag { font-family: var(--font-display); font-size: 11px; letter-spacing: .10em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.plan--featured .plan__tag { color: var(--accent-600); }
.plan__name { font-size: 22px; margin: 12px 0 4px; }
.plan--featured .plan__name { color: var(--ink); }
.plan__desc { font-size: 14px; color: var(--muted); min-height: 40px; }
.plan--featured .plan__desc { color: var(--muted); }
.plan__price { display: flex; align-items: baseline; gap: 4px; margin: 20px 0 4px; }
.plan__price .cur { font-size: 17px; font-weight: 600; color: var(--muted); }
.plan--featured .plan__price .cur { color: var(--muted); }
.plan__price .amt { font-family: var(--font-display); font-weight: 900; font-size: 40px; letter-spacing: -.03em; color: var(--ink); }
.plan__price .per { font-size: 13px; color: var(--muted); }
.plan--featured .plan__price .per { color: var(--muted); }
.plan__note { font-size: 12.5px; color: var(--muted-2); margin-bottom: 22px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan li { display: flex; gap: 10px; font-size: 14.5px; align-items: flex-start; color: var(--muted); }
.plan li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--blue-tint-2); flex: none; margin-top: 8px; border: 1.5px solid var(--blue); }
.plan--featured li::before { background: var(--accent-tint); border-color: var(--accent); }
.plan li svg { display: none; }
.plan__ribbon {
  align-self: flex-start; background: var(--accent); color: #fff;
  font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: .08em;
  padding: 6px 13px; border-radius: 100px; margin-bottom: 16px; text-transform: uppercase;
}

/* ===================== Confianza / Dallas ===================== */
.trust-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.trust-map { position: relative; min-height: 480px; background: #0C2D52; }
.map-canvas { position: absolute; inset: 0; }
.map-pin {
  position: absolute; top: 44%; left: 50%; transform: translate(-50%,-50%);
  z-index: 3; text-align: center;
}
.map-pin__dot {
  width: 22px; height: 22px; border-radius: 50%; background: var(--accent);
  margin: 0 auto; box-shadow: 0 0 0 8px rgba(255,106,61,.25);
  position: relative;
}
.map-pin__pulse {
  position: absolute; inset: 0; border-radius: 50%; background: var(--accent);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0%{ transform: scale(1); opacity:.7;} 100%{ transform: scale(4.2); opacity:0;} }
.map-pin__label {
  margin-top: 14px; background: var(--white); color: var(--ink);
  font-weight: 700; font-size: 13px; padding: 8px 14px; border-radius: 100px;
  box-shadow: var(--shadow-md); white-space: nowrap;
}
.trust-info { background: var(--white); padding: 50px 46px; display: flex; flex-direction: column; }
.trust-info h2, .trust-info h3 { font-size: 30px; margin-bottom: 14px; }
.addr-card {
  display: flex; gap: 14px; padding: 18px; border-radius: var(--r-md);
  background: var(--cream); border: 1px solid var(--line); margin-top: 22px;
}
.addr-card__ic { width: 36px; height: 36px; border-radius: 9px; flex: none; display: grid; place-items: center; color: #fff; }
.addr-card__ic svg { width: 18px; height: 18px; }
.trust-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.trust-stat { padding: 18px; border-radius: var(--r-md); background: var(--blue-tint); }
.trust-stat .n { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--blue-600); letter-spacing: -.02em; }
.trust-stat .l { font-size: 13px; color: var(--muted); }

/* ===================== Stats band ===================== */
.statband { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2px; justify-content: center; }
.statband .stat {
  text-align: center; padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background .3s;
}
.statband .stat:last-child { border-right: none; }
.statband .stat:hover { background: rgba(255,255,255,0.04); }
.statband .num {
  font-family: var(--font-display); font-weight: 900; font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -.03em; color: #fff; line-height: 1;
}
.statband .num .suf { color: var(--accent); font-size: 0.75em; vertical-align: super; }
.statband .lbl { margin-top: 10px; color: #AFC2E0; font-size: 13px; letter-spacing: 0.02em; text-transform: uppercase; font-family: var(--font-mono); }

/* ===================== Testimonios ===================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.testi {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.testi:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi__stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 16px; font-size: 15px; }
.testi__quote { font-size: 16.5px; line-height: 1.6; color: var(--ink); flex: 1; }
.testi__who { display: flex; align-items: center; gap: 13px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.testi__av { width: 48px; height: 48px; border-radius: 50%; background: var(--blue-tint-2); display: grid; place-items: center; font-weight: 700; color: var(--blue-600); flex: none; }
.testi__name { font-weight: 700; font-size: 15.5px; }
.testi__role { font-size: 13px; color: var(--muted); }
.testi__flag { margin-left: auto; font-size: 20px; }

/* ===================== FAQ ===================== */
.faq-wrap { max-width: 100%; margin: 56px auto 0; }
.faq {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 26px 4px; display: flex; align-items: center; gap: 20px;
  font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink);
}
.faq__q .ic {
  margin-left: auto; flex: none; width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--line-strong); display: grid; place-items: center;
  transition: .3s; color: var(--blue);
}
.faq.open .faq__q .ic { background: var(--blue); color: #fff; border-color: var(--blue); transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq__a p { padding: 0 4px 26px; color: var(--muted); font-size: 16px; max-width: 90%; }

/* ===================== CTA final ===================== */
.cta-final {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 70%);
  border-radius: var(--r-xl);
  padding: 70px 60px; text-align: center; color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-final h2 { color: #fff; font-size: clamp(32px, 4.6vw, 50px); }
.cta-final p { color: #C7D7F0; font-size: 19px; margin: 18px auto 34px; max-width: 540px; }
.cta-final .hero__cta { justify-content: center; }
.cta-final__blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .4; }

/* ===================== Footer ===================== */
.footer { background: #F0F3F8; color: var(--muted); padding: 70px 0 34px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: var(--ink); }
.footer__about { margin-top: 18px; font-size: 14.5px; color: var(--muted); max-width: 280px; line-height: 1.65; }
.footer h3 { color: var(--ink); font-family: var(--font-display); font-size: 15px; font-weight: 600; margin-bottom: 18px; letter-spacing: .01em; line-height: 1.6; }
.footer__col a { display: block; padding: 7px 0; font-size: 14.5px; color: var(--muted); transition: color .2s; }
.footer__col a:hover { color: var(--blue); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line-strong); font-size: 13.5px; color: var(--muted-2); flex-wrap: wrap; gap: 14px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(10,35,66,0.07); display: grid; place-items: center; transition: background .2s; }
.footer__social a:hover { background: var(--accent); }
.footer__social a svg { width: 17px; height: 17px; filter: brightness(0) opacity(0.55); }
.footer__social a:hover svg { filter: brightness(0) invert(1); }

/* ===================== WhatsApp float ===================== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 70;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(37,211,102,.6);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }

/* ===================== Wizard modal ===================== */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100; background: rgba(8,22,42,.55);
  backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; transition: opacity .3s;
}
.modal-backdrop.open { display: flex; opacity: 1; }
.wizard {
  background: var(--cream); border-radius: var(--r-xl); width: 100%; max-width: 560px;
  box-shadow: var(--shadow-lg); overflow: hidden; transform: translateY(14px) scale(.98);
  transition: transform .35s cubic-bezier(.2,.8,.2,1); max-height: 92vh; display: flex; flex-direction: column;
}
.modal-backdrop.open .wizard { transform: none; }
.wizard__head { padding: 24px 28px; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); background: var(--white); }
.wizard__head .brand__mark { width: 34px; height: 34px; }
.wizard__close { margin-left: auto; background: rgba(10,35,66,.06); border: none; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; color: var(--ink); transition: background .2s; }
.wizard__close:hover { background: rgba(10,35,66,.12); }
.wizard__progress { height: 4px; background: var(--line); }
.wizard__bar { height: 100%; background: var(--accent); width: 25%; transition: width .4s cubic-bezier(.2,.8,.2,1); }
.wizard__body { padding: 32px 28px; overflow-y: auto; }
.wizard__step-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-600); font-weight: 700; }
.wizard__body h3 { font-size: 26px; margin: 10px 0 6px; }
.wizard__body > p.sub { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.wstep { display: none; }
.wstep.active { display: block; animation: fadeUp .4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px);} to { opacity:1; transform:none;} }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--r-sm); border: 1.5px solid var(--line-strong);
  font-family: inherit; font-size: 15px; background: var(--white); color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-tint); }
.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.opt {
  border: 1.5px solid var(--line-strong); border-radius: var(--r-md); padding: 18px 16px;
  cursor: pointer; transition: border-color .2s, background .2s, transform .15s; background: var(--white);
}
.opt:hover { border-color: var(--blue); transform: translateY(-2px); }
.opt.sel { border-color: var(--blue); background: var(--blue-tint); box-shadow: 0 0 0 1px var(--blue); }
.opt__ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; color: #fff; margin-bottom: 12px; }
.opt__ic svg { width: 18px; height: 18px; }
.opt h4 { font-size: 16px; margin-bottom: 3px; }
.opt p { font-size: 13px; color: var(--muted); }
.wizard__foot { padding: 20px 28px; border-top: 1px solid var(--line); display: flex; gap: 12px; background: var(--white); }
.wizard__foot .btn { flex: 1; }
.wizard__summary { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px; margin-bottom: 20px; }
.wizard__summary .row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.wizard__summary .row:last-child { border-bottom: none; }
.wizard__summary .row .k { color: var(--muted); }
.wizard__summary .row .v { font-weight: 700; }
.success-check {
  width: 80px; height: 80px; border-radius: 50%; background: #E7F7EF; display: grid; place-items: center;
  margin: 0 auto 20px; color: #1FA971;
}
.success-check svg { width: 42px; height: 42px; }

/* ===================== Page hero (servicios) ===================== */
.page-hero { padding: 70px 0 60px; position: relative; overflow: hidden; }
.page-hero--slim { padding: 48px 0 0; }
.page-hero .breadcrumb { font-family: var(--font-mono); font-size: 13px; color: var(--muted); margin-bottom: 20px; letter-spacing: .04em; }
.page-hero .breadcrumb a:hover { color: var(--blue); }
.page-hero h1 { font-size: clamp(40px, 6vw, 66px); max-width: 720px; }
.page-hero .lead { font-size: 20px; color: var(--muted); margin-top: 22px; max-width: 560px; }
.page-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }

/* feat-split — text + stacked cards (no image, Globalfy-style) */
.feat-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.feat-split__text h2 { font-size: clamp(30px, 4.2vw, 46px); }
.feat-split__text p { color: var(--muted); margin-top: 18px; font-size: 18px; line-height: 1.65; }
.feat-split__text .btn { margin-top: 34px; }
.feat-split__cards { display: flex; flex-direction: column; gap: 12px; }
.feat-card-sm {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feat-card-sm__ic {
  width: 36px; height: 36px; border-radius: 10px;
  flex: none; display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 14px;
}
.feat-card-sm__ic svg { width: 17px; height: 17px; }
.feat-card-sm h3 { font-size: 16px; font-weight: 600; margin: 0; line-height: 1.3; }
.feat-card-sm p { font-size: 14px; color: var(--muted); margin-top: 4px; line-height: 1.5; }
.feature-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.feature-list .fl { display: flex; gap: 14px; }
.feature-list .fl__ic { width: 30px; height: 30px; border-radius: 9px; flex: none; display: grid; place-items: center; color: #fff; margin-top: 2px; font-weight: 700; font-size: 14px; }
.feature-list .fl h4 { font-size: 17px; margin-bottom: 3px; }
.feature-list .fl p { font-size: 14.5px; color: var(--muted); }

/* Services grid — 2 columnas iguales para subpáginas */
.services-grid--even {
  grid-template-columns: repeat(2, 1fr) !important;
  grid-template-rows: auto auto !important;
}

/* Services grid — 3 columnas iguales (tarjetas de contacto) */
.services-grid--3 { grid-template-columns: repeat(3, 1fr) !important; }

/* ===================== Responsive ===================== */
@media (max-width: 980px) {
  .hero__grid, .trust-split, .page-hero__grid { grid-template-columns: 1fr; }
  .feat-split { grid-template-columns: 1fr; gap: 36px; }
  .why-row { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .why-row .why-card:first-child { grid-row: auto; min-height: 220px; }
  .why-row .why-card:last-child { grid-column: 1 / -1; }
  .feat-cmp__hd, .feat-cmp__r { grid-template-columns: 1fr 100px 100px; padding-left: 18px; padding-right: 18px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid .svc:first-child { grid-row: auto; min-height: 260px; }
  .pricing, .testi-grid, .statband { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .step__line { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-5px); }
  .hero__visual { max-width: 460px; margin: 10px auto 0; }
  .trust-map { min-height: 340px; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__right .btn { display: none; }
}
@media (max-width: 620px) {
  .section { padding: 70px 0; }
  body { font-size: 16px; }
  .brand__logo { height: 48px; width: 48px; }
  .container { padding: 0 20px; }
  .trustbar__inner { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
  .trustbar__lead { max-width: 100%; }
  .trustbar__logos { justify-content: center; gap: 20px 28px; }
  .client-logo { height: 44px; }
  .announce__extra { display: none; }
  .services-grid, .pricing, .testi-grid, .statband, .steps, .why-row { grid-template-columns: 1fr; }
  .services-grid--even,
  .services-grid--3 { grid-template-columns: 1fr !important; }
  .feat-split { gap: 28px; }
  .why-row .why-card:last-child { grid-column: auto; }
  .why-row .why-card:first-child { grid-row: auto; min-height: 240px; }
  .feat-cmp__hd, .feat-cmp__r { grid-template-columns: 1fr 80px 80px; padding: 12px 14px; }
  .feat-cmp__f { font-size: 14px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .cta-final { padding: 50px 28px; }
  .trust-info { padding: 36px 26px; }
  .hero__cta .btn, .cta-final .btn { flex: 1; }
  .float-card--tl { left: -6px; }
  .float-card--br { right: -6px; }
  .compare__row { grid-template-columns: 1.3fr .8fr .8fr; }
  .compare__row > div { padding: 13px 12px; font-size: 13px; }
  .opt-grid { grid-template-columns: 1fr; }
  .trust-stats { grid-template-columns: 1fr 1fr; }
}

/* ===================== Promo popup ===================== */
.promo-pop {
  position: fixed; bottom: 28px; left: 28px; z-index: 90;
  background: rgba(8, 22, 52, 0.78);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--r-lg);
  padding: 28px 26px 22px;
  width: 320px;
  box-shadow:
    0 36px 90px -20px rgba(8,22,52,0.70),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 80px -20px rgba(255,106,61,0.28);
  overflow: hidden;
  transform: translateY(28px) scale(0.94); opacity: 0; pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.15,0.85,0.25,1.06), opacity 0.4s ease;
}
/* franja accent top */
.promo-pop::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, #ff9a6c 55%, var(--blue) 100%);
}
.promo-pop.visible { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.promo-pop__close {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,0.10); border: none; color: rgba(255,255,255,0.65);
  width: 26px; height: 26px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; transition: background .2s;
}
.promo-pop__close:hover { background: rgba(255,255,255,0.2); color: #fff; }
.promo-pop__badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,106,61,0.18); border: 1px solid rgba(255,106,61,0.35);
  color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  padding: 4px 10px; border-radius: 100px; text-transform: uppercase; margin-bottom: 14px;
}
.promo-pop__title {
  font-family: var(--font-display); font-weight: 900; font-size: 22px;
  line-height: 1.15; margin: 0 0 8px; color: #fff;
}
.promo-pop__title span { color: var(--accent); }
.promo-pop__visual {
  position: relative; width: 52px; height: 52px; margin: 0 0 14px;
}
.promo-pop__flag { font-size: 44px; line-height: 1; }
.promo-pop__body { font-size: 14px; color: rgba(195,218,248,0.82); margin: 0 0 18px; line-height: 1.6; }
.promo-pop__cta { font-size: 14px; letter-spacing: 0.04em; padding: 14px 16px; font-weight: 700; }
.promo-pop__time { font-size: 11.5px; color: rgba(195,218,248,0.45); margin: 10px 0 0; font-family: var(--font-mono); }

/* ===================== Formularios: estados y anti-spam ===================== */

/* Honeypot: invisible para personas, visible para bots.
   Patrón "visually hidden" — no altera el layout ni provoca scroll. */
.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

/* Mensaje de error de validación / envío */
.form-error {
  display: none;
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: #FDECEC;
  border: 1px solid #F5C2C2;
  color: #A32020;
  font-size: 14px;
  line-height: 1.5;
}
.form-error.visible { display: block; }
.section--blue .form-error,
.summary-card .form-error {
  background: rgba(255, 90, 90, 0.14);
  border-color: rgba(255, 120, 120, 0.4);
  color: #FFD5D5;
}

/* Botón en estado "enviando" */
button[disabled], .btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* ===================== Cotizador: formulario de solicitud ===================== */
.quote-form { margin-top: 16px; }
.quote-form__lead {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 14px;
  line-height: 1.55;
}
.quote-form .field { margin-bottom: 10px; }
.quote-form input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
}
.quote-form input::placeholder { color: rgba(255, 255, 255, 0.45); }
.quote-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
}
.quote-ok { text-align: center; padding: 18px 0 4px; }
.quote-ok h4 { color: #fff; }
.quote-ok p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  margin: 8px 0 16px;
  line-height: 1.55;
}

/* Campo con error de validación */
.campo-error {
  border-color: #E05252 !important;
  box-shadow: 0 0 0 3px rgba(224, 82, 82, 0.14);
}

/* Encabezado presente para la jerarquía semántica, oculto visualmente */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
