/* ============================================================
   Roberto Paredes — Sistema de diseno compartido
   Extraido de cinematic.html (fuente de verdad de tokens).
   Compartido por: cinematic.html, nosotros.html, resenas.html
   ============================================================ */
/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* ── Obsidian palette — menos azul, más contraste metalico ── */
  --ink-deep: #09090F;
  --ink: #111118;
  --ink-soft: #1A1A24;
  --gold: #C9A45E;
  --gold-bright: #E5C078;
  --gold-deep: #997140;
  --champagne: #EDE3CF;
  --bone: #F7F3ED;
  --cream: #FAF8F4;
  --stone-900: #1F1F1F;
  --stone-700: #3A3A3A;
  --stone-500: #6B6B6B;
  --stone-400: #8B8B8B;
  --stone-300: #C0BAB0;
  --stone-200: #DED9D2;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.22, 0.61, 0.36, 1);

  --container: 1280px;
  --gutter: clamp(24px, 4vw, 64px);
}

/* ============================================================
   BASE
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--ink-deep);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--ink-deep); }

/* Custom scrollbar (when not using Lenis) */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink-deep); }
::-webkit-scrollbar-thumb { background: var(--stone-700); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, transform 0.4s var(--ease-out), background 0.3s;
}
/* Editorial "+" cross cursor — horizontal line */
.cursor-dot {
  width: 18px; height: 1px;
  background: var(--gold-bright);
  opacity: 0.9;
  border-radius: 0;
}
/* Editorial "+" cross cursor — vertical line */
.cursor-ring {
  width: 1px; height: 18px;
  background: var(--gold-bright);
  border-radius: 0;
  border: none;
  opacity: 0.9;
}
.cursor-dot.hover { transform: translate(-50%, -50%) scaleX(1.8); background: var(--gold); opacity: 1; }
.cursor-ring.hover { transform: translate(-50%, -50%) scaleY(1.8); background: var(--gold); opacity: 1; }

@media (max-width: 1024px) { .cursor-dot, .cursor-ring { display: none; } }

/* ============================================================
   CARDS 3D ELEVATION — physical material system
   ============================================================ */
.guia, .perfil, .equipo__card, .prop, .review {
  will-change: transform;
  /* Resting depth: 3 shadow layers */
  box-shadow:
    0 0 0 1px rgba(232, 220, 196, 0.07),
    0 2px 5px  rgba(0, 0, 0, 0.45),
    0 8px 18px rgba(0, 0, 0, 0.28),
    0 20px 40px rgba(0, 0, 0, 0.16);
}

/* Catchlight — reflejo metálico en el borde superior */
.guia::after, .equipo__card::after {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(237, 227, 207, 0.22) 20%,
    rgba(229, 192, 120, 0.55) 50%,
    rgba(237, 227, 207, 0.22) 80%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
  z-index: 1;
  pointer-events: none;
}
.guia:hover::after, .equipo__card:hover::after { opacity: 1; }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 100;
  background: transparent;
}
.scroll-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-bright));
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================================
   GRAIN OVERLAY (cinematic texture)
   ============================================================ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/></svg>");
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 400ms var(--ease-out),
              backdrop-filter 400ms var(--ease-out),
              border-color 400ms var(--ease-out);
}
.nav.scrolled {
  background: rgba(9, 9, 15, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(237, 227, 207, 0.10);
}
.nav__logo img { height: 38px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  position: relative;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  padding: 8px 0;
  transition: color 240ms;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--ease-out);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: 20px; }
.nav__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--stone-300);
  padding-right: 20px;
  border-right: 1px solid rgba(232, 220, 196, 0.18);
}
.nav__rating strong { color: var(--bone); font-weight: 600; }
.nav__rating-stars { color: var(--gold); letter-spacing: 1px; }

.nav__cta {
  background: var(--gold);
  color: var(--ink-deep);
  border: none;
  padding: 12px 22px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: background 240ms;
}
.nav__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 700ms var(--ease-out);
}
.nav__cta:hover { background: var(--gold-bright); }
.nav__cta:hover::before { transform: translateX(100%); }

