/* ============================================================
   SR. CAMBIO — Modern Fintech Redesign
   Brand palette locked: blue #2156f0 · lime #9ae238 · orange #f27c16
   Fonts: Nunito (display) + Montserrat (body)
   ============================================================ */

:root {
  /* Brand */
  --blue:       #2156f0;
  --blue-2:     #0697f2;
  --blue-deep:  #0b1742;
  --blue-ink:   #0a1f55;
  --blue-soft:  #eaf0ff;
  --lime:       #9ae238;
  --lime-deep:  #48a12d;
  --lime-soft:  #eaf9d3;
  --orange:     #f27c16;
  --orange-soft:#ffe6ce;

  /* Neutrals */
  --bg:         #f6f8ff;
  --surface:    #ffffff;
  --ink:        #0a1f55;
  --ink-2:      #475569;
  --ink-3:      #94a3b8;
  --hair:       #e5ecff;
  --rule:       #dde6fb;

  /* Typography */
  --font-display: 'Nunito', system-ui, sans-serif;
  --font-body:    'Montserrat', system-ui, sans-serif;

  /* Radius + Shadow */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --shadow-sm: 0 4px 16px rgba(11, 23, 66, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 23, 66, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 23, 66, 0.12);
  --shadow-glow-blue: 0 24px 60px rgba(33, 86, 240, 0.25);
  --shadow-glow-lime: 0 16px 40px rgba(154, 226, 56, 0.35);

  /* Layout */
  --max:    1200px;
  --gutter: clamp(20px, 4vw, 40px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; transition: color .2s ease; }
::selection { background: var(--lime); color: var(--blue-deep); }

/* Scroll reveal — solo si JS está activo (se agrega clase) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
.reveal-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-in { opacity: 1; transform: none; transition: none; }
}

strong { font-family: var(--font-display); font-weight: 800; }

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 96px 0; position: relative; }
.section--soft { background: var(--bg); }
.section--white { background: var(--surface); }

@media (max-width: 720px) { .section { padding: 72px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--lime-soft);
  color: var(--lime-deep);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow--blue { background: var(--blue-soft); color: var(--blue); }
.eyebrow--orange { background: var(--orange-soft); color: var(--orange); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--blue-deep);
  margin: 0 0 14px;
}
.section-head h2 .grad {
  background: linear-gradient(120deg, var(--blue), var(--blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head h2 .mark {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.section-head h2 .mark::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6%;
  height: 24%;
  background: var(--lime);
  opacity: 0.7;
  z-index: -1;
  border-radius: 6px;
}
.section-head p {
  color: var(--ink-2);
  font-size: 1.08rem;
  margin: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: 0;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all .25s cubic-bezier(.2,.7,.3,1);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  box-shadow: 0 8px 24px rgba(33, 86, 240, 0.32);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(33, 86, 240, 0.42); }

.btn--lime {
  background: linear-gradient(135deg, var(--lime), var(--lime-deep));
  color: #fff;
  box-shadow: 0 8px 22px rgba(72, 161, 45, 0.3);
}
.btn--lime:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(72, 161, 45, 0.42); }

.btn--orange {
  background: linear-gradient(135deg, #ffa64d, var(--orange));
  color: #fff;
  box-shadow: 0 8px 22px rgba(242, 124, 22, 0.32);
}
.btn--orange:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(242, 124, 22, 0.45); }

.btn--ghost {
  background: transparent;
  color: var(--blue-deep);
  border: 1.5px solid var(--blue-deep);
}
.btn--ghost:hover { background: var(--blue-deep); color: #fff; }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--ghost-light:hover { background: #fff; color: var(--blue-deep); border-color: #fff; }

.btn--big { padding: 18px 32px; font-size: 15.5px; }

.btn--full { width: 100%; }

.btn--arrow::after {
  content: "→";
  margin-left: 4px;
  font-family: var(--font-display);
  transition: transform .25s;
}
.btn--arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   MASTHEAD / NAV
   ============================================================ */
.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--hair);
}

/* Audience strip — Personas / Empresas */
.audience-strip {
  background: var(--blue-deep);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.audience-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  gap: 0;
}
.audience-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid transparent;
  transition: all .2s ease;
  letter-spacing: 0.02em;
}
.audience-tab i { font-size: 11px; opacity: 0.8; }
.audience-tab:hover { color: #fff; }
.audience-tab.active {
  color: var(--lime);
  border-bottom-color: var(--lime);
}
.audience-tab.active i { opacity: 1; }

@media (max-width: 720px) {
  .audience-tab { padding: 9px 14px; font-size: 12px; }
}

.masthead__main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 44px; width: auto; }

.nav { display: flex; align-items: center; gap: 8px; }

.nav__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--blue-deep);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  transition: all .25s;
  position: relative;
}
.nav__link:hover { background: var(--blue-soft); color: var(--blue); }
.nav__link.active { background: var(--blue-soft); color: var(--blue); font-weight: 700; }

