/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --navy-deep: #1b1e22; /* Gris oscuro / carbón profundo de la marca */
  --navy: #4a515e;      /* Plateado oscuro / pizarra */
  --navy-900: #101215;  /* Fondo ultra oscuro grafito */
  --navy-800: #16181c;  /* Gris oscuro para contraste */

  --white: #FFFFFF;
  --gray-50: #F7F9FB;
  --gray-100: #EEF2F6;

  --ink: #0F1826;
  --ink-soft: #33404F;
  --ink-mute: #5B6472;

  --gold: #C9A227;
  --gold-soft: #E7CB6E;
  --gold-pale: #F6ECC9;

  --green: #2DBE60;
  --green-dark: #229A4D;

  --line: rgba(15, 24, 38, 0.1);
  --line-dark: rgba(255, 255, 255, 0.14);

  --display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1180px;
  --radius: 20px;
  --radius-sm: 12px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--display);
  text-wrap: balance;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--navy-deep);
}
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--navy-deep); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.2rem; background: var(--white); color: var(--navy-deep);
  border-radius: 8px; font-weight: 600; box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.skip-link:focus { top: 1rem; }

html.nav-locked, html.nav-locked body { overflow: hidden; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.icon-brand { fill: currentColor; stroke: none; }
.eyebrow {
  display: inline-block; font-family: var(--display); font-weight: 700; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
  margin-bottom: .9rem;
}
.section { padding-block: clamp(4rem, 8vw, 7.5rem); }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: .9rem; }
.section-sub { color: var(--ink-mute); font-size: 1.05rem; }

[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--display); font-weight: 700; font-size: .95rem;
  padding: .95rem 1.7rem; border-radius: 999px;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn .icon { width: 1.1em; height: 1.1em; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-primary {
  background: var(--green); color: #06210F;
  box-shadow: 0 14px 30px rgba(45,190,96,.28), 0 2px 6px rgba(0,0,0,.08);
}
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 20px 40px rgba(45,190,96,.36); }

.btn-ghost {
  background: rgba(255,255,255,.08); color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.55); }

.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--gold); color: var(--navy-deep); background: var(--gold-pale); }

.btn-sm { padding: .65rem 1.2rem; font-size: .85rem; }
.btn-lg { padding: 1.15rem 2.1rem; font-size: 1rem; }
.btn-xl { padding: 1.35rem 2.6rem; font-size: 1.1rem; }

.ripple {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,.55);
  transform: scale(0); pointer-events: none; z-index: -1;
  animation: rippleAnim .7s var(--ease-out);
}
.btn-outline .ripple, .btn-ghost .ripple { background: rgba(201,162,39,.28); }
@keyframes rippleAnim { to { transform: scale(1); opacity: 0; } }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 200;
  transition: background-color .4s var(--ease-out), box-shadow .4s var(--ease-out), backdrop-filter .4s;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.35rem; }
.nav.is-scrolled {
  background: rgba(27,30,34,.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 20px 40px rgba(16,18,21,.25);
}
.nav.is-scrolled .nav-inner { padding-block: .9rem; }

.nav-logo { font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: var(--white); letter-spacing: -.01em; }
.nav-logo span { color: var(--gold); }

.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-link {
  position: relative; padding-block: .3rem; color: rgba(255,255,255,.85); font-weight: 500; font-size: .93rem;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-out);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: .9rem; }
.nav-burger { display: flex; color: var(--white); padding: .3rem; }
.nav-burger .icon { width: 1.5em; height: 1.5em; }