.nav__burger { display: none; }
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__rating { display: none; }
  .nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    position: relative;
    z-index: 95;
  }
  .nav__burger span {
    width: 24px; height: 1px; background: var(--bone);
    transition: transform 300ms var(--ease-out), opacity 200ms var(--ease-out);
  }
  body.menu-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
  body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ============================================================
   MOBILE MENU — panel desplegable (solo <=1024px)
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(9, 9, 15, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms var(--ease-out), visibility 400ms var(--ease-out);
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--bone);
  letter-spacing: -0.02em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(232, 220, 196, 0.10);
  opacity: 0;
  transform: translateY(16px);
  transition: color 240ms var(--ease-out), opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.mobile-menu.active .mobile-menu__link { opacity: 1; transform: translateY(0); }
.mobile-menu.active .mobile-menu__link:nth-child(1) { transition-delay: 80ms; }
.mobile-menu.active .mobile-menu__link:nth-child(2) { transition-delay: 130ms; }
.mobile-menu.active .mobile-menu__link:nth-child(3) { transition-delay: 180ms; }
.mobile-menu.active .mobile-menu__link:nth-child(4) { transition-delay: 230ms; }
.mobile-menu.active .mobile-menu__link:nth-child(5) { transition-delay: 280ms; }
.mobile-menu__link:hover { color: var(--gold-bright); }
.mobile-menu__cta {
  margin-top: 32px;
  align-self: flex-start;
  background: var(--gold);
  color: var(--ink-deep);
  border: none;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: background 240ms var(--ease-out), opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.mobile-menu.active .mobile-menu__cta { opacity: 1; transform: translateY(0); transition-delay: 330ms; }
.mobile-menu__cta:hover { background: var(--gold-bright); }
@media (min-width: 1025px) { .mobile-menu { display: none; } }

/* Con el menu movil abierto, ocultar flotantes que viven por encima (sticky CTA, Samy z9999) */
body.menu-open .sticky-cta,
body.menu-open #samy-bubble { display: none !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink-deep);
}
.hero__bg {
  position: absolute;
  inset: -10% -5% -10% -5%;
  overflow: hidden;
  will-change: transform;
}
.hero__video {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  filter: brightness(1.15) saturate(0.85) contrast(1.05);
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9,9,15,0.62) 0%, rgba(9,9,15,0.52) 35%, rgba(9,9,15,0.96) 100%),
    radial-gradient(ellipse at center, rgba(9,9,15,0) 0%, rgba(9,9,15,0.55) 100%);
  pointer-events: none;
}
.hero__columns {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
    rgba(232,220,196,0.025) 0px,
    rgba(232,220,196,0.025) 1px,
    transparent 1px,
    transparent 140px);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
  pointer-events: none;
}
.hero__rule {
  position: absolute;
  top: 18%; right: 64px; bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.45;
}
.hero__corner {
  position: absolute;
  width: 42px; height: 42px;
}
.hero__corner--tl { top: 108px; left: 56px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.hero__corner--br { bottom: 54px; right: 56px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
}
.hair {
  display: inline-block;
  height: 1px;
  background: var(--gold);
  width: 56px;
}

.hero__google {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--stone-300);
  margin-bottom: 36px;
  opacity: 0;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}
.hero__google:hover { color: var(--bone); }
.hero__google:hover .hero__google-arrow { transform: translate(2px, -2px); }
.hero__google-stars { color: var(--gold-bright); letter-spacing: 2px; }
.hero__google strong { color: var(--bone); font-weight: 600; }
.hero__google-arrow {
  font-size: 12px;
  color: var(--gold);
  margin-left: 4px;
  transition: transform 0.3s var(--ease-out);
  display: inline-block;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.032em;
  color: var(--bone);
  max-width: 1100px;
  margin: 0 0 32px;
  padding-left: 0.08em;
  overflow: visible;
}
.hero__title-line {
  display: block;
}
.hero__title em {
  font-style: italic;
  color: var(--champagne);
  display: block;
  padding-left: 0.04em;
  white-space: nowrap;
  margin-top: 0.18em;
}
.hero__title .word { display: inline-block; overflow: hidden; }
.hero__title .word > span { display: inline-block; transform: translateY(110%); }

