/* ============================================================
   BALUARTE CAPITAL — styles.css
   Paleta: Navy profundo · Grafito · Blanco cálido · Dorado sobrio
   Tipografía: Playfair Display (display) + Manrope (body)
   v=20260605
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* --- Custom Properties --- */
:root {
  --navy:        #0A1628;
  --navy-2:      #0D1F35;
  --navy-3:      #132840;
  --navy-4:      #1A3350;
  --white-warm:  #F5F0E8;
  --white-2:     #E2D9C8;
  --white-muted: #9A8E7C;
  --gold:        #C4A35A;
  --gold-2:      #A8873A;
  --gold-light:  #E2C98A;
  --gray-fin:    #8D9DAE;
  --line:        rgba(196, 163, 90, 0.18);
  --line-w:      rgba(245, 240, 232, 0.10);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Manrope', 'Segoe UI', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h: 72px;
  --section-pad: clamp(4rem, 8vw, 8rem);
  --max-w: 1200px;
  --max-w-narrow: 800px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--navy);
  color: var(--white-warm);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* --- Typography scale --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
p  { font-size: clamp(0.95rem, 1.2vw, 1.05rem); color: var(--white-2); }

em { font-style: italic; color: var(--gold-light); }

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.container--narrow { max-width: var(--max-w-narrow); }
.text-gold  { color: var(--gold); }
.text-muted { color: var(--white-muted); }
.text-center { text-align: center; }
.section-pad { padding-block: var(--section-pad); }

/* --- Gold divider line --- */
.gold-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-block: 1.5rem;
}
.gold-line--center { margin-inline: auto; }

/* --- Eyebrow label --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white-warm);
  letter-spacing: 0.02em;
}
.nav__logo-tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--white-2);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--white-warm); background: rgba(255,255,255,0.06); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: background 0.25s, transform 0.2s !important;
}
.nav__cta:hover { background: var(--gold-light) !important; transform: translateY(-1px) !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white-warm);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  padding: 2rem clamp(1.25rem, 4vw, 3rem);
  gap: 0.5rem;
  z-index: 999;
  overflow-y: auto;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white-2);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-w);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile .nav__cta {
  margin-top: 1rem;
  justify-content: center;
  padding: 0.9rem 1.5rem !important;
  font-size: 0.9rem !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.25s, color 0.25s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.9rem;
  padding: 0.85rem 1.75rem;
  box-shadow: 0 4px 24px rgba(196, 163, 90, 0.25);
}
.btn--primary:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(196, 163, 90, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white-warm);
  font-size: 0.9rem;
  padding: 0.85rem 1.75rem;
  border: 1.5px solid rgba(245, 240, 232, 0.35);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196, 163, 90, 0.06);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  font-size: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
}
.btn--ghost:hover { color: var(--gold-light); border-color: var(--gold-light); }

.btn--large { font-size: 1rem; padding: 1rem 2.2rem; }

/* WhatsApp floating */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; }

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.8) brightness(0.4);
}

/* Animated mesh gradient overlay */
.hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(10, 22, 40, 0.85) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(196, 163, 90, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(10, 22, 40, 0.9) 0%, transparent 50%);
  animation: meshDrift 20s ease-in-out infinite;
}
@keyframes meshDrift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  padding-block: 4rem;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__tag::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.12;
  max-width: 16ch;
  margin-bottom: 1.5rem;
  color: var(--white-warm);
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--white-2);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-w);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white-muted);
  letter-spacing: 0.03em;
}
.hero__trust-item svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  animation: scrollBob 2.5s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 1.5rem;
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white-2);
  letter-spacing: 0.04em;
}
.trust-item svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   SECTION HEADERS (reusable)
   ============================================================ */
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header--center { text-align: center; }
.section-header--center .gold-line { margin-inline: auto; }

.section-header h2 {
  color: var(--white-warm);
  margin-bottom: 1rem;
}
.section-header p {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--white-muted);
  max-width: 60ch;
  line-height: 1.7;
}
.section-header--center p { margin-inline: auto; }

/* ============================================================
   DOLOR CARDS
   ============================================================ */
.dolor-section {
  background: var(--navy-2);
  padding-block: var(--section-pad);
}
.dolor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.dolor-card {
  background: var(--navy-3);
  border: 1px solid var(--line-w);
  border-radius: 8px;
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.dolor-card:hover {
  border-color: var(--line);
  transform: translateY(-4px);
}
.dolor-card__icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.dolor-card__q {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white-warm);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.dolor-card__copy {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.dolor-card a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(196,163,90,0.35);
  padding-bottom: 1px;
}
.dolor-card a:hover { color: var(--gold-light); }

/* ============================================================
   THREE ROUTES (cards)
   ============================================================ */
.routes-section {
  padding-block: var(--section-pad);
}
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.route-card {
  background: var(--navy-2);
  border: 1px solid var(--line-w);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.route-card:hover {
  border-color: var(--line);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.route-card__img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.route-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  filter: saturate(0.7) brightness(0.7);
}
.route-card:hover .route-card__img img { transform: scale(1.05); }
.route-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,22,40,0.85) 100%);
}
.route-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.route-card__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.route-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white-warm);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.route-card__copy {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
}
.route-card .btn--ghost { align-self: flex-start; }