.cta-cluster { display: flex; gap: 10px; }

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: var(--blue-soft);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}
.menu-toggle .bar { width: 22px; height: 2.5px; background: var(--blue-deep); border-radius: 2px; transition: .3s; }
.menu-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 960px) {
  .menu-toggle { display: flex; position: relative; z-index: 1001; }
  .brand { position: relative; z-index: 1001; }
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    background:
      radial-gradient(circle at top right, rgba(154, 226, 56, 0.25), transparent 50%),
      linear-gradient(135deg, var(--blue-deep), var(--blue));
    padding: 96px var(--gutter) 32px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .4s cubic-bezier(.2,.7,.3,1), opacity .3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); opacity: 1; pointer-events: auto; }
  .nav__link {
    padding: 18px 22px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--r-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav__link:hover, .nav__link.active {
    background: rgba(255, 255, 255, 0.16);
    color: var(--lime);
  }
  .nav__cta-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }
  .nav__cta-mobile .btn { width: 100%; padding: 16px 22px; font-size: 15px; }
  .nav__cta-mobile .btn--ghost {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
  }
  .nav__cta-mobile .btn--ghost:hover {
    background: #fff;
    color: var(--blue-deep);
    border-color: #fff;
  }
  .cta-cluster { display: none; }

  body.menu-open { overflow: hidden; }
  body.menu-open .masthead { background: transparent; border-color: transparent; }
  body.menu-open .brand__logo { filter: brightness(0) invert(1); }
  body.menu-open .menu-toggle { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); }
  body.menu-open .menu-toggle .bar { background: #fff; }
}
@media (min-width: 961px) { .nav__cta-mobile { display: none; } }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9985;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px rgba(11, 23, 66, 0.18);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 18px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .45s cubic-bezier(.2,.7,.3,1), opacity .3s ease;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }

.cookie-banner__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffa64d, var(--orange));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 18px rgba(242, 124, 22, 0.3);
}
.cookie-banner__text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--blue-deep);
  margin-bottom: 2px;
}
.cookie-banner__text p {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.cookie-banner__text a {
  color: var(--blue);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}
.cookie-banner__actions {
  display: flex;
  gap: 8px;
}
.cookie-banner__actions .btn { padding: 10px 16px; font-size: 13px; }

@media (max-width: 720px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    text-align: left;
    bottom: 96px; /* clear sticky mcta */
    padding: 16px 18px;
  }
  .cookie-banner__icon { display: none; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; }
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.mcta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  border-radius: var(--r-pill);
  box-shadow: 0 14px 36px rgba(33, 86, 240, 0.42);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), opacity .3s ease;
  text-decoration: none;
}
.mcta.show { transform: translateY(0); opacity: 1; }
.mcta__label { display: flex; flex-direction: column; line-height: 1.2; }
.mcta__label strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
}
.mcta__label span {
  font-size: 11.5px;
  opacity: 0.85;
  font-weight: 500;
}
.mcta__icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: transform .25s;
}
.mcta:active .mcta__icon { transform: scale(0.92); }

@media (max-width: 720px) {
  .mcta { display: flex; }
  body.mcta-active .wsbot { bottom: 88px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(154, 226, 56, 0.18), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(6, 151, 242, 0.25), transparent 60%),
    linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 60%, var(--blue-2) 100%);
  color: #fff;
  overflow: hidden;
  padding: 72px 0 140px;
}

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 960px) {
  .hero { padding: 56px 0 100px; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.hero__chip .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(154, 226, 56, 0.25);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(154, 226, 56, 0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(154, 226, 56, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  color: #fff;
}
.hero__title .grad {
  background: linear-gradient(120deg, #9ae238, #d3fa84);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 54ch;
  margin: 0 0 32px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.hero__chips .feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  color: #fff;
  backdrop-filter: blur(8px);
}
.hero__chips .feature img { width: 18px; height: 18px; filter: brightness(0) invert(1); }

.hero__trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 540px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  flex: 1 1 240px;
}
.trust-badge__icon {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.trust-badge__icon--lime { background: linear-gradient(135deg, var(--lime), var(--lime-deep)); color: var(--blue-deep); }
.trust-badge__copy { display: flex; flex-direction: column; line-height: 1.2; }
.trust-badge__copy strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13.5px;
  color: #fff;
  letter-spacing: 0;
}
.trust-badge__copy span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-top: 2px;
}

/* Decorative floating coins / shapes — corners only, away from text */
.hero__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.hero__deco--star1 { top: 8%;  left: 2%;  width: 60px; opacity: 0.16; animation: floatY 8s ease-in-out infinite; }
.hero__deco--star2 { top: 14%; right: 2%; width: 44px; opacity: 0.18; animation: floatY 6s ease-in-out infinite reverse; }
.hero__deco--coin2 { bottom: 12%; left: 2%; width: 56px; animation: floatYR 9s ease-in-out infinite reverse; opacity: 0.85; }
.hero__deco--bill2 { bottom: 6%; right: 1%; width: 64px; animation: floatYR 10s ease-in-out infinite; opacity: 0.75; }
.hero__deco--coin1,
.hero__deco--bill1 { display: none; }

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-18px); }
}
@keyframes floatYR {
  0%,100% { transform: translateY(0) rotate(-8deg); }
  50%     { transform: translateY(-14px) rotate(8deg); }
}

@media (max-width: 720px) {
  .hero__deco--star1, .hero__deco--coin1, .hero__deco--bill1 { display: none; }
}

/* ============================================================
   CALCULATOR — Floating card
   ============================================================ */
.calc {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: 0 30px 70px rgba(11, 23, 66, 0.28);
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.calc__head {
  padding: 22px 26px 8px;
  background: #fff;
}

.calc__head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.calc__question {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--blue-deep);
  margin: 0;
}