/* Typing animation — min-width on wrap (set via JS on load) prevents shift; everything inline = perfect baseline */
.typed-wrap {
  display: inline-block;
  white-space: nowrap;
  text-align: left;
  vertical-align: baseline;
  line-height: inherit;
}
.typed {
  display: inline;
}
.cursor-bar {
  display: inline-block;
  width: 2px;
  height: 0.62em;
  background: var(--gold-bright);
  margin-left: 4px;
  vertical-align: -0.04em;
  animation: blink 900ms steps(1) infinite;
}
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.hero__sub {
  font-size: 20px;
  line-height: 1.6;
  color: var(--stone-300);
  font-weight: 300;
  max-width: 620px;
  margin: 0 0 48px;
  opacity: 0;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 96px;
  opacity: 0;
}
.btn-primary, .btn-ghost {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 18px 30px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 240ms;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink-deep);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -1px 0 rgba(0,0,0,0.18);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.38) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 700ms var(--ease-out);
}
.btn-primary:hover {
  background: var(--gold-bright);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.22);
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:active {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 2px 4px rgba(0,0,0,0.25),
    0 2px 8px rgba(201,164,94,0.15);
  transform: translateY(1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.03);
  color: var(--bone);
  border: 1px solid rgba(237,227,207,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,164,94,0.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 4px 16px rgba(201,164,94,0.12);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(232, 220, 196, 0.2);
  max-width: 900px;
  opacity: 0;
}
.hero__stat {
  padding: 24px 24px 0 0;
}
.hero__stat:not(:first-child) {
  border-left: 1px solid rgba(232, 220, 196, 0.12);
  padding-left: 24px;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: -0.025em;
  color: var(--bone);
  line-height: 1;
}
.hero__stat-lbl {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-top: 10px;
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--stone-300);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: float 2.6s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--gold), transparent);
}
@keyframes float {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -8px); }
}

@media (max-width: 768px) {
  .hero__title { font-size: 36px; line-height: 1.1; }
  .hero__sub { font-size: 16px; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .hero__stat:nth-child(3) { border-left: none; padding-left: 0; }
  .hero__stat-lbl { font-size: 9px; }
  .hero__rule, .hero__corner { display: none; }
  .typed-wrap { white-space: normal; }
  .hero__title em { white-space: normal; }
}
@media (max-width: 480px) {
  .hero__title { font-size: 30px; line-height: 1.12; }
  .hero__sub { font-size: 15px; line-height: 1.6; }
  .hero__google { font-size: 12px; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink-deep);
  padding: 36px 0;
  border-top: 1px solid rgba(232, 220, 196, 0.08);
  border-bottom: 1px solid rgba(232, 220, 196, 0.08);
  overflow: hidden;
  position: relative;
}
.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: mq 50s linear infinite;
}
.marquee__item {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-300);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee__dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}
@keyframes mq {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  position: relative;
  padding: clamp(80px, 14vw, 180px) var(--gutter);
}
.section__inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}

/* ============================================================
   PROBLEMA — scroll-text-fill
   ============================================================ */
.problema { background: var(--ink-deep); }
.problema__statement {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 7.4vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 96px;
  max-width: none;
}
.problema__line {
  position: relative;
  display: block;
}
.problema__line .base {
  color: var(--stone-700);
}
.problema__line .fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--champagne), var(--gold));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.1s linear;
}

.problema__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(232, 220, 196, 0.18);
  gap: 0;
}
.problema__point {
  padding: 56px 32px 0 0;
}
.problema__point:not(:first-child) {
  border-left: 1px solid rgba(232, 220, 196, 0.12);
  padding-left: 32px;
}
.problema__point-num {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--gold);
  margin-bottom: 24px;
}
.problema__point-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 12px;
  line-height: 1.2;
}
.problema__point-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--stone-300);
}
.problema__closing {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.4;
  color: var(--champagne);
  text-align: center;
  max-width: 760px;
  margin: 96px auto 0;
}
@media (max-width: 768px) {
  .problema__points { grid-template-columns: 1fr; }
  .problema__point { padding: 40px 0; border-left: none !important; border-top: 1px solid rgba(232, 220, 196, 0.12); padding-left: 0 !important; }
  .problema__point:first-child { border-top: none; padding-top: 56px; }
}