.nav-mobile {
  position: fixed; inset: 0; top: 0; z-index: 190;
  background: var(--navy-deep); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile.is-open { clip-path: inset(0); }
.nav-mobile nav { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.nav-mobile-link { font-family: var(--display); font-size: 1.5rem; font-weight: 700; color: var(--white); }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  background: radial-gradient(120% 100% at 15% 0%, #383d47 0%, var(--navy-deep) 42%, var(--navy-900) 100%);
  padding-block: clamp(6.5rem, 14vh, 8.5rem) clamp(3rem, 8vh, 4.5rem);
}
.hero-mesh {
  position: absolute; inset: -10%; z-index: 0;
  --mesh-mx: 78%; --mesh-my: 22%;
  background:
    radial-gradient(48% 48% at var(--mesh-mx) var(--mesh-my), rgba(201,162,39,.26), transparent 65%),
    radial-gradient(50% 50% at 20% 85%, rgba(31,78,121,.55), transparent 70%),
    radial-gradient(35% 35% at 55% 55%, rgba(45,190,96,.06), transparent 70%);
  filter: blur(60px) saturate(120%);
  animation: meshBreathe 22s ease-in-out infinite;
  transition: background-position .3s linear;
}
@keyframes meshBreathe {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.12) rotate(6deg); }
}
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-lines {
  position: absolute; inset: 0; z-index: 1; opacity: .55; pointer-events: none;
  will-change: transform;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; gap: 3rem; align-items: center;
}
.hero-copy { max-width: 640px; }
.hero-figure {
  display: none; justify-self: center; position: relative;
  will-change: transform;
}
@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1.05fr .95fr; }
  .hero-figure { display: block; }
}
@media (min-width: 960px) and (max-height: 760px) {
  .hero-photo-card { width: min(300px, 70%); }
}

.hero-photo-card {
  --rx: 0deg; --ry: 0deg;
  position: relative; width: min(380px, 86%); margin-inline: auto;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform .5s var(--ease-soft);
  animation: photoFloat 6s ease-in-out infinite;
}
.hero-photo-card::before {
  content: ""; position: absolute; z-index: -1; inset: 8% 2% 4%;
  background: radial-gradient(60% 60% at 50% 40%, rgba(201,162,39,.35), transparent 72%);
  filter: blur(50px); pointer-events: none;
}
.hero-photo-card img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 35px 45px rgba(0,0,0,.45));
  -webkit-mask-image: linear-gradient(to bottom, #000 72%, transparent 96%);
  mask-image: linear-gradient(to bottom, #000 72%, transparent 96%);
}
@keyframes photoFloat { 0%, 100% { transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(0); } 50% { transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-12px); } }
.hero-photo-badge {
  position: absolute; left: 50%; bottom: 6%; transform: translateX(-50%);
  width: max-content; max-width: 88%;
  background: rgba(27,30,34,.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm); padding: .7rem 1.1rem;
  display: flex; flex-direction: column; align-items: center; text-align: center; color: var(--white);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,.5);
}
.hero-photo-badge strong { font-family: var(--display); font-size: .92rem; white-space: nowrap; }
.hero-photo-badge span { font-size: .74rem; color: var(--gold-soft); white-space: nowrap; }
.hero-photo-stat {
  position: absolute; top: -1.2rem; right: -1.2rem; z-index: 3;
  display: flex; align-items: center; gap: .7rem;
  background: rgba(255,255,255,.95); color: var(--navy-deep);
  border-radius: 999px; padding: .7rem 1.2rem .7rem .8rem;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,.4);
  animation: floatY 5s ease-in-out infinite;
}
.hero-photo-stat .icon { width: 1.6em; height: 1.6em; color: var(--green); flex: none; }
.hero-photo-stat strong { display: block; font-family: var(--display); font-size: 1.05rem; line-height: 1.1; }
.hero-photo-stat span { font-size: .72rem; color: var(--ink-mute); }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 539px) { .hero-photo-stat { right: -.4rem; padding: .55rem .9rem .55rem .6rem; } }

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  color: var(--white);
  margin-bottom: 1.3rem;
  max-width: 16ch;
}
.hero-title em { color: var(--gold-soft); font-style: normal; }
.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,.78);
  max-width: 52ch;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.6rem; }
.hero-trust li { display: flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.72); font-size: .88rem; font-weight: 500; }
.hero-trust .icon { color: var(--gold); width: 1.2em; height: 1.2em; }

.hero-scroll-cue {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.35); border-radius: 999px;
}
.hero-scroll-cue span {
  display: block; width: 4px; height: 8px; margin: 7px auto 0; border-radius: 2px; background: var(--gold);
  animation: scrollCue 2s ease-in-out infinite;
}
@keyframes scrollCue { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(14px); opacity: .3; } }

/* =============================================================
   7. ¿Por qué elegirnos?
   ============================================================= */