/* Sparkline */
.calc__spark {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
.calc__spark-svg {
  width: 80px;
  height: 28px;
  display: block;
}
.calc__spark-label {
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  font-weight: 600;
  margin-top: 2px;
  text-transform: uppercase;
}

.calc__rates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
  border-radius: var(--r-pill);
  padding: 5px;
  gap: 4px;
}

.calc__rate {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 12px 10px;
  border-radius: var(--r-pill);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all .25s;
}

.calc__rate-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.calc__rate-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--blue-deep);
  font-variant-numeric: tabular-nums;
}

.calc__rate.active {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 6px 16px rgba(33, 86, 240, 0.32);
}
.calc__rate.active .calc__rate-label,
.calc__rate.active .calc__rate-value { color: #fff; }

.calc__cta-top { padding: 14px 26px 0; }

#ctaOperacion,
.calc__cta-top .btn {
  width: 100%;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  border: 0;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 8px 20px rgba(33, 86, 240, 0.28);
}
#ctaOperacion:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(33, 86, 240, 0.38);
}

.calc__body { padding: 18px 26px 26px; }

/* Quick-amount chips */
.calc__chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0 0 14px;
}
.calc__chip {
  appearance: none;
  background: var(--bg);
  border: 1px solid var(--hair);
  color: var(--blue-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all .2s ease;
  flex: 1 1 auto;
  min-width: 56px;
}
.calc__chip:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}
.calc__chip.active {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(33, 86, 240, 0.28);
}

/* Skeleton loader while fetching API rates */
.calc.loading .calc__rate-value {
  background: linear-gradient(90deg, var(--hair) 0%, var(--bg) 50%, var(--hair) 100%);
  background-size: 200% 100%;
  color: transparent;
  border-radius: 6px;
  display: inline-block;
  min-width: 80px;
  animation: shimmer 1.3s linear infinite;
}
.calc.loading .calc__rate-value > * { visibility: hidden; }
.calc.loading #savingsAmount {
  display: inline-block;
  background: linear-gradient(90deg, var(--hair) 0%, var(--bg) 50%, var(--hair) 100%);
  background-size: 200% 100%;
  color: transparent;
  border-radius: 4px;
  min-width: 50px;
  animation: shimmer 1.3s linear infinite;
}
@keyframes shimmer {
  to { background-position: -200% 0; }
}

/* Comparativo vs banca */
.calc__compare {
  margin-top: 14px;
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  background: var(--bg);
  overflow: hidden;
}
.calc__compare-toggle {
  list-style: none;
  cursor: pointer;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--blue-deep);
  user-select: none;
}
.calc__compare-toggle::-webkit-details-marker { display: none; }
.calc__compare-toggle i {
  transition: transform .3s ease;
  color: var(--blue);
  font-size: 11px;
}
.calc__compare[open] .calc__compare-toggle i { transform: rotate(180deg); }

.calc__compare-list {
  list-style: none;
  margin: 0;
  padding: 0 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calc__compare-list li {
  display: grid;
  grid-template-columns: 24px 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--hair);
  font-size: 13px;
}
.calc__compare-logo {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 4px;
  background: #fff;
  padding: 2px;
  border: 1px solid var(--hair);
}
.calc__compare-name {
  font-weight: 600;
  color: var(--ink-2);
}
.calc__compare-rate {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
}
.calc__compare-save {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--lime-deep);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
}
.calc__compare-note {
  margin: 0;
  padding: 8px 16px 12px;
  font-size: 11px;
  color: var(--ink-3);
  font-style: italic;
}

.calc__rows {
  position: relative;
}

.calc__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  padding: 14px 16px;
  gap: 12px;
  transition: border-color .2s;
}
.calc__row:focus-within { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(33,86,240,0.1); }
.calc__row + .calc__row { margin-top: 12px; }

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

.calc__currency { display: flex; flex-direction: column; line-height: 1.15; }
.currency-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--blue-deep);
  letter-spacing: 0.04em;
}
.currency-desc { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; font-weight: 500; }

.flag {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.calc__input, .calc__amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--blue-deep);
  background: transparent;
  border: 0;
  outline: 0;
  width: 130px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.calc__input:focus { color: var(--blue); }

.calc__swap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: #fff;
  border: 2px solid var(--blue-soft);
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(11, 23, 66, 0.12);
  transition: transform .3s cubic-bezier(.2,.8,.3,1.2);
}
.calc__swap:hover {
  background: var(--blue-soft);
  transform: translate(-50%, -50%) rotate(180deg);
}
.swap-icon { width: 22px; height: 22px; pointer-events: none; }

.calc__savings {
  margin-top: 16px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--lime-soft), #f3fbe1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 600;
}
.calc__savings .icon { width: 36px; height: 36px; object-fit: contain; }
.calc__savings strong {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--lime-deep);
}

.calc__actions { margin-top: 16px; }
.calc__actions .btn,
.calc__actions .btn--yellow {
  width: 100%;
  padding: 16px 18px;
  background: linear-gradient(135deg, #ffa64d, var(--orange));
  color: #fff;
  border: 0;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(242, 124, 22, 0.32);
  transition: all .25s;
}
.calc__actions .btn--yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(242, 124, 22, 0.44);
}

.calc__register {
  text-align: center;
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--ink-2);
}
.calc__register .link {
  color: var(--blue);
  font-weight: 700;
  border-bottom: 1.5px solid var(--blue);
}