/* ============================================================
   PERFILES (¿Para quién es esto?)
   ============================================================ */
.perfiles { background: var(--ink); }
.perfiles__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 72px;
}
.perfiles__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 16px 0 18px;
  max-width: 880px;
}
.perfiles__title em {
  font-style: italic;
  color: var(--gold-bright);
}
.perfiles__sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--stone-300, #C9C4B8);
  max-width: 620px;
}
.perfiles__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(232, 220, 196, 0.18);
  border-bottom: 1px solid rgba(232, 220, 196, 0.18);
}
.perfil {
  padding: 64px 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background 0.5s var(--ease-out);
  border-bottom: 1px solid rgba(232, 220, 196, 0.12);
}
.perfil:nth-child(odd) {
  border-right: 1px solid rgba(232, 220, 196, 0.12);
}
.perfil:nth-last-child(-n+2) {
  border-bottom: none;
}
.perfil:hover {
  background: rgba(184, 146, 90, 0.04);
}
.perfil__tag {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.04em;
}
.perfil__tag::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201, 164, 94, 0.25);
}
.perfil__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--bone, #F2EBD8);
  margin-bottom: 8px;
}
.perfil__title em {
  font-style: italic;
  color: var(--gold-bright);
  display: block;
  font-weight: 400;
}
.perfil__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--stone-300, #C9C4B8);
  margin: 18px 0 28px;
}
.perfil__list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.perfil__list li {
  font-size: 13px;
  line-height: 1.6;
  color: var(--bone, #F2EBD8);
  padding-left: 22px;
  position: relative;
}
.perfil__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--gold);
}
.perfil__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-decoration: none;
  cursor: pointer;
  padding: 14px 0;
  border-top: 1px solid rgba(232, 220, 196, 0.12);
  transition: gap 0.3s var(--ease-out), color 0.3s;
}
.perfil__cta:hover {
  gap: 16px;
  color: var(--gold);
}
.perfil__cta span {
  font-size: 14px;
}
@media (max-width: 900px) {
  .perfiles__grid { grid-template-columns: 1fr; }
  .perfil { padding: 48px 0; border-right: none !important; border-bottom: 1px solid rgba(232, 220, 196, 0.12) !important; }
  .perfil:last-child { border-bottom: none !important; }
  .perfil:first-child { padding-top: 32px; }
}

/* ============================================================
   AUTORIDAD
   ============================================================ */
.autoridad { background: var(--ink); }
.autoridad__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  align-items: center;
}
.autoridad__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.autoridad__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
  filter: grayscale(0.15) contrast(1.05);
}
.autoridad__photo:hover img { transform: scale(1.04); filter: grayscale(0) contrast(1.05); }
.autoridad__corner {
  position: absolute;
  width: 64px; height: 64px;
}
.autoridad__corner--tl { top: -12px; left: -12px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.autoridad__corner--br { bottom: -12px; right: -12px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.autoridad__badge {
  position: absolute;
  bottom: 24px; left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(5, 13, 26, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.autoridad__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 36px;
}
.autoridad__title em { font-style: italic; color: var(--champagne); }

.autoridad__body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--stone-300);
  font-weight: 300;
  margin: 0 0 24px;
  max-width: 580px;
}
.autoridad__body.small {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(232, 220, 196, 0.18);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: -0.025em;
  color: var(--bone);
  line-height: 1;
}
.stat-lbl {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-top: 10px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .autoridad__grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============================================================
   METODOLOGIA A3
   ============================================================ */
.a3 { background: var(--ink-deep); position: relative; }
.a3__glow {
  position: absolute;
  top: -10%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184, 146, 90, 0.12), transparent 70%);
  pointer-events: none;
}
.a3__header {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 96px;
  align-items: flex-end;
  margin-bottom: 96px;
}
.a3__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.028em;
  margin: 0;
}
.a3__title em { font-style: italic; color: var(--champagne); }
.a3__desc {
  font-size: 18px;
  line-height: 1.75;
  color: var(--stone-300);
  font-weight: 300;
  max-width: 520px;
  padding-bottom: 12px;
}
.a3__desc em { color: var(--champagne); font-style: italic; }