.why-grid { display: grid; gap: 3rem; }
.why-figure { display: flex; justify-content: center; }
.why-photo-card {
  --rx: 0deg; --ry: 0deg;
  position: relative; width: min(380px, 86%);
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform .5s var(--ease-soft);
  animation: photoFloat 6.5s ease-in-out infinite;
}
.why-photo-card::before {
  content: ""; position: absolute; z-index: -1; inset: 8% 2% 4%;
  background: radial-gradient(60% 60% at 50% 40%, rgba(31,78,121,.25), transparent 72%);
  filter: blur(50px); pointer-events: none;
}
.why-photo-card img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 30px 40px rgba(15,24,38,.35));
  -webkit-mask-image: linear-gradient(to bottom, #000 72%, transparent 96%);
  mask-image: linear-gradient(to bottom, #000 72%, transparent 96%);
}
.why-photo-badge {
  position: absolute; left: 50%; bottom: 6%; transform: translateX(-50%);
  width: max-content; max-width: 88%;
  background: rgba(27,30,34,.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm); padding: .7rem 1.1rem;
  display: flex; flex-direction: column; align-items: center; text-align: center; color: var(--white);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,.4);
}
.why-photo-badge strong { font-family: var(--display); font-size: .92rem; white-space: nowrap; }
.why-photo-badge span { font-size: .74rem; color: var(--gold-soft); white-space: nowrap; }

.why-lede { color: var(--ink-mute); font-size: 1.05rem; margin-bottom: 2.2rem; }
.why-list { display: grid; gap: 1.4rem; }
.why-list li { display: flex; gap: 1rem; align-items: flex-start; }
.why-list .icon { flex: none; width: 1.5em; height: 1.5em; color: var(--gold); margin-top: .1rem; }
.why-list strong { display: block; font-family: var(--display); font-size: 1.02rem; margin-bottom: .2rem; color: var(--navy-deep); }
.why-list span { color: var(--ink-mute); font-size: .94rem; }

@media (min-width: 960px) {
  .why-grid { grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: 4.5rem; }
  .why-figure { justify-content: flex-start; }
}

/* =============================================================
   8. Services & Protección Integral
   ============================================================= */
.services { background: var(--gray-50); }
.service-grid { display: grid; gap: 1.6rem; }
.service-grid-lg { grid-template-columns: 1fr; }
.service-grid-sm { grid-template-columns: 1fr; }
@media (min-width: 720px) { .service-grid-lg { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .service-grid-sm { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  --rx: 0deg;
  position: relative;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%);
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .4s;
  display: flex; flex-direction: column; gap: .35rem;
}
@supports not (backdrop-filter: blur(1px)) { .service-card { background: rgba(255,255,255,.94); } }
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,162,39,.4);
  box-shadow: 0 40px 70px -30px rgba(15,24,38,.25), 0 0 0 1px rgba(201,162,39,.18);
}
.service-card-icon {
  width: 3.2rem; height: 3.2rem; border-radius: 14px; margin-bottom: .6rem;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--gold-soft);
}
.service-card-icon .icon { width: 1.6em; height: 1.6em; }
.service-card h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.service-card > p { color: var(--ink-mute); font-size: .95rem; margin-bottom: .6rem; }

.check-list { display: grid; gap: .55rem; margin-block: .3rem 1.3rem; }
.check-list li { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--ink-soft); font-weight: 500; }
.check-list .icon { color: var(--green); width: 1.15em; height: 1.15em; flex: none; }

.tag-row { display: flex; gap: .5rem; flex-wrap: wrap; margin-block: .2rem 1.3rem; }
.tag {
  font-size: .78rem; font-weight: 700; padding: .35rem .8rem; border-radius: 999px;
  background: var(--gold-pale); color: #6B551A;
}

.service-card .btn-outline { margin-top: auto; align-self: flex-start; }

.protection { background: var(--white); }
.service-card-tech {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-900) 100%);
  border-color: rgba(255,255,255,.12);
  position: relative; overflow: hidden;
}
.service-card-tech::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px;
}
.service-card-tech h3, .service-card-tech > p { color: var(--white); position: relative; }
.service-card-tech > p { color: rgba(255,255,255,.68); }
.service-card-tech .check-list li { color: rgba(255,255,255,.85); position: relative; }
.service-card-tech .service-card-icon { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%); color: var(--navy-deep); }
.service-card-tech .btn-outline { color: var(--white); border-color: rgba(255,255,255,.3); position: relative; }
.service-card-tech .btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--gold-soft); color: var(--gold-soft); }
.service-card-tech:hover { box-shadow: 0 40px 70px -25px rgba(0,0,0,.5), 0 0 0 1px rgba(201,162,39,.35); }

