/* =============================================================
   WE ADVISE — Editorial corporativo · navy + off-white + oro
   1. Tokens
   ============================================================= */
:root {
  --navy:      #0a1f33;   /* primary deep navy */
  --navy-2:    #071726;   /* deeper */
  --navy-3:    #12293f;   /* raised navy card */
  --paper:     #f7f5f1;   /* warm off-white */
  --paper-2:   #efece5;
  --white:     #ffffff;
  --ink:       #14202b;   /* text on light */
  --ink-2:     #47566180;
  --ink-soft:  #4a5761;
  --cream:     #eef0f2;   /* text on dark */
  --cream-2:   #b9c2cc;
  --cream-3:   #7d8b98;
  --gold:      #c6a15b;   /* brand accent */
  --gold-2:    #b0894a;
  --gold-soft: rgba(198,161,91,.14);
  --line-d:    rgba(238,240,242,.16);   /* on dark */
  --line-l:    rgba(20,32,43,.14);      /* on light */

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --pad: clamp(1.2rem, 5vw, 6rem);
  --maxw: 1280px;
}

/* 2. Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; overflow-x: clip; scroll-behavior: smooth; }
body {
  font-family: var(--sans); font-size: 16px; line-height: 1.65;
  color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: clip; overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.015em; font-weight: 400; }
::selection { background: var(--gold); color: var(--navy); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.skip-link { position: fixed; top: -100px; left: 1rem; padding: .6rem 1rem; background: var(--gold); color: var(--navy); z-index: 9999; border-radius: 6px; font-weight: 600; }
.skip-link:focus { top: 1rem; }

/* 3. Type helpers */
.eyebrow { font-family: var(--sans); font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 1.3rem; }
.eyebrow--light { color: var(--gold); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--ink-soft); max-width: 54ch; margin-top: 1.4rem; line-height: 1.6; }
em { font-family: var(--serif); font-style: italic; color: var(--gold-2); }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
[data-reveal] { opacity: 0; transform: translateY(26px) scale(.99); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
[data-reveal].is-revealed { opacity: 1; transform: none; }

h1.hero-title { font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -0.02em; font-weight: 400; }
h2 { font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.6rem); }
.split-line { display: block; overflow: hidden; }
.split-line > span { display: block; will-change: transform; }

/* 4. Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; padding: .95rem 1.7rem; border-radius: 2px; font-weight: 500; font-size: .95rem; letter-spacing: .01em; transition: background .3s var(--ease-out), color .3s var(--ease-out), border-color .3s, transform .3s var(--ease-out); border: 1px solid transparent; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); }
.btn-line-light { border-color: var(--line-d); color: var(--cream); }
.btn-line-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; }
.btn-check { width: 20px; height: 20px; opacity: 0; transform: scale(.4); transition: opacity .3s, transform .3s var(--ease-out); }
.btn.is-sent { background: #1d3a2a; color: #8fe6b4; }
.btn.is-sent .btn-check { opacity: 1; transform: scale(1); }

/* 5. Splash */
.splash { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; background: var(--navy); animation: splashSafety .01s 4.5s forwards; }
.splash-inner { display: grid; gap: 1.1rem; justify-items: center; }
.splash-logo { width: min(240px, 60vw); height: auto; }
.splash-line { width: 0; height: 2px; background: var(--gold); animation: splashGrow 1.6s var(--ease-out) forwards; }
@keyframes splashGrow { to { width: min(240px, 60vw); } }
.splash.is-out { opacity: 0; pointer-events: none; transition: opacity .7s var(--ease-out); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; visibility: hidden; } }