.a3__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(232, 220, 196, 0.22);
}
.a3__pillar {
  padding: 56px 32px 0 0;
}
.a3__pillar:not(:first-child) {
  border-left: 1px solid rgba(232, 220, 196, 0.12);
  padding-left: 32px;
}
.a3__pillar-num {
  font-family: var(--font-display);
  font-size: clamp(80px, 9vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--gold);
  margin-bottom: 36px;
}
.a3__pillar-kicker {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 10px;
  font-weight: 500;
}
.a3__pillar-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}
.a3__bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.a3__bullet {
  font-size: 14px;
  line-height: 1.5;
  color: var(--stone-300);
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.a3__bullet::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .a3__header { grid-template-columns: 1fr; gap: 32px; }
  .a3__pillars { grid-template-columns: 1fr; }
  .a3__pillar { border-left: none !important; padding-left: 0 !important; border-top: 1px solid rgba(232, 220, 196, 0.12); padding-top: 56px; }
  .a3__pillar:first-child { border-top: none; }
}

/* ============================================================
   PROPIEDADES (3D tilt cards)
   ============================================================ */
.props { background: var(--ink-deep); }
.props__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.props__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 700px;
}
.props__title em { font-style: italic; color: var(--gold-bright); display: block; }
.props__sub {
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--stone-300, #C9C4B8);
  max-width: 560px;
}
.props__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.prop {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.4s var(--ease-out);
}
.prop__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease-out);
}
.prop:hover .prop__photo { transform: scale(1.06); }

.prop__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
    rgba(5,13,26,0.95) 0%,
    rgba(5,13,26,0.5) 40%,
    transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}
.prop__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.prop__name {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--bone);
  margin-bottom: 14px;
}
.props__note {
  margin-top: 28px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--stone-400, rgba(232,220,196,0.55));
  font-style: italic;
  max-width: 520px;
}
.prop__price {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prop__arrow {
  display: inline-block;
  color: var(--gold);
  transition: transform 400ms var(--ease-out);
}
.prop:hover .prop__arrow { transform: translateX(8px); }

@media (max-width: 768px) {
  .props__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.reviews { background: var(--ink); text-align: center; }
.reviews__rating-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 80px;
}
.reviews__stars-big {
  color: var(--gold);
  font-size: 36px;
  letter-spacing: 4px;
}
.reviews__rating-num {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 120px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
}
.reviews__rating-text {
  font-size: 14px;
  color: var(--stone-300);
}
/* Carousel wrapper */
.reviews__carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviews__overflow {
  overflow: hidden;
  flex: 1;
}
.reviews__track {
  display: flex;
  gap: 24px;
  transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reviews__nav {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: none;
  border: 1px solid rgba(232, 220, 196, 0.3);
  color: var(--gold);
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 250ms, background 250ms;
}
.reviews__nav:hover { border-color: var(--gold); background: rgba(201,164,94,0.08); }
.reviews__nav:disabled { opacity: 0.25; cursor: default; }
.review {
  padding: 36px;
  background: rgba(232, 220, 196, 0.03);
  border-left: 1px solid var(--gold);
  transition: transform 400ms var(--ease-out), background 400ms;
}
.review:hover { transform: translateY(-4px); background: rgba(232, 220, 196, 0.05); }
.review__stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 18px;
  font-size: 14px;
}
.review__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--champagne);
  margin-bottom: 24px;
}
.review__author {
  font-size: 14px;
  font-weight: 500;
  color: var(--bone);
  margin-bottom: 4px;
}
.review__meta {
  font-size: 11px;
  color: var(--stone-400);
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .reviews__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   VIDEO TESTIMONIOS
   ============================================================ */
.videos { background: var(--ink-deep); }
.videos__head {
  text-align: center;
  margin-bottom: 80px;
}
.videos__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 24px;
}
.videos__title em { font-style: italic; color: var(--champagne); }
.videos__sub {
  font-size: 18px;
  color: var(--stone-300);
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto;
}