/* =============================================================
   9. Beneficios & Stats
   ============================================================= */
.benefits { background: var(--gray-50); padding-bottom: 0; }
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
@media (min-width: 720px) { .benefit-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.8rem 1.4rem; text-align: center;
  transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft);
}
.benefit-item:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -20px rgba(15,24,38,.2); }
.benefit-item .icon { width: 2.1rem; height: 2.1rem; color: var(--navy); margin: 0 auto .9rem; }
.benefit-item h3 { font-size: .98rem; font-weight: 600; }

.stats-band {
  position: relative; overflow: hidden; isolation: isolate;
  margin-top: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.stats-band::before {
  content: ""; position: absolute; inset: -20%; z-index: 0; pointer-events: none;
  --stats-mx: 22%; --stats-my: 30%;
  background: radial-gradient(45% 45% at var(--stats-mx) var(--stats-my), rgba(201,162,39,.24), transparent 70%);
  filter: blur(70px);
}
.stats-band .stats-grid { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; text-align: center; }
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  padding: 1.4rem 1rem; border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform .4s var(--ease-soft), border-color .4s, background-color .4s;
}
.stat-card:hover { transform: translateY(-4px); border-color: rgba(201,162,39,.35); background: rgba(255,255,255,.04); }
.stat-icon {
  width: 3rem; height: 3rem; border-radius: 50%; margin-bottom: .4rem;
  display: grid; place-items: center;
  background: rgba(201,162,39,.14); border: 1px solid rgba(201,162,39,.3);
  color: var(--gold-soft);
}
.stat-icon .icon { width: 1.5em; height: 1.5em; }
.stat-number {
  font-family: var(--display); font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 800; color: var(--gold-soft);
  font-variant-numeric: tabular-nums;
}
.stat-number.is-counted { animation: statPop .55s var(--ease-bounce); }
@keyframes statPop {
  0% { transform: scale(1); text-shadow: 0 0 0 rgba(201,162,39,0); }
  55% { transform: scale(1.16); text-shadow: 0 0 24px rgba(201,162,39,.65); }
  100% { transform: scale(1); text-shadow: 0 0 0 rgba(201,162,39,0); }
}
.stat-label { color: rgba(255,255,255,.75); font-size: .88rem; font-weight: 500; }

/* =============================================================
   10. Proceso / Timeline
   ============================================================= */
.timeline { display: grid; gap: 2.4rem; counter-reset: step; }
.timeline-item { position: relative; padding-left: 4.4rem; }
.timeline-num {
  position: absolute; left: 0; top: 0; width: 3.2rem; height: 3.2rem; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 1.15rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%); color: var(--navy-deep);
  box-shadow: 0 10px 24px rgba(201,162,39,.35);
}
.timeline-item:not(:last-child)::before {
  content: ""; position: absolute; left: 1.6rem; top: 3.4rem; bottom: -2.4rem; width: 2px;
  background: linear-gradient(var(--gold-soft), var(--line));
}
.timeline-item h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.timeline-item p { color: var(--ink-mute); font-size: .95rem; max-width: 46ch; }

@media (min-width: 960px) {
  .timeline { grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
  .timeline-item { padding-left: 0; padding-top: 4.4rem; }
  .timeline-num { left: 50%; transform: translateX(-50%); }
  .timeline-item h3, .timeline-item p { text-align: center; margin-inline: auto; }
  .timeline-item:not(:last-child)::before {
    left: 50%; top: 1.6rem; right: -50%; bottom: auto; width: auto; height: 2px;
    background: linear-gradient(90deg, var(--gold-soft), var(--line));
  }
}

/* =============================================================
   11. Testimonios
   ============================================================= */
.testimonials { background: var(--gray-50); }

.carousel { position: relative; max-width: 760px; margin-inline: auto; }
.carousel-track { display: grid; }
.testimonial-card {
  grid-row: 1; grid-column: 1;
  background: var(--white);
  border: 1px solid var(--line); border-top: 4px solid var(--gold);
  border-radius: var(--radius); padding: clamp(2.2rem, 4vw, 3.2rem);
  display: flex; flex-direction: column; gap: 1.1rem;
  box-shadow: 0 20px 45px -30px rgba(15,24,38,.3);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .5s var(--ease-soft);
}
.testimonial-card.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.stars { display: flex; gap: .25rem; color: var(--gold); }
.stars .icon { width: 1.1em; height: 1.1em; }
.quote-icon { color: var(--line); width: 2.2rem; height: 2.2rem; }
.testimonial-card p { font-size: 1.15rem; color: var(--ink-soft); font-family: var(--display); font-weight: 500; line-height: 1.55; }
.testimonial-author { display: flex; align-items: center; gap: .9rem; margin-top: .3rem; }
.avatar {
  width: 3rem; height: 3rem; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--display); font-weight: 700; color: var(--white);
  background: var(--av, var(--navy));
  box-shadow: 0 8px 18px -6px rgba(15,24,38,.4);
}
.testimonial-author strong { display: block; font-size: .94rem; color: var(--navy-deep); }
.testimonial-author span { font-size: .8rem; color: var(--ink-mute); }