/* Wave divider into next section */
.hero::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: ellipse(75% 100% at 50% 100%);
  z-index: 2;
}

/* ============================================================
   TRANSFERENCIAS — Bank cards
   ============================================================ */
.banks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 720px) { .banks-grid { grid-template-columns: 1fr; } }

.bank-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--hair);
}
.bank-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blue-soft); }

.bank-card__icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 1.6rem;
}
.bank-card__icon--lime { background: var(--lime-soft); color: var(--lime-deep); }

.bank-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--blue-deep);
  margin: 0;
}
.bank-card__desc {
  color: var(--ink-2);
  margin: 0;
  font-size: 0.97rem;
}
.bank-card__banks {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--hair);
}
.bank-card__banks img {
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--hair);
  padding: 4px;
  transition: transform .25s;
}
.bank-card__banks img:hover { transform: scale(1.1); }

.bank-times {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bank-times li {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
  background: var(--bg);
  border-radius: var(--r-md);
  border: 1px solid var(--hair);
  transition: all .25s ease;
}
.bank-times li:hover {
  background: #fff;
  border-color: var(--blue-soft);
  transform: translateX(2px);
}
.bank-times img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--hair);
  padding: 4px;
}
.bank-times__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--blue-deep);
}
.bank-times__eta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--lime-deep);
  background: var(--lime-soft);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.bank-times__eta i { font-size: 11px; }

.banks-note {
  margin: 28px auto 0;
  width: fit-content;
  max-width: 100%;
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  padding: 12px 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hair);
}
.banks-note i { color: var(--blue); }

/* ============================================================
   STEPS — Cómo funciona
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  overflow: hidden;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.step-card__num {
  position: absolute;
  top: -8px;
  right: 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 6rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.18;
}
.step-card--lime .step-card__num { background: linear-gradient(135deg, var(--lime), var(--lime-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step-card--orange .step-card__num { background: linear-gradient(135deg, #ffa64d, var(--orange)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.step-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 8px 18px rgba(33, 86, 240, 0.3);
}
.step-card--lime .step-card__icon { background: linear-gradient(135deg, var(--lime), var(--lime-deep)); box-shadow: 0 8px 18px rgba(72, 161, 45, 0.3); }
.step-card--orange .step-card__icon { background: linear-gradient(135deg, #ffa64d, var(--orange)); box-shadow: 0 8px 18px rgba(242, 124, 22, 0.3); }

.step-card__illu {
  width: 120px;
  max-width: 100%;
  margin: 4px 0 22px;
}
.step-card__illu svg {
  width: 100%;
  height: auto;
  display: block;
}

.step-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--blue-deep);
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}
.step-card__desc {
  color: var(--ink-2);
  font-size: 0.97rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ============================================================
   PILLARS — Por qué elegirnos
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .pillars-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .pillars-grid { grid-template-columns: 1fr; } }

.pillar-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 1px solid var(--hair);
  text-align: left;
  transition: all .3s;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar-card:hover::before { transform: scaleX(1); }

.pillar-card__icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.pillar-card--lime .pillar-card__icon { background: var(--lime-soft); color: var(--lime-deep); }
.pillar-card--orange .pillar-card__icon { background: var(--orange-soft); color: var(--orange); }

.pillar-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--blue-deep);
  margin: 0 0 8px;
}
.pillar-card p {
  color: var(--ink-2);
  font-size: 0.93rem;
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   APP BAND
   ============================================================ */
.appband {
  background:
    radial-gradient(ellipse at top left, rgba(154, 226, 56, 0.25), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(6, 151, 242, 0.3), transparent 55%),
    linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff;
  border-radius: var(--r-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) { .appband { padding: 48px 28px; border-radius: var(--r-lg); } }

.appband__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 880px) { .appband__inner { grid-template-columns: 1fr; text-align: center; } }

.appband__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.appband__title .grad {
  background: linear-gradient(120deg, var(--lime), #d3fa84);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.appband__sub {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 48ch;
  margin: 0 0 32px;
}
@media (max-width: 880px) { .appband__sub { margin-left: auto; margin-right: auto; } }

.store-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 880px) { .store-buttons { justify-content: center; } }

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: #000;
  color: #fff;
  border-radius: var(--r-md);
  transition: all .25s;
  border: 1px solid rgba(255,255,255,0.18);
}
.store-btn:hover { background: #fff; color: #000; transform: translateY(-2px); }
.store-btn:hover img { filter: invert(1); }
.store-btn img { width: 28px; height: 28px; transition: filter .25s; }
.store-btn .small { display: block; font-size: 11px; opacity: 0.75; }
.store-btn strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1rem; }

.appband__img {
  position: relative;
  display: grid;
  place-items: center;
}
.appband__img img {
  position: relative;
  z-index: 2;
  max-height: 540px;
  width: auto;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.4));
}
.appband__halo {
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(154, 226, 56, 0.4), transparent 60%);
  filter: blur(80px);
  z-index: 1;
}

/* ============================================================
   ABOUT BAND
   ============================================================ */
.about-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 880px) { .about-band { grid-template-columns: 1fr; } }

.about-band__card {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  border-radius: var(--r-xl);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-glow-blue);
  position: relative;
  overflow: hidden;
}
.about-band__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(154, 226, 56, 0.18), transparent 50%);
  z-index: 0;
}