/* 6. Nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 900; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem var(--pad); transition: background .4s var(--ease-out), padding .4s, border-color .4s; border-bottom: 1px solid transparent; }
.nav.is-stuck { background: rgba(10,31,51,.9); backdrop-filter: blur(12px) saturate(140%); -webkit-backdrop-filter: blur(12px) saturate(140%); border-bottom-color: var(--line-d); padding-block: .85rem; }
.nav-brand img { height: 24px; width: auto; }
.nav-links { display: none; gap: 2rem; }
.nav-links a { font-size: .9rem; color: var(--cream-2); position: relative; padding: .2rem 0; letter-spacing: .01em; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 0; background: var(--gold); transition: width .35s var(--ease-out); }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: none; padding: .6rem 1.3rem; }
.nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: .5rem; }
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); transition: transform .35s var(--ease-out), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer { position: fixed; inset: 0; z-index: 890; background: rgba(7,23,38,.98); backdrop-filter: blur(8px); display: flex; flex-direction: column; justify-content: center; gap: .3rem; padding: var(--pad); transform: translateY(-100%); transition: transform .5s var(--ease-out); }
.nav-drawer.is-open { transform: translateY(0); }
.nav-drawer a { font-family: var(--serif); font-size: clamp(1.8rem, 7vw, 2.6rem); color: var(--cream); padding: .3rem 0; border-bottom: 1px solid var(--line-d); }
.nav-drawer a:hover { color: var(--gold); padding-left: .5rem; }

/* 7. Hero */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; padding: 8rem var(--pad) 4rem; background: var(--navy); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform-origin: 60% 45%; animation: kenburns 28s ease-in-out infinite alternate; will-change: transform; }
@keyframes kenburns {
  0%   { transform: scale(1.08) translate3d(0, 0, 0); }
  100% { transform: scale(1.2) translate3d(-2.5%, -2%, 0); }
}
.hero-tint { position: absolute; inset: 0; background: linear-gradient(100deg, var(--navy) 0%, rgba(10,31,51,.9) 42%, rgba(10,31,51,.55) 100%), linear-gradient(0deg, var(--navy) 2%, transparent 45%); }
.hero-inner { position: relative; z-index: 3; max-width: var(--maxw); width: 100%; margin: 0 auto; }
.hero-title { color: var(--white); max-width: 17ch; margin-bottom: 1.8rem; }
.hero-sub { color: var(--cream-2); max-width: 50ch; font-size: clamp(1.05rem, 1.5vw, 1.28rem); line-height: 1.6; margin-bottom: 2.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* 8. Stats */
.stats { background: var(--navy-2); color: var(--cream); padding: clamp(3rem, 6vw, 4.5rem) var(--pad); border-top: 1px solid var(--line-d); }
.stats-inner { max-width: var(--maxw); margin: 0 auto; display: grid; gap: 2.4rem; }
.stat { display: flex; flex-direction: column; gap: .6rem; padding-left: 1.5rem; border-left: 2px solid var(--gold); }
.stat-n { font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 4rem); line-height: 1; color: var(--white); }
.stat-deg { color: var(--gold); }
.stat-label { color: var(--cream-2); font-size: .96rem; }
.stat-label small { color: var(--cream-3); font-size: .82rem; }

/* 9. Section shells */
section { padding: clamp(4rem, 9vw, 7.5rem) var(--pad); }
.section-head { max-width: var(--maxw); margin: 0 auto clamp(2.4rem, 5vw, 3.8rem); }

/* 10. La firma */
.firma { background: var(--paper); }
.firma-grid { max-width: var(--maxw); margin: 0 auto; display: grid; gap: 2.6rem; align-items: center; }
.firma-team { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.firma-team li { font-size: .82rem; letter-spacing: .04em; color: var(--ink-soft); border: 1px solid var(--line-l); border-radius: 100px; padding: .45rem .95rem; }
.firma-figure { border-radius: 3px; overflow: hidden; }
.firma-figure img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* 11. Enfoques */
.enfoques { background: var(--navy); color: var(--cream); }
.enfoques .section-head { color: var(--cream); }
.enfoques h2 { color: var(--white); }
.enfoque-list { max-width: var(--maxw); margin: 0 auto; display: grid; gap: 1.4rem; }
.enfoque { border: 1px solid var(--line-d); border-radius: 3px; overflow: hidden; background: var(--navy-3); transition: border-color .4s, transform .4s var(--ease-out); }
.enfoque:hover { border-color: var(--gold); transform: translateY(-4px); }
.enfoque-media { aspect-ratio: 16/10; overflow: hidden; }
.enfoque-media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.82) saturate(1.02); transition: transform .8s var(--ease-out), filter .5s; }
.enfoque:hover .enfoque-media img { transform: scale(1.05); filter: brightness(.95); }
.enfoque-body { padding: 1.6rem; }
.enfoque-idx { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.1rem; }
.enfoque-body h3 { color: var(--white); margin: .3rem 0 .6rem; }
.enfoque-body p { color: var(--cream-2); font-size: .95rem; }