/* ============================================================
   CALCULATOR HIGHLIGHT
   ============================================================ */
.calc-section {
  background: var(--navy-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: var(--section-pad);
}
.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.calc-card {
  background: var(--navy-2);
  border: 1px solid var(--line-w);
  border-radius: 8px;
  padding: 1.75rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
  text-decoration: none;
  display: block;
}
.calc-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.calc-card__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.calc-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white-warm);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.calc-card__desc {
  font-size: 0.82rem;
  color: var(--white-muted);
  line-height: 1.55;
}

/* ============================================================
   METODO BALUARTE
   ============================================================ */
.metodo-section {
  padding-block: var(--section-pad);
  background: var(--navy-2);
}
.metodo-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.metodo-step {
  text-align: center;
  position: relative;
}
.metodo-step__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.metodo-step__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white-warm);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.metodo-step__copy {
  font-size: 0.82rem;
  color: var(--white-muted);
  line-height: 1.55;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-section {
  padding-block: var(--section-pad);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--navy-2);
  border: 1px solid var(--line-w);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.25s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.service-card:hover { border-color: var(--line); transform: translateY(-3px); }
.service-card__icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.service-card__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white-warm);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.service-card__benefit {
  font-size: 0.82rem;
  color: var(--white-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}
.service-card__who {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-fin);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.service-card .btn--ghost {
  font-size: 0.75rem;
  align-self: flex-start;
}

/* ============================================================
   ABOUT / HECTOR
   ============================================================ */
.about-section {
  padding-block: var(--section-pad);
  background: var(--navy-3);
  border-top: 1px solid var(--line);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy-2);
  min-height: 400px;
  display: flex;
  align-items: flex-start;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  max-height: 600px;
  object-fit: contain;
  object-position: center top;
  filter: saturate(0.75);
  background: var(--navy-2);
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(19,40,64,0.5));
}
.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  background: rgba(196,163,90,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(196,163,90,0.35);
  border-radius: 6px;
  padding: 0.75rem 1rem;
}
.about-img-badge p {
  font-size: 0.75rem;
  color: var(--gold-light);
  margin: 0;
}
.about-img-badge strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white-warm);
}
.about-content {}
.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--white-warm);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}
.about-text {
  font-size: 0.95rem;
  color: var(--white-2);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.about-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.about-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--white-2);
  line-height: 1.5;
}
.about-bullet::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding-block: var(--section-pad);
  background: var(--navy-2);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--navy-3);
  border: 1px solid var(--line-w);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}
.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  pointer-events: none;
}
.testimonial-card__type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.testimonial-card__problem {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white-muted);
  margin-bottom: 1rem;
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--white-warm);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.testimonial-card__result {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding-block: var(--section-pad);
}
.faq-list {
  max-width: 800px;
  margin-inline: auto;
  margin-top: 3rem;
}
.faq-item {
  border-bottom: 1px solid var(--line-w);
}
.faq-item:first-child { border-top: 1px solid var(--line-w); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white-warm);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--gold); }
.faq-btn svg {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
}
.faq-item.is-open .faq-btn svg { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-item.is-open .faq-body { max-height: 600px; padding-bottom: 1.25rem; }
.faq-body p {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.7;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta {
  padding-block: var(--section-pad);
  background: var(--navy-3);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta__halo {
  position: absolute;
  inset: -50% -10%;
  background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(196,163,90,0.08), transparent 70%);
  pointer-events: none;
}
.final-cta__inner { position: relative; z-index: 1; max-width: 700px; margin-inline: auto; }
.final-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white-warm);
  margin-bottom: 1rem;
}
.final-cta p {
  font-size: 1.05rem;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.final-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   DISCLAIMER
   ============================================================ */
.disclaimer {
  background: var(--navy);
  border-top: 1px solid var(--line-w);
  padding-block: 1.5rem;
}
.disclaimer p {
  font-size: 0.72rem;
  color: var(--white-muted);
  line-height: 1.6;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  opacity: 0.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--line);
  padding-block: 3rem 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white-warm);
  margin-bottom: 0.25rem;
}
.footer__brand-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer__brand-desc {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.65;
  max-width: 30ch;
  margin-bottom: 1.5rem;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--white-muted);
  margin-bottom: 0.5rem;
}
.footer__contact-item a { color: var(--white-2); transition: color 0.2s; }
.footer__contact-item a:hover { color: var(--gold); }
.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a {
  font-size: 0.85rem;
  color: var(--white-muted);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--white-warm); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-w);
}
.footer__copy {
  font-size: 0.78rem;
  color: var(--white-muted);
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: 0.78rem;
  color: var(--white-muted);
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--white-warm); }