.about-band__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.about-band__metric strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  background: linear-gradient(120deg, var(--lime), #d3fa84);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.about-band__metric small {
  font-size: 12.5px;
  opacity: 0.85;
  line-height: 1.4;
  display: block;
}

.about-band__text { padding: 12px 0; }
.about-band__text h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--blue-deep);
  margin: 0 0 18px;
}
.about-band__text p { color: var(--ink-2); margin: 0 0 14px; font-size: 1.02rem; }
.about-band__actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

/* ============================================================
   TESTIMONIOS — Carousel
   ============================================================ */
.testimonios {
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) { .testimonios { grid-template-columns: 1fr; gap: 32px; } }

.tk-side h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--blue-deep);
  margin: 0 0 16px;
}
.tk-side h2 .grad {
  background: linear-gradient(120deg, var(--blue), var(--blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tk-side p { color: var(--ink-2); margin: 0 0 28px; max-width: 32ch; }

.tk-arrows { display: flex; gap: 10px; }
.tk-arrow {
  width: 52px; height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .25s;
}
.tk-arrow:hover { background: var(--blue); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(33, 86, 240, 0.3); }

.tk-carousel-wrapper { overflow: hidden; }
.tk-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
  will-change: transform;
}

.tk-card {
  min-width: 320px;
  max-width: 360px;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .3s;
}
.tk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.tk-card-header { display: flex; align-items: center; gap: 12px; }
.tk-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--lime-soft);
}
.tk-card h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--blue-deep);
  font-size: 1rem;
}
.tk-card span {
  font-size: 11.5px;
  color: var(--ink-3);
  font-weight: 600;
}
.tk-stars { color: #fbbf24; font-size: 0.9rem; letter-spacing: 0.05em; margin-top: 2px; display: block; }
.tk-card p { font-size: 0.93rem; color: var(--ink-2); line-height: 1.6; margin: 0; flex: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff;
  padding: 80px var(--gutter) 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(154, 226, 56, 0.15), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(6, 151, 242, 0.3), transparent 55%);
  pointer-events: none;
}

.footer__top {
  max-width: var(--max);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; gap: 32px; } }

.footer__brand-block { padding-right: 24px; }
.footer__logo { width: 150px; margin-bottom: 18px; }
.footer__brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 16px;
  opacity: 0.9;
}
.footer__ruc { font-size: 12px; opacity: 0.65; font-weight: 500; }

.footer__col h5 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 16px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 10px; font-size: 14px; opacity: 0.88; }
.footer__col a { transition: color .2s; }
.footer__col a:hover { color: var(--lime); }

.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  transition: all .25s;
}
.footer__social a:hover { background: var(--lime); color: var(--blue-deep); transform: translateY(-3px); }

.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.7;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================================
   MASCOTA
   ============================================================ */
.mascot { display: block; }
.mascot--waving {
  animation: mascotWave 3.5s ease-in-out infinite;
  transform-origin: 50% 90%;
}
@keyframes mascotWave {
  0%, 80%, 100% { transform: rotate(0deg); }
  85% { transform: rotate(-6deg); }
  92% { transform: rotate(5deg); }
}

/* ============================================================
   FLOATING WHATSAPP BOT
   ============================================================ */
.wsbot {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wsbot__bubble {
  background: #fff;
  border-radius: 22px 22px 6px 22px;
  padding: 14px 16px;
  box-shadow: 0 14px 32px rgba(11, 23, 66, 0.18);
  color: var(--blue-deep);
  max-width: 280px;
  position: relative;
  transform-origin: bottom right;
  transition: all .3s cubic-bezier(.2,.8,.3,1.2);
  animation: wsbotIn .55s cubic-bezier(.2,.8,.3,1.4) 1.2s both;
  border: 1px solid var(--hair);
}
.wsbot__bubble:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(11, 23, 66, 0.24); }
.wsbot__bubble.hidden { display: none; }

.wsbot__open {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.wsbot__avatar {
  width: 48px; height: 54px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
}
.wsbot__avatar .mascot { width: 100%; height: auto; }
.wsbot__avatar::after {
  content: "";
  position: absolute;
  bottom: 0; right: -2px;
  width: 12px; height: 12px;
  background: #25D366;
  border: 2px solid #fff;
  border-radius: 50%;
  z-index: 2;
}

.wsbot__copy { display: inline-flex; flex-direction: column; line-height: 1.3; }
.wsbot__copy strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--blue-deep);
}
.wsbot__copy > span { font-size: 12.5px; color: var(--ink-2); font-weight: 500; }

.wsbot__close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: #fff;
  border: 0;
  font-size: 12px;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
}

.wsbot__btn {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: transform .3s;
}
.wsbot__btn:hover { transform: scale(1.08); }
.wsbot__btn img { width: 32px; height: 32px; position: relative; z-index: 2; }
.wsbot__btn::before,
.wsbot__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: wsRing 2.2s infinite;
}
.wsbot__btn::after { animation-delay: 1.1s; }

@keyframes wsRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes wsbotIn {
  from { transform: scale(.4) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

@media (max-width: 520px) {
  .wsbot { right: 16px; bottom: 16px; gap: 8px; }
  .wsbot__bubble { max-width: 240px; padding: 10px 12px; }
  .wsbot__btn { width: 54px; height: 54px; }
}

/* ============================================================
   EMPRESAS PAGE
   ============================================================ */
.empresa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) { .empresa-grid { grid-template-columns: 1fr; gap: 32px; } }

.empresa-info__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--blue-deep);
  margin: 0 0 16px;
}
.empresa-info__lede {
  color: var(--ink-2);
  font-size: 1.05rem;
  margin: 0 0 32px;
  max-width: 50ch;
}