/* 12. Servicios */
.servicios { background: var(--paper); }
.serv-list { max-width: var(--maxw); margin: 0 auto; list-style: none; display: grid; gap: 0; }
.serv { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; padding: 2rem 0; border-top: 1px solid var(--line-l); transition: background .3s; }
.serv:last-child { border-bottom: 1px solid var(--line-l); }
.serv:hover { background: var(--paper-2); }
.serv-n { font-family: var(--serif); font-style: italic; color: var(--gold-2); font-size: 1.3rem; padding-top: .2rem; }
.serv h3 { margin-bottom: .4rem; }
.serv p { color: var(--ink-soft); max-width: 60ch; }

/* 13. Presencia */
.presencia { position: relative; color: var(--cream); background: var(--navy-2); overflow: hidden; }
.presencia-bg { position: absolute; inset: 0; z-index: 0; }
.presencia-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.3) brightness(.4); }
.presencia-tint { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,23,38,.7), rgba(7,23,38,.92)); }
.presencia-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; }
.presencia h2 { color: var(--white); }
.office-grid { display: grid; gap: 1px; margin-top: clamp(2rem, 5vw, 3.4rem); background: var(--line-d); border: 1px solid var(--line-d); }
.office { background: rgba(7,23,38,.5); padding: 1.8rem; display: flex; flex-direction: column; gap: .3rem; transition: background .35s; }
.office:hover { background: var(--gold); }
.office:hover .office-city, .office:hover .office-country { color: var(--navy); }
.office-city { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--white); transition: color .35s; }
.office-country { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-3); transition: color .35s; }

/* 14. Sociedades */
.sociedades { background: var(--paper); }
.soc-grid { max-width: var(--maxw); margin: 0 auto; display: grid; gap: 2.6rem; align-items: center; }
.soc-figure { border-radius: 3px; overflow: hidden; }
.soc-figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.soc-points { list-style: none; margin-top: 1.8rem; display: grid; gap: .9rem; }
.soc-points li { position: relative; padding-left: 1.6rem; color: var(--ink-soft); }
.soc-points li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }

/* 15. Contacto */
.contacto { background: var(--navy); color: var(--cream); }
.contacto h2 { color: var(--white); }
.contacto-inner { max-width: var(--maxw); margin: 0 auto; display: grid; gap: 2.8rem; }
.contacto-data { list-style: none; margin-top: 2.2rem; display: grid; gap: 1.1rem; }
.contacto-data li { display: grid; gap: .15rem; border-top: 1px solid var(--line-d); padding-top: 1rem; }
.contacto-data span { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-3); }
.contacto-data a { font-size: 1.05rem; color: var(--cream); }
.contacto-data a[href]:hover { color: var(--gold); }
.contacto-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .8rem; color: var(--cream-3); letter-spacing: .02em; }
.field input, .field select, .field textarea { font: inherit; font-size: .95rem; color: var(--white); background: var(--navy-3); border: 1px solid var(--line-d); border-radius: 2px; padding: .8rem .9rem; transition: border-color .3s, box-shadow .3s; width: 100%; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c6a15b' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }
.contacto-legal { grid-column: 1 / -1; font-size: .76rem; color: var(--cream-3); text-align: center; margin-top: .2rem; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* 16. Footer */
.footer { background: var(--navy-2); color: var(--cream-2); padding: clamp(3rem, 6vw, 4.5rem) var(--pad) 2rem; border-top: 1px solid var(--line-d); }
.footer-top { max-width: var(--maxw); margin: 0 auto; display: grid; gap: 2.2rem; }
.footer-brand img { height: 30px; width: auto; }
.footer-tag { margin-top: 1rem; color: var(--cream-3); max-width: 42ch; font-size: .92rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1rem 1.7rem; }
.footer-nav a { color: var(--cream-2); font-size: .92rem; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact { display: grid; gap: .5rem; }
.footer-contact a { font-size: .92rem; color: var(--cream-2); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { max-width: var(--maxw); margin: 2.6rem auto 0; padding-top: 1.6rem; border-top: 1px solid var(--line-d); display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; color: var(--cream-3); font-size: .82rem; }

/* 16b. WhatsApp bubble */
.wa-bubble {
  position: fixed; z-index: 950; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  display: inline-flex; align-items: center; gap: .55rem;
  height: 56px; padding: 0 16px; border-radius: 100px;
  background: #25d366; color: #fff;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.25);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.wa-bubble svg { width: 26px; height: 26px; flex: none; }
.wa-label { font-weight: 600; font-size: .92rem; max-width: 0; overflow: hidden; white-space: nowrap; opacity: 0; transition: max-width .4s var(--ease-out), opacity .3s, margin .4s var(--ease-out); }
.wa-bubble:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -8px rgba(37,211,102,.6), 0 6px 16px rgba(0,0,0,.3); }
.wa-bubble:hover .wa-label { max-width: 120px; opacity: 1; }
.wa-bubble::after { content: ""; position: absolute; inset: 0; border-radius: 100px; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: waPulse 2.6s var(--ease-out) infinite; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@media (prefers-reduced-motion: reduce) { .wa-bubble::after { animation: none; } }

/* 17. Responsive */
@media (min-width: 720px) {
  .stats-inner { grid-template-columns: repeat(3, 1fr); }
  .enfoque-list { grid-template-columns: repeat(2, 1fr); }
  .office-grid { grid-template-columns: repeat(2, 1fr); }
  .contacto-form { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .firma-grid { grid-template-columns: 1.1fr .9fr; gap: 4rem; }
  .soc-grid { grid-template-columns: .9fr 1.1fr; gap: 4rem; }
  .enfoque-list { grid-template-columns: repeat(4, 1fr); }
  .office-grid { grid-template-columns: repeat(4, 1fr); }
  .contacto-inner { grid-template-columns: 1fr 1fr; align-items: start; }
  .serv { grid-template-columns: auto 1fr; gap: 3rem; }
}

/* 18. Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .splash-line { animation-duration: .01s; }
  .hero-bg img { animation: none; transform: scale(1.08); }
}

/* =============================================================
   19. HERO "liquid glass" con fondo de ciudades (variante v2)
   ============================================================= */
.liquid-glass {
  background: rgba(0, 0, 0, 0.4);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.1) 80%, rgba(255,255,255,0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}

/* Navbar flotante */
.nav-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 900; padding: 1.5rem clamp(1.2rem, 5vw, 4rem) 0; }
.glass-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-radius: 14px; padding: .6rem .7rem .6rem 1.1rem; max-width: var(--maxw); margin: 0 auto; }
.gnav-brand img { height: 22px; width: auto; display: block; }
.gnav-links { display: none; gap: 2rem; }
.gnav-links a { font-size: .88rem; color: var(--cream); opacity: .92; transition: color .3s, opacity .3s; }
.gnav-links a:hover { color: #d1d5db; }
.gnav-cta { display: none; background: #fff; color: #000; padding: .6rem 1.3rem; border-radius: 10px; font-size: .85rem; font-weight: 500; transition: background .3s; }
.gnav-cta:hover { background: #e9e9e9; }
.glass-nav .nav-toggle span { background: #fff; }

/* Hero full-screen */
.vhero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; background: #000; overflow: hidden; isolation: isolate; }
.vhero-media { position: absolute; inset: 0; z-index: 0; }
.vhero-slide { position: absolute; inset: 0; opacity: 0; animation: cityCycle 24s linear infinite; }
.vhero-slide img { width: 100%; height: 100%; object-fit: cover; animation: vKenburns 24s ease-in-out infinite alternate; will-change: transform; }
.vhero-scrim { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,0) 26%, rgba(0,0,0,0) 48%, rgba(0,0,0,.5) 100%),
  linear-gradient(75deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 55%); }
@keyframes cityCycle { 0% { opacity: 0; } 4% { opacity: 1; } 30% { opacity: 1; } 36% { opacity: 0; } 100% { opacity: 0; } }
@keyframes vKenburns { 0% { transform: scale(1.06) translate3d(0,0,0); } 100% { transform: scale(1.16) translate3d(-2%,-1.5%,0); } }

.vhero-body { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 clamp(1.2rem, 5vw, 4rem) clamp(2.5rem, 5vw, 4rem); }
.vhero-grid { max-width: var(--maxw); width: 100%; margin: 0 auto; display: grid; gap: 2rem; }
.vhero-left { min-width: 0; }
.vhero-h { font-family: var(--serif); color: #fff; font-weight: 400; letter-spacing: -0.02em; line-height: 1.04; font-size: clamp(2.5rem, 6vw, 4.8rem); margin-bottom: 1.1rem; }
.vhero-h .hl { display: block; }
.vhero-h .ch { display: inline-block; opacity: 0; transform: translateX(-18px); transition: opacity .5s ease, transform .5s ease; }
.vhero-h.is-in .ch { opacity: 1; transform: none; }
.vhero-sub { color: #d1d5db; font-size: clamp(1rem, 1.4vw, 1.22rem); max-width: 46ch; margin-bottom: 1.6rem; line-height: 1.5; }
.vhero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.v-btn { display: inline-flex; align-items: center; justify-content: center; padding: .85rem 2rem; border-radius: 10px; font-weight: 500; font-size: .95rem; transition: background .3s, color .3s, transform .3s var(--ease-out); }
.v-btn--solid { background: #fff; color: #000; }
.v-btn--solid:hover { background: #e9e9e9; transform: translateY(-2px); }
.v-btn--glass { color: #fff; }
.v-btn--glass:hover { background: #fff; color: #000; transform: translateY(-2px); }
.v-btn--glass:hover::before { opacity: 0; }
.vhero-right { display: flex; align-items: flex-end; justify-content: flex-start; }
.vhero-tag { padding: .85rem 1.5rem; border-radius: 14px; color: #fff; font-weight: 300; font-size: clamp(1.05rem, 1.8vw, 1.5rem); letter-spacing: -0.01em; }

/* Fade-in genérico */
[data-fade] { opacity: 0; transition: opacity var(--fade-dur, 1000ms) ease; }
[data-fade].is-in { opacity: 1; }

@media (min-width: 720px) {
  .gnav-links { display: flex; }
  .gnav-cta { display: inline-flex; }
  .glass-nav .nav-toggle { display: none; }
}
@media (min-width: 1024px) {
  .vhero-grid { grid-template-columns: 1fr 1fr; align-items: end; }
  .vhero-right { justify-content: flex-end; }
}
@media (prefers-reduced-motion: reduce) {
  .vhero-slide img { animation: none; transform: scale(1.06); }
  .vhero-slide { animation-duration: 48s; }
}

/* Ajustes hero v2: palabras sin cortar + columna del título más ancha */
.vhero-h .wd { display: inline-block; white-space: nowrap; }
.vhero-h { font-size: clamp(2.2rem, 5.2vw, 4rem); }
@media (min-width: 1024px) {
  .vhero-grid { grid-template-columns: 1.4fr 0.6fr; }
}

/* Animación de letras del hero v2 (keyframes — robusto en preview) */
@keyframes chIn { from { opacity: 0; transform: translateX(-18px); } to { opacity: 1; transform: translateX(0); } }