.videos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
}
.video-card__thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3);
  transition: transform 1.1s var(--ease-out), filter 0.5s;
}
.video-card:hover .video-card__thumb { transform: scale(1.05); filter: grayscale(0); }
.video-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5,13,26,0.95) 0%, rgba(5,13,26,0.3) 42%, transparent 62%),
    radial-gradient(ellipse at 18% 12%, rgba(220,170,90,0.14) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  z-index: 2;
}
.video-card__play {
  align-self: center;
  margin-top: 28%;
  width: 70px; height: 70px;
  background: rgba(184, 146, 90, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 400ms var(--ease-out), background 240ms;
  box-shadow: 0 8px 32px rgba(184, 146, 90, 0.3);
}
.video-card:hover .video-card__play { transform: scale(1.12); background: var(--gold-bright); }
.video-card__play svg { width: 24px; height: 24px; fill: white; margin-left: 3px; }
.video-card__info {
  margin-top: auto;
}
.video-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--bone);
  margin-bottom: 4px;
}
.video-card__result {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 1024px) {
  .videos__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .videos__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ── Cinematic film grain overlay ── */
.video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: 0.07;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 3;
}

/* ── Location badge ── */
.video-card__loc {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 164, 94, 0.35);
  padding: 5px 10px;
  background: rgba(5, 13, 26, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 13, 26, 0.96);
  backdrop-filter: blur(24px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.video-modal.active { display: flex; }
.video-modal__inner {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9 / 16;
}
.video-modal__close {
  position: absolute;
  top: -50px; right: 0;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 40px; height: 40px;
  cursor: pointer;
  font-size: 18px;
}
.video-modal__close:hover { background: var(--gold); color: var(--ink-deep); }
.video-modal iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   PROCESO
   ============================================================ */
/* ============================================================
   EQUIPO / RED DE ALIADOS
   ============================================================ */
.equipo { background: var(--ink-deep); }
.equipo__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 80px;
}
.equipo__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 18px 0 22px;
}
.equipo__title em { font-style: italic; color: var(--gold-bright); }
.equipo__sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--stone-300, #C9C4B8);
  max-width: 640px;
}
.equipo__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(232, 220, 196, 0.18);
  border-bottom: 1px solid rgba(232, 220, 196, 0.18);
}
.equipo__card {
  padding: 56px 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(232, 220, 196, 0.12);
  transition: background 0.5s var(--ease-out);
}
.equipo__card:nth-child(odd) {
  border-right: 1px solid rgba(232, 220, 196, 0.12);
}
.equipo__card:nth-last-child(-n+2) {
  border-bottom: none;
}
.equipo__card:hover { background: rgba(201, 164, 94, 0.04); }
.equipo__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-style: italic;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0.55;
}
.equipo__discipline {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.equipo__card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--bone, #F2EBD8);
  margin: 0 0 16px;
}
.equipo__card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--stone-300, #C9C4B8);
  margin: 0;
}
.equipo__closing {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.4;
  color: var(--bone);
  text-align: center;
  max-width: 760px;
  margin: 88px auto 0;
}
.equipo__closing em {
  font-style: italic;
  color: var(--gold-bright);
}
@media (max-width: 900px) {
  .equipo__grid { grid-template-columns: 1fr; }
  .equipo__card { padding: 48px 0; border-right: none !important; }
  .equipo__card:first-child { padding-top: 32px; }
}