.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 3rem; height: 3rem; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  background: var(--white); color: var(--navy-deep);
  box-shadow: 0 15px 35px -12px rgba(15,24,38,.35), 0 0 0 1px var(--line);
  transition: background-color .3s, color .3s, transform .3s var(--ease-soft);
}
.carousel-arrow:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-50%) scale(1.08); }
.carousel-arrow-prev { left: -1.4rem; }
.carousel-arrow-prev .icon { transform: rotate(180deg); }
.carousel-arrow-next { right: -1.4rem; }
@media (min-width: 960px) { .carousel-arrow { display: flex; } }

.carousel-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.8rem; }
.carousel-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); transition: all .35s var(--ease-out); }
.carousel-dot:hover { background: var(--gold-soft); }
.carousel-dot.is-active { width: 26px; border-radius: 999px; background: var(--gold); }

/* =============================================================
   12. FAQ
   ============================================================= */
.accordion { display: grid; gap: .9rem; max-width: 800px; }
.accordion-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .3rem 1.4rem;
}
.accordion-item summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: 1.15rem; font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--navy-deep);
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary .icon { flex: none; color: var(--gold); transition: transform .35s var(--ease-out); }
.accordion-item[open] summary .icon { transform: rotate(180deg); }
.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease-soft);
}
.accordion-item[open] .accordion-body { grid-template-rows: 1fr; }
.accordion-body p { overflow: hidden; min-height: 0; padding-bottom: 1.2rem; color: var(--ink-mute); font-size: .95rem; max-width: 68ch; }

/* =============================================================
   13. CTA final
   ============================================================= */
.cta-final {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding-block: clamp(4.5rem, 9vw, 7rem);
  text-align: center;
}
.cta-final-mesh {
  position: absolute; inset: -20%; z-index: 0;
  --ctamesh-mx: 50%; --ctamesh-my: 40%;
  background: radial-gradient(55% 55% at var(--ctamesh-mx) var(--ctamesh-my), rgba(201,162,39,.32), transparent 70%);
  filter: blur(70px);
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); max-width: 18ch; margin-inline: auto; margin-bottom: 1rem; }
.cta-final p { color: rgba(255,255,255,.78); max-width: 50ch; margin-inline: auto; margin-bottom: 2.2rem; font-size: 1.05rem; }

/* =============================================================
   14. Contact
   ============================================================= */
.contact-grid { display: grid; gap: 3rem; }
.contact-info h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 1rem; }
.contact-lede { color: var(--ink-mute); margin-bottom: 1.8rem; max-width: 46ch; }
.contact-details { display: grid; gap: .9rem; margin-bottom: 2rem; }
.contact-details li { display: flex; align-items: center; gap: .8rem; font-weight: 500; }
.contact-details .icon { color: var(--gold); width: 1.3em; height: 1.3em; flex: none; }
.advisor-mini-card {
  display: flex; align-items: center; gap: .9rem;
  background: var(--gray-50); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .9rem 1.2rem; max-width: 320px;
}
.advisor-mini-card img { width: 3.4rem; height: 3.4rem; border-radius: 50%; object-fit: cover; }
.advisor-mini-card strong { display: block; font-size: .92rem; }
.advisor-mini-card span { font-size: .8rem; color: var(--ink-mute); }

.contact-form {
  position: relative;
  background: var(--gray-50); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: grid; gap: 1.1rem;
}
.form-row { display: grid; gap: 1.1rem; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }

.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%; padding: 1.35rem 1rem .55rem; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--white); transition: border-color .3s;
}
.field textarea { resize: vertical; min-height: 5rem; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field label {
  position: absolute; left: 1rem; top: 1rem; pointer-events: none; color: var(--ink-mute);
  transition: all .2s var(--ease-out); font-size: .98rem;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: .4rem; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); font-weight: 700;
}
.field-select select { color: var(--ink); appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B6472' stroke-width='1.7'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1.1rem; }
.field-select select:invalid { color: var(--ink-mute); }
.field-select label { top: .4rem; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: var(--ink-mute); }

.checkbox-row { display: flex; align-items: flex-start; gap: .7rem; font-size: .85rem; color: var(--ink-mute); }
.checkbox-row input { margin-top: .2rem; accent-color: var(--gold); width: 1.05rem; height: 1.05rem; flex: none; }
.checkbox-row a { color: var(--navy); font-weight: 600; text-decoration: underline; }

.btn-submit { position: relative; width: 100%; }
.btn-submit .btn-spinner, .btn-submit .btn-check { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; pointer-events: none; }
.btn-submit .btn-spinner::after {
  content: ""; width: 18px; height: 18px; border: 2px solid rgba(6,33,15,.25); border-top-color: #06210F;
  border-radius: 50%; animation: spin .85s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.contact-form.is-sending .btn-label { opacity: 0; }
.contact-form.is-sending .btn-spinner { opacity: 1; }
.contact-form.is-sending .btn-submit { pointer-events: none; }
.contact-form.is-sent { display: none; }

.form-privacy-note { font-size: .78rem; color: var(--ink-mute); text-align: center; }
.form-error-note { font-size: .85rem; color: #B3261E; text-align: center; font-weight: 600; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-success {
  display: none; flex-direction: column; align-items: center; text-align: center; gap: .8rem;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--gray-50); border: 1px solid var(--line); border-radius: var(--radius);
}
.form-success.is-visible { display: flex; }
.form-success .icon { width: 3rem; height: 3rem; color: var(--green); }
.form-success h3 { font-size: 1.3rem; }
.form-success p { color: var(--ink-mute); }

@media (min-width: 960px) {
  .contact-grid { grid-template-columns: .85fr 1.15fr; align-items: start; }
}

/* =============================================================
   15. Service dialog (modal)
   ============================================================= */
.service-dialog {
  border: 0; border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 520px; width: calc(100% - 2.5rem);
  max-height: calc(100% - 4rem);
  margin: auto;
  box-shadow: 0 40px 100px rgba(16,18,21,.35);
}
.service-dialog::backdrop { background: rgba(16,18,21,.6); backdrop-filter: blur(4px); }
.dialog-close {
  position: absolute; top: 1.2rem; right: 1.2rem; width: 2.2rem; height: 2.2rem; border-radius: 50%;
  display: grid; place-items: center; background: var(--gray-100); color: var(--ink-mute);
}
.dialog-close:hover { background: var(--gold-pale); color: var(--navy-deep); }
.dialog-icon {
  width: 3.4rem; height: 3.4rem; border-radius: 14px; margin-bottom: 1rem;
  display: grid; place-items: center; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); color: var(--gold-soft);
}
.dialog-icon .icon { width: 1.7em; height: 1.7em; }
.service-dialog h3 { font-size: 1.5rem; margin-bottom: .8rem; }
.service-dialog > p { color: var(--ink-mute); margin-bottom: 1.2rem; }
.service-dialog .check-list { margin-bottom: 1.6rem; }
.dialog-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.dialog-actions .btn {
  width: 100%;
}
@media (min-width: 480px) {
  .dialog-actions {
    flex-direction: row;
    align-items: center;
  }
  .dialog-actions .btn {
    flex: 1;
  }
}

/* =============================================================
   16. Floating actions & sticky CTA
   ============================================================= */