.empresa-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.empresa-benefits li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}
.empresa-benefits__icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 8px 18px rgba(33, 86, 240, 0.25);
  flex-shrink: 0;
  padding: 0;
}
.empresa-benefits__icon > svg {
  display: block;
  width: 26px;
  height: 26px;
  color: #fff;
  flex-shrink: 0;
  /* centrar la imagen horizontalmente y verticalmente */
  margin: auto;
  margin-top: 13px; /* ajuste fino para centrar verticalmente según el diseño del icono */

}

/* Centrado consistente de iconos FA dentro de cápsulas de color */
.usecase__icon,
.step-card__icon,
.pillar-card__icon,
.contact-card__icon,
.mvv-card__icon,
.bank-card__icon,
.tl-marker {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.usecase__icon > i,
.step-card__icon > i,
.pillar-card__icon > i,
.contact-card__icon > i,
.mvv-card__icon > i,
.bank-card__icon > i,
.tl-marker > i {
  line-height: 1;
  display: inline-block;
}
.empresa-benefits__icon--lime { background: linear-gradient(135deg, var(--lime), var(--lime-deep)); box-shadow: 0 8px 18px rgba(72, 161, 45, 0.25); }
.empresa-benefits__icon--orange { background: linear-gradient(135deg, #ffa64d, var(--orange)); box-shadow: 0 8px 18px rgba(242, 124, 22, 0.25); }
.empresa-benefits li strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--blue-deep);
  margin-bottom: 4px;
}
.empresa-benefits li span {
  display: block;
  color: var(--ink-2);
  font-size: 0.93rem;
  line-height: 1.55;
}

/* Form card */
.empresa-form {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
@media (max-width: 720px) {
  .empresa-form { padding: 24px; position: static; }
}

.empresa-form__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--blue-deep);
  margin: 0 0 6px;
}
.empresa-form__hint {
  color: var(--ink-2);
  font-size: 13.5px;
  margin: 0 0 24px;
}

.empresa-form__field { margin-bottom: 18px; }
.empresa-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 520px) { .empresa-form__row { grid-template-columns: 1fr; } }
.empresa-form__row .empresa-form__field { margin-bottom: 18px; }

.empresa-form__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--blue-deep);
  margin-bottom: 8px;
}

.empresa-form input[type="text"],
.empresa-form input[type="tel"],
.empresa-form input[type="number"],
.empresa-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--hair);
  background: var(--bg);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--blue-deep);
  transition: all .2s;
  outline: 0;
}
.empresa-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%232156f0' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.empresa-form input:focus,
.empresa-form select:focus {
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(33, 86, 240, 0.1);
}
.empresa-form__optional {
  font-weight: 500;
  color: var(--ink-3);
  font-size: 11.5px;
  margin-left: 4px;
}

/* Operación toggle */
.empresa-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.empresa-toggle input[type="radio"] { display: none; }
.empresa-toggle__opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  background: var(--bg);
  cursor: pointer;
  transition: all .2s;
}
.empresa-toggle__opt i {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--hair);
  color: var(--ink-2);
  font-size: 14px;
  transition: all .2s;
}
.empresa-toggle__opt span { display: flex; flex-direction: column; line-height: 1.2; }
.empresa-toggle__opt strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--blue-deep);
}
.empresa-toggle__opt small {
  font-size: 11.5px;
  color: var(--ink-2);
  font-weight: 500;
}
.empresa-toggle input:checked + .empresa-toggle__opt {
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(33, 86, 240, 0.12);
}
.empresa-toggle input:checked + .empresa-toggle__opt i {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
}

/* Monto input with prefix */
.empresa-input {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--hair);
  background: var(--bg);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all .2s;
}
.empresa-input:focus-within {
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(33, 86, 240, 0.1);
}
.empresa-input.invalid {
  border-color: #d33;
  background: #ffe9e9;
  box-shadow: 0 0 0 3px rgba(211, 51, 51, 0.1);
}
.empresa-input__prefix {
  padding: 0 16px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.05em;
}
.empresa-input input {
  flex: 1;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 13px 16px;
}
.empresa-input input:focus { box-shadow: none !important; }

.empresa-form__error {
  display: none;
  margin: 8px 0 0;
  font-size: 12.5px;
  color: #b00;
  font-weight: 600;
}
.empresa-form__error.show { display: block; }

.empresa-form__submit {
  margin-top: 12px;
  letter-spacing: 0.02em;
}
.empresa-form__legal {
  margin: 14px 0 0;
  font-size: 11px;
  color: var(--ink-3);
  text-align: center;
  line-height: 1.5;
}

/* Casos de uso empresariales */
.usecases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .usecases { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .usecases { grid-template-columns: 1fr; } }

.usecase {
  background: #fff;
  padding: 28px 26px;
  border-radius: var(--r-lg);
  border: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.usecase::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, rgba(33, 86, 240, 0.08), transparent 70%);
  pointer-events: none;
}
.usecase:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blue-soft); }