/* ============================================================
   INTERIOR PAGE HERO
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  background: var(--navy);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero__halo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(196,163,90,0.05), transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(13,31,53,0.8), transparent 60%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 800px; }
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  color: var(--white-warm);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.page-hero h1 em { color: var(--gold-light); }
.page-hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--white-2);
  line-height: 1.7;
  max-width: 58ch;
  margin-bottom: 2rem;
}
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.comparison__col {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line-w);
}
.comparison__col--highlight {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(196,163,90,0.1);
}
.comparison__header {
  padding: 1.25rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.comparison__col--plain .comparison__header { background: var(--navy-3); color: var(--white-muted); }
.comparison__col--highlight .comparison__header { background: var(--gold); color: var(--navy); }
.comparison__items { padding: 1.25rem 1.5rem; background: var(--navy-2); }
.comparison__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line-w);
  font-size: 0.88rem;
  color: var(--white-2);
}
.comparison__item:last-child { border-bottom: none; }
.comparison__item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.comparison__col--plain .comparison__item svg { color: #e05050; }
.comparison__col--highlight .comparison__item svg { color: #50c878; }

/* ============================================================
   CALCULADORAS
   ============================================================ */
.calc-page {
  padding-block: var(--section-pad);
}
.calc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--line-w);
  padding-bottom: 1rem;
}
.calc-tab-btn {
  padding: 0.6rem 1.25rem;
  background: var(--navy-2);
  border: 1px solid var(--line-w);
  border-radius: 4px;
  color: var(--white-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.calc-tab-btn.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.calc-panel { display: none; }
.calc-panel.is-active { display: block; }
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.calc-form {
  background: var(--navy-2);
  border: 1px solid var(--line-w);
  border-radius: 10px;
  padding: 2rem;
}
.calc-form h3 {
  color: var(--white-warm);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white-2);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--navy-3);
  border: 1px solid var(--line-w);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--white-warm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder { color: var(--white-muted); }
.form-group input[type="range"] {
  padding: 0;
  background: transparent;
  border: none;
  accent-color: var(--gold);
  cursor: pointer;
}
.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--white-muted);
  margin-top: 0.25rem;
}
.form-submit { margin-top: 1.5rem; }

.calc-result {
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2rem;
  display: none;
}
.calc-result.is-visible { display: block; }
.calc-result h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.result-metric {
  text-align: center;
  padding: 1.5rem;
  background: var(--navy-2);
  border-radius: 8px;
  margin-bottom: 1rem;
}
.result-metric__value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.result-metric__label {
  font-size: 0.82rem;
  color: var(--white-muted);
  margin-top: 0.4rem;
}
.result-details {
  margin-top: 1rem;
  padding: 1.25rem;
  background: var(--navy-2);
  border-radius: 6px;
}
.result-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line-w);
  font-size: 0.85rem;
}
.result-detail-row:last-child { border-bottom: none; }
.result-detail-row span:first-child { color: var(--white-muted); }
.result-detail-row span:last-child { color: var(--white-warm); font-weight: 600; }
.calc-disclaimer {
  font-size: 0.72rem;
  color: var(--white-muted);
  line-height: 1.6;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-w);
  opacity: 0.8;
}

/* Lead capture after calc */
.lead-form-wrap {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(196,163,90,0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.lead-form-wrap h4 {
  color: var(--white-warm);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.lead-grid .form-group { margin-bottom: 0; }
.lead-grid .btn { grid-column: 1 / -1; }
.lead-success {
  text-align: center;
  padding: 1rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  display: none;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Mandatory defensive CSS for data-split */
.reveal[data-split] { opacity: 1; transform: none; }

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img-wrap { min-height: 280px; }
  .about-img-wrap img { max-height: 400px; }
  .calc-layout { grid-template-columns: 1fr; }
  .comparison { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  :root { --nav-h: 64px; }
  .hero__title { max-width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__grid > :first-child { grid-column: auto; }
  .routes-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .metodo-steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .calc-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-grid { grid-template-columns: 1fr; }
  .dolor-grid { grid-template-columns: 1fr; }
  .whatsapp-float { bottom: 1.5rem; right: 1.25rem; }
  .final-cta__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .metodo-steps { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
}

/* hover: none — remove tilt/hover on touch devices */
@media (hover: none) {
  .route-card:hover,
  .dolor-card:hover,
  .service-card:hover,
  .calc-card:hover {
    transform: none;
  }
}