.floating-actions {
  position: fixed; right: 1.2rem; bottom: 5.6rem; z-index: 150;
  display: flex; flex-direction: column; gap: .8rem;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
}
.floating-actions.is-visible { opacity: 1; transform: none; pointer-events: auto; }
@media (min-width: 960px) {
  .floating-actions { opacity: 1; transform: none; pointer-events: auto; bottom: 1.8rem; }
}
.fab {
  position: relative; width: 3.2rem; height: 3.2rem; border-radius: 50%;
  display: grid; place-items: center; color: var(--white);
  box-shadow: 0 14px 28px rgba(16,18,21,.28);
  transition: transform .4s var(--ease-soft);
}
.fab .icon { width: 1.4em; height: 1.4em; }
.fab:hover { transform: scale(1.08); }
.fab-whatsapp { background: var(--green); }
.fab-call { background: var(--navy); }
.fab-mail { background: var(--navy-deep); }
.fab-pulse {
  position: absolute; inset: 0; border-radius: 50%; background: var(--green);
  animation: fabPulse 2.6s ease-out infinite;
}
@keyframes fabPulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.9); opacity: 0; } }
.fab[data-tooltip]::after {
  content: attr(data-tooltip); position: absolute; right: calc(100% + .7rem); top: 50%; transform: translateY(-50%);
  background: var(--navy-deep); color: var(--white); padding: .4rem .7rem; border-radius: 6px; font-size: .78rem;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .25s;
}
@media (hover: hover) and (pointer: fine) { .fab[data-tooltip]:hover::after { opacity: 1; } }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 140;
  padding: .8rem 1rem; background: rgba(27,30,34,.92); backdrop-filter: blur(12px);
  transform: translateY(120%); transition: transform .45s var(--ease-soft);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; }
@media (min-width: 960px) { .sticky-cta { display: none; } }

/* =============================================================
   17. Footer
   ============================================================= */
.footer { background: var(--navy-900); color: rgba(255,255,255,.72); }
.footer-grid { display: grid; gap: 2.6rem; padding-block: clamp(3rem, 6vw, 4.5rem); }
.footer-brand p { margin-block: 1rem 1.2rem; font-size: .92rem; max-width: 40ch; }
.footer-social { display: flex; gap: .8rem; }
.footer-social a {
  width: 2.4rem; height: 2.4rem; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-dark); transition: border-color .3s, color .3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-soft); }
.footer-col h4 { color: var(--white); font-size: .95rem; margin-bottom: 1rem; }
.footer-col { display: flex; flex-direction: column; gap: .65rem; font-size: .9rem; }
.footer-col a:hover { color: var(--gold-soft); }

.footer-bottom { border-top: 1px solid var(--line-dark); }
.footer-bottom-inner {
  display: flex; flex-direction: column; gap: .6rem; padding-block: 1.4rem; font-size: .78rem; color: rgba(255,255,255,.5);
}
.footer-disclaimer { max-width: 70ch; }

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
@media (min-width: 960px) {
  .footer-bottom-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* =============================================================
   17.5 Left Floating Action (Instagram 3D)
   ============================================================= */
.floating-actions-left {
  position: fixed; left: 1.2rem; bottom: 5.6rem; z-index: 150;
  display: flex; flex-direction: column; gap: .8rem;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
}
.floating-actions-left.is-visible { opacity: 1; transform: none; pointer-events: auto; }
@media (min-width: 960px) {
  .floating-actions-left { opacity: 1; transform: none; pointer-events: auto; bottom: 1.8rem; }
}

.fab-3d {
  position: relative; width: 3.2rem; height: 3.2rem; border-radius: 50%;
  display: grid; place-items: center; color: var(--white);
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 5px 0 #8f1258, 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform .15s var(--ease-soft), box-shadow .15s var(--ease-soft);
}
.fab-3d .icon { width: 1.5em; height: 1.5em; stroke-width: 2.2; }
.fab-3d:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #8f1258, 0 12px 25px rgba(0, 0, 0, 0.35);
}
.fab-3d:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 #8f1258, 0 4px 10px rgba(0, 0, 0, 0.25);
}
.fab-3d[data-tooltip]::after {
  content: attr(data-tooltip); position: absolute; left: calc(100% + .7rem); top: 50%; transform: translateY(-50%);
  background: var(--navy-deep); color: var(--white); padding: .4rem .7rem; border-radius: 6px; font-size: .78rem;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .25s;
}
@media (hover: hover) and (pointer: fine) { .fab-3d[data-tooltip]:hover::after { opacity: 1; } }

/* =============================================================
   18. Responsive tweaks & reduced-motion
   ============================================================= */
@media (min-width: 540px) {
  .hero-actions { flex-wrap: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .hero-scroll-cue span { animation: none; }
  .fab-pulse { animation: none; opacity: .3; }
  /* Micro-interactions (hover, tilt, fade, count-up, ripple) intentionally NOT disabled here. */
}