.usecase__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 8px 18px rgba(33, 86, 240, 0.25);
}
.usecase__icon--lime { background: linear-gradient(135deg, var(--lime), var(--lime-deep)); box-shadow: 0 8px 18px rgba(72, 161, 45, 0.25); }
.usecase__icon--orange { background: linear-gradient(135deg, #ffa64d, var(--orange)); box-shadow: 0 8px 18px rgba(242, 124, 22, 0.25); }

.usecase h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--blue-deep);
  margin: 0;
}
.usecase p {
  font-size: 0.95rem;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background:
    radial-gradient(ellipse at top right, rgba(154, 226, 56, 0.18), transparent 55%),
    linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}
.breadcrumb {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  display: flex; gap: 8px; align-items: center;
  margin-bottom: 18px;
  opacity: 0.9;
}
.breadcrumb a { color: var(--lime); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: 0.75; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  color: #fff;
}
.page-hero h1 .grad {
  background: linear-gradient(120deg, var(--lime), #d3fa84);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero__sub {
  font-size: 1.1rem;
  opacity: 0.88;
  margin: 20px 0 0;
  max-width: 60ch;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(75% 100% at 50% 100%);
  z-index: 1;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-section { padding: 96px 0; background: var(--bg); }

.timeline {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--orange), var(--lime), var(--blue));
  border-radius: 3px;
}
@media (max-width: 600px) { .timeline::before { left: 24px; } }

.tl-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  padding: 0 0 36px 0;
  position: relative;
}
@media (max-width: 600px) { .tl-row { grid-template-columns: 50px 1fr; gap: 16px; padding-bottom: 28px; } }

.tl-marker {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(33, 86, 240, 0.3);
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) { .tl-marker { width: 50px; height: 50px; font-size: 1.2rem; } }

.tl-marker--lime { background: linear-gradient(135deg, var(--lime), var(--lime-deep)); box-shadow: 0 8px 20px rgba(72, 161, 45, 0.3); }
.tl-marker--orange { background: linear-gradient(135deg, #ffa64d, var(--orange)); box-shadow: 0 8px 20px rgba(242, 124, 22, 0.3); }

.tl-card {
  background: #fff;
  padding: 22px 24px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--hair);
}
.tl-card .year {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--blue);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.tl-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--blue-deep);
}
.tl-card p { margin: 0; color: var(--ink-2); font-size: 0.95rem; }

/* ============================================================
   MVV
   ============================================================ */
.mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .mvv { grid-template-columns: 1fr; } }

.mvv-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.mvv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
}
.mvv-card--lime::before { background: linear-gradient(90deg, var(--lime), var(--lime-deep)); }
.mvv-card--orange::before { background: linear-gradient(90deg, #ffa64d, var(--orange)); }
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.mvv-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.8rem;
  color: #fff;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 8px 18px rgba(33, 86, 240, 0.32);
}
.mvv-card--lime .mvv-card__icon { background: linear-gradient(135deg, var(--lime), var(--lime-deep)); box-shadow: 0 8px 18px rgba(72, 161, 45, 0.32); }
.mvv-card--orange .mvv-card__icon { background: linear-gradient(135deg, #ffa64d, var(--orange)); box-shadow: 0 8px 18px rgba(242, 124, 22, 0.32); }

.mvv-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--blue-deep);
  margin: 0 0 12px;
}
.mvv-card p {
  color: var(--ink-2);
  margin: 0;
  line-height: 1.6;
  font-size: 0.97rem;
}
.mvv-card ul { list-style: none; padding: 0; margin: 0; text-align: left; }
.mvv-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--hair);
  color: var(--blue-deep);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mvv-card ul li:last-child { border-bottom: 0; }
.mvv-card ul li::before {
  content: "✓";
  width: 22px; height: 22px;
  background: var(--lime-soft);
  color: var(--lime-deep);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 96px 0; background: var(--bg); }

.faq-search {
  max-width: 600px;
  margin: 0 auto 36px;
  position: relative;
}
.faq-search input {
  width: 100%;
  padding: 18px 56px 18px 22px;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--blue-deep);
  outline: 0;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}
.faq-search input::placeholder { color: var(--ink-3); }
.faq-search input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(33,86,240,0.1); }
.faq-search-icon {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  pointer-events: none;
  color: var(--ink-3);
}

.faq-tabs {
  max-width: var(--max);
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 720px) { .faq-tabs { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .faq-tabs { grid-template-columns: 1fr; } }

.faq-tab {
  appearance: none;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: 22px 18px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all .25s;
  text-align: center;
}
.faq-tab img { width: 32px; height: 32px; object-fit: contain; transition: filter .25s; }
.faq-tab span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--blue-deep);
}
.faq-tab:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--blue-soft); }
.faq-tab.active {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(33, 86, 240, 0.3);
}
.faq-tab.active img { filter: brightness(0) invert(1); }
.faq-tab.active span { color: #fff; }

.faq-container { max-width: 880px; margin: 0 auto; }
.faq-section-content { display: none; }
.faq-section-content.active { display: block; }

.faq-item {
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--hair);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s;
  cursor: pointer;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.active { box-shadow: var(--shadow-md); border-color: var(--blue-soft); }

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--blue-deep);
}
.faq-toggle {
  width: 28px; height: 28px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  transition: all .3s;
  flex-shrink: 0;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--blue);
  color: #fff;
}
.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--ink-2);
  line-height: 1.65;
  font-size: 0.95rem;
}
.faq-item.active .faq-answer { display: block; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { padding: 96px 0; background: var(--bg); }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 720px) { .contact-cards { grid-template-columns: 1fr; } }