.proceso { background: var(--ink); }
.proceso__head {
  text-align: center;
  margin-bottom: 80px;
}
.proceso__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.025em;
}
.proceso__title em { font-style: italic; color: var(--champagne); }
.proceso__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.proceso__steps::before {
  content: '';
  position: absolute;
  top: 38px; left: 0; right: 0;
  height: 1px;
  background: rgba(232, 220, 196, 0.15);
  z-index: 0;
}
.proceso__step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.proceso__dot {
  width: 76px; height: 76px;
  margin: 0 auto 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
  background: var(--ink);
  transition: all 400ms var(--ease-out);
}
.proceso__step:hover .proceso__dot {
  background: var(--gold);
  color: var(--ink-deep);
}
.proceso__step-kicker {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}
.proceso__step-title {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--bone);
}
.proceso__step-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--stone-300);
}
.proceso__trust {
  margin-top: 56px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--stone-400);
  letter-spacing: 0.12em;
}
@media (max-width: 768px) {
  .proceso__steps { grid-template-columns: 1fr; gap: 56px; }
  .proceso__steps::before { display: none; }
}

/* ============================================================
   GUIAS
   ============================================================ */
.guias { background: var(--ink-deep); }
.guias__head { margin-bottom: 64px; }
.guias__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  line-height: 1.05;
}
.guias__title em { font-style: italic; color: var(--champagne); }
.guias__sub {
  font-size: 18px;
  color: var(--stone-300);
  font-weight: 300;
  max-width: 640px;
}
.guias__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.guia {
  padding: 32px;
  border: 1px solid rgba(232, 220, 196, 0.12);
  transition: all 400ms var(--ease-out);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.guia:hover {
  background: rgba(201, 164, 94, 0.04);
}
.guia__tag {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  align-self: flex-start;
}
.guia__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--bone);
}
.guia__cta {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .guias__grid { grid-template-columns: 1fr; }
}

/* Herramientas interactivas — dentro de Recursos */
.tools__head { margin-top: 72px; margin-bottom: 28px; }
.tools__sub {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--stone-300);
  max-width: 480px;
}
.tools__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.guia--tool {
  border-color: rgba(201, 164, 94, 0.35);
  background: rgba(201, 164, 94, 0.03);
}
.guia--tool:hover { background: rgba(201, 164, 94, 0.08); }
@media (max-width: 768px) {
  .tools__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BOOKING MODAL — calendario GHL embebido
   ============================================================ */
.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 13, 26, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.booking-modal.active { display: flex; }
.booking-modal__inner {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: min(86vh, 760px);
  background: var(--ink);
  border: 1px solid rgba(237, 227, 207, 0.12);
  display: flex;
  flex-direction: column;
}
.booking-modal__head {
  padding: 22px 28px 18px;
  border-bottom: 1px solid rgba(237, 227, 207, 0.10);
}
.booking-modal__title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--bone);
  margin-bottom: 6px;
}
.booking-modal__sub {
  font-size: 12px;
  line-height: 1.5;
  color: var(--stone-300);
}
.booking-modal__close {
  position: absolute;
  top: -48px; right: 0;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 40px; height: 40px;
  cursor: pointer;
  font-size: 18px;
}
.booking-modal__close:hover { background: var(--gold); color: var(--ink-deep); }
.booking-modal iframe { flex: 1; width: 100%; border: 0; background: #fff; }

/* ============================================================
   GUIA MODAL — captura antes de descargar
   ============================================================ */
.guia-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 13, 26, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.guia-modal.active { display: flex; }
.guia-modal__inner {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--ink);
  border: 1px solid rgba(237, 227, 207, 0.12);
  padding: 40px 36px 32px;
}
.guia-modal__close {
  position: absolute;
  top: -48px; right: 0;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 40px; height: 40px;
  cursor: pointer;
  font-size: 18px;
}
.guia-modal__close:hover { background: var(--gold); color: var(--ink-deep); }
.guia-modal__eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.guia-modal__title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.25;
  color: var(--bone);
  margin-bottom: 22px;
}
.guia-modal__field { margin-bottom: 14px; }
.guia-modal__input, .guia-modal__select {
  width: 100%;
  background: var(--ink-deep);
  border: 1px solid rgba(237, 227, 207, 0.18);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 300ms var(--ease-out);
}
.guia-modal__input:focus, .guia-modal__select:focus { border-color: var(--gold); }
.guia-modal__input::placeholder { color: var(--stone-500); }
.guia-modal__select { appearance: none; cursor: pointer; }
.guia-modal__select option { background: var(--ink); color: var(--bone); }
.guia-modal__btn {
  width: 100%;
  margin-top: 8px;
  background: var(--gold);
  color: var(--ink-deep);
  border: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 17px;
  cursor: pointer;
  transition: background 300ms var(--ease-out);
}
.guia-modal__btn:hover { background: var(--gold-bright); }
.guia-modal__btn:disabled { background: var(--stone-700); color: var(--stone-400); cursor: wait; }
.guia-modal__privacy {
  margin-top: 14px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--stone-500);
}
.guia-modal__error {
  display: none;
  margin-top: 12px;
  font-size: 12px;
  color: #D98C8C;
}
.guia-modal__error.visible { display: block; }
.guia-modal__success { display: none; text-align: center; padding: 12px 0 4px; }
.guia-modal__success.visible { display: block; }
.guia-modal__success-icon {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
.guia-modal__success-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--bone);
  margin-bottom: 10px;
}
.guia-modal__success-sub {
  font-size: 13px;
  line-height: 1.6;
  color: var(--stone-300);
  margin-bottom: 22px;
}