.contact-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all .3s;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.contact-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.7rem;
  color: #fff;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 8px 18px rgba(33, 86, 240, 0.3);
}
.contact-card--lime .contact-card__icon { background: linear-gradient(135deg, var(--lime), var(--lime-deep)); box-shadow: 0 8px 18px rgba(72, 161, 45, 0.3); }
.contact-card--orange .contact-card__icon { background: linear-gradient(135deg, #ffa64d, var(--orange)); box-shadow: 0 8px 18px rgba(242, 124, 22, 0.3); }

.contact-card h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--blue-deep);
  margin: 0 0 8px;
}
.contact-card p {
  font-size: 0.95rem;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}
.contact-card a { color: var(--blue); font-weight: 700; }
.contact-card a:hover { color: var(--blue-deep); }

.contact-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--hair);
}
.contact-map iframe { width: 100%; height: 460px; border: 0; display: block; }

/* ============================================================
   ERROR 404
   ============================================================ */
.error-404 {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 80px var(--gutter);
  text-align: center;
}
.error-404__inner { max-width: 640px; }
.error-404__mascot { margin: 0 auto 20px; display: flex; justify-content: center; }
.error-404__code {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(7rem, 22vw, 16rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 12px;
  letter-spacing: -0.05em;
}
.error-404__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--blue-deep);
  margin: 0 0 14px;
}
.error-404__text {
  color: var(--ink-2);
  margin: 0 0 32px;
  font-size: 1.05rem;
}

/* ============================================================
   RECLAMOS FORM
   ============================================================ */
.reclamos { padding: 80px var(--gutter); background: var(--bg); }
.reclamos-inner { max-width: 880px; margin: 0 auto; }
.reclamos .desc {
  background: #fff;
  border-radius: var(--r-md);
  padding: 22px 26px;
  margin: 0 0 32px;
  color: var(--ink-2);
  border: 1px solid var(--hair);
  font-size: 0.95rem;
  line-height: 1.6;
}
.reclamos .desc strong { color: var(--blue-deep); font-family: var(--font-display); font-weight: 800; }

.reclamos form {
  background: #fff;
  padding: 48px;
  border-radius: var(--r-lg);
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) { .reclamos form { padding: 28px; } }

.reclamos label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--blue-deep);
  margin-bottom: 8px;
}

.reclamos input,
.reclamos select,
.reclamos textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--hair);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--blue-deep);
  margin-bottom: 22px;
  border-radius: var(--r-sm);
  transition: all .2s;
}
.reclamos input:focus,
.reclamos select:focus,
.reclamos textarea:focus {
  outline: 0;
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(33,86,240,0.1);
}
.reclamos textarea { min-height: 140px; resize: vertical; }

.reclamos .row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .reclamos .row { grid-template-columns: 1fr; gap: 0; } }

.reclamos button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  border: 0;
  border-radius: var(--r-pill);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(33, 86, 240, 0.32);
  transition: all .25s;
}
.reclamos button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(33, 86, 240, 0.42); }

.reclamos .success {
  background: var(--lime-soft);
  border: 1px solid var(--lime);
  color: var(--blue-deep);
  padding: 18px 22px;
  margin-bottom: 28px;
  border-radius: var(--r-md);
  font-weight: 700;
}
.reclamos .alert {
  background: #ffe4e4;
  border: 1px solid #d32f2f;
  color: #5b0000;
  padding: 18px 22px;
  margin-bottom: 28px;
  border-radius: var(--r-md);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal { padding: 64px var(--gutter) 96px; background: var(--bg); }
.legal-inner {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 48px;
  border-radius: var(--r-lg);
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) { .legal-inner { padding: 28px; } }
.legal h1, .legal h2, .legal h3, .legal h4 {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--blue-deep);
  line-height: 1.15;
}
.legal h1 { font-size: 1.8rem; margin: 0 0 16px; }
.legal h2 { font-size: 1.4rem; margin: 36px 0 14px; }
.legal h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.legal h4 { font-size: 1rem; margin: 20px 0 8px; }
.legal p, .legal li { color: var(--ink-2); line-height: 1.7; font-size: 0.97rem; text-align: justify; }
.legal p { margin: 0 0 14px; }
.legal ul, .legal ol { padding-left: 22px; margin: 0 0 14px; }
.legal a { color: var(--blue); font-weight: 600; border-bottom: 1px solid var(--blue); }

/* ============================================================
   MODAL — Promo popup
   ============================================================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 23, 66, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 2147483647;
  backdrop-filter: blur(4px);
}
.modal.show { display: flex; }
.modal-content {
  position: relative;
  max-width: 95%;
  max-height: 95%;
  border-radius: var(--r-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.modal-content img {
  max-width: 100%;
  max-height: 88vh;
  display: block;
  border-radius: var(--r-lg);
}
.close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 20;
  width: 40px; height: 40px;
  background: rgba(11, 23, 66, 0.85);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 50%;
  display: grid;
  place-items: center;
  line-height: 1;
  padding: 0;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
  transition: all .2s;
}
.close-btn:hover {
  background: var(--blue);
  border-color: #fff;
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .modal-content { max-width: 92%; }
  .close-btn { top: 10px; right: 10px; width: 36px; height: 36px; font-size: 1.15rem; }
}

/* Hide legacy floating wsapp button if still present in some pages */
.btn-whatsapp { display: none !important; }