/* ============================================================
   FAQ — accordion
   ============================================================ */
.faq { background: var(--ink); }
.faq__head { text-align: center; margin-bottom: 64px; }
.faq__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.025em;
}
.faq__title em { font-style: italic; color: var(--champagne); }
.faq__list {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid rgba(232, 220, 196, 0.12);
}
.faq__item {
  border-bottom: 1px solid rgba(232, 220, 196, 0.12);
}
.faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--bone);
  cursor: pointer;
  transition: color 240ms;
}
.faq__q:hover { color: var(--gold); }
.faq__icon {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 28px;
  font-weight: 300;
  transition: transform 400ms var(--ease-out);
  font-family: var(--font-body);
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms var(--ease-out);
}
.faq__a-inner {
  padding: 0 0 28px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--stone-300);
  max-width: 720px;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background: var(--ink-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-final__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(180deg, rgba(9,9,15,0.82) 0%, rgba(9,9,15,0.70) 50%, rgba(9,9,15,0.97) 100%),
    url('assets/cta-miami.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: saturate(0.85) contrast(1.05);
}
@media (max-width: 768px) {
  .cta-final__bg { background-attachment: scroll; }
}
.cta-final__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(201, 164, 94, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.cta-final__inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.028em;
  margin: 0 0 32px;
}
.cta-final__sub {
  font-size: 19px;
  color: var(--stone-300);
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final__trust {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--stone-400);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink-deep);
  padding: 80px var(--gutter) 32px;
  border-top: 1px solid rgba(232, 220, 196, 0.1);
}
.footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand img { height: 32px; margin-bottom: 18px; }
.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--stone-300);
  line-height: 1.5;
  max-width: 280px;
}
.footer__col-title {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__list a {
  font-size: 14px;
  color: var(--stone-300);
  transition: color 240ms;
}
.footer__list a:hover { color: var(--gold); }
.footer__note {
  font-size: 12px;
  line-height: 1.6;
  color: var(--stone-400, #8E8A82);
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(232, 220, 196, 0.08);
  font-style: italic;
  max-width: 260px;
}
.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 220, 196, 0.08);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--stone-500);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 70;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s var(--ease-out);
}
.whatsapp-fab:hover { transform: scale(1.1); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: white; }

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.sticky-cta {
  display: none;
}
@media (max-width: 768px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 75;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(5, 13, 26, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(232, 220, 196, 0.18);
  }
  .sticky-cta button {
    width: 100%;
    background: var(--gold);
    color: var(--ink-deep);
    border: none;
    padding: 16px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 11px;
  }
  body { padding-bottom: 80px; }
}

/* ============================================================
   REVEAL CLASSES (gsap targets, just initial state)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal-text-mask { overflow: hidden; }
.reveal-text-mask > * { display: inline-block; transform: translateY(110%); }


/* ============================================================
   REDUCED MOTION — respeta preferencia del sistema
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track { animation: none; }
}


/* ── View Transitions (MPA) — fundido nativo entre páginas del sitio ── */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation-duration: 240ms; }
::view-transition-new(root) { animation-duration: 300ms; }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}
