:root{
  --navy:#1A1A2E;
  --navy-brand:#1E3A8A;
  --navy-deep:#142a66;
  --sky:#38B6FF;
  --sky-soft:#7FD0FF;
  --silver:#A9ABB0;
  --bg-tint:#F5F7FA;
  --green:#2D7A3A;
  --green-soft:#E6F4E8;
  --orange:#FF6B35;
  --orange-deep:#E85A26;
  --white:#FFFFFF;
  --wa-green:#25D366;
  --hero-bg:#080D1A;
  --cielos-bg:#0a1638;
  --dot-green:#5FDC7D;
  --line:rgba(26,26,46,0.08);
  --shadow-card: 0 1px 2px rgba(26,26,46,0.04), 0 8px 24px rgba(26,26,46,0.06);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*{ box-sizing:border-box; margin:0; padding:0; }
html,body{ overflow-x: hidden; }
body{
  font-family: 'Barlow', system-ui, sans-serif;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
h1,h2,h3,h4{
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
body, p, li, a, span, div { font-weight: 400; }
strong, b { font-weight: 700; }
a{ color: inherit; text-decoration: none; }
img{ max-width:100%; display:block; }
button{ font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.container{ width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* ===== NAV ===== */
.nav{
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 96px;
}
.brand{ display:inline-flex; align-items:center; gap:10px; font-family:'Plus Jakarta Sans'; font-weight:800; letter-spacing:-0.01em; font-size:22px; color:var(--navy); justify-self: start; }
.nav-links{ display:flex; gap:32px; align-items:center; }
.nav-links a{
  font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy); opacity: .72;
  transition: opacity .2s var(--ease), color .2s var(--ease);
}
.nav-links a:hover{ opacity:1; color: var(--sky); }
.nav-cta{
  display:inline-flex; align-items:center; gap:8px;
  background: var(--orange); color: white;
  padding: 10px 18px; border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform .16s var(--ease), background .16s var(--ease), box-shadow .16s var(--ease);
  box-shadow: 0 4px 14px rgba(255,107,53,0.28);
  justify-self: end;
}
.nav-cta:hover{ background: var(--orange-deep); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255,107,53,0.36); }
.hamburger{ display:none; width:44px; height:44px; border-radius:8px; border:1px solid var(--line); align-items:center; justify-content:center; }
.hamburger span{ width:18px; height:2px; background: var(--navy); position: relative; }
.hamburger span::before, .hamburger span::after{ content:""; position:absolute; left:0; width:18px; height:2px; background: var(--navy); }
.hamburger span::before{ top:-6px; }
.hamburger span::after{ top:6px; }

/* ===== HERO ===== */
.hero{
  position: relative;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #2a4ea8 0%, #1E3A8A 45%, #142a66 100%);
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.hero h1{
  color: white;
  font-size: clamp(40px, 6vw, 76px);
  margin: 24px 0 28px;
  max-width: 18ch;
}
.hero h1 .accent{ color: var(--sky); }
.hero h1 .word{
  display:inline-block;
  transform: translateY(24px);
  opacity: 0;
  will-change: transform, opacity;
}
.hero h1.reveal .word{ animation: wordUp .7s var(--ease) forwards; }
@keyframes wordUp{ to{ transform: translateY(0); opacity: 1; } }
.btn-primary{
  display:inline-flex; align-items:center; gap:10px;
  background: var(--orange); color: white;
  padding: 18px 26px; border-radius: 8px;
  font-weight: 800; font-size: 16px;
  min-height: 56px;
  box-shadow: 0 10px 28px rgba(255,107,53,0.4), inset 0 -2px 0 rgba(0,0,0,0.08);
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-primary:hover{ background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(255,107,53,0.5); }
.btn-primary svg{ width: 20px; height: 20px; }
.btn-ghost{
  display:inline-flex; align-items:center; gap:8px;
  color: white; font-weight: 700; font-size: 15px;
  padding: 16px 4px; min-height:48px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: border-color .2s var(--ease);
}
.btn-ghost:hover{ border-color: white; }

/* ===== SECTIONS COMMON ===== */
section{ position: relative; }
.section{ padding: 120px 0; }
.section-head{ max-width: 720px; margin-bottom: 64px; }
.kicker{
  font-family:'Barlow'; font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy-brand);
  margin-bottom: 16px;
  display:inline-flex; align-items:center; gap:10px;
}
.kicker::before{ content:""; width: 22px; height: 1px; background: var(--navy-brand); }
.section h2{ font-size: clamp(32px, 4.2vw, 52px); margin-bottom: 18px; }
.section .lede{ font-size: 17px; color: rgba(26,26,46,0.7); max-width: 56ch; }
.reveal-up{ opacity: 0; transform: translateY(32px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.reveal-up.in{ opacity: 1; transform: translateY(0); }
.stagger > *{ opacity: 0; transform: translateY(32px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.stagger.in > *{ opacity: 1; transform: translateY(0); }

/* ===== UBICACIONES ===== */
.section-eyebrow{
  font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(26,26,46,0.45);
  margin-bottom: 14px;
}
.ubicaciones{ background: var(--bg-tint); }
.ubicaciones .section-head{
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 52px;
}
.ubicaciones .section-head h2{ font-size: clamp(34px, 4.4vw, 56px); margin-bottom: 20px; }
.ubicaciones .section-head .lede{ margin: 0 auto; max-width: 54ch; }
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card{
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform .12s var(--ease), box-shadow .12s var(--ease), border-color .12s var(--ease);
  cursor: pointer;
  display:flex; flex-direction: column;
}
.card:hover{
  transform: translateY(-4px);
  border-color: rgba(56,182,255,0.5);
  box-shadow: 0 0 0 3px rgba(56,182,255,0.15), 0 18px 40px rgba(26,26,46,0.12);
}
.card .ph{
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: #e3e7df;
}
.card .ph img{
  width:100%; height:100%;
  object-fit:cover; object-position: center;
  filter: brightness(0.90);
  transition: filter .4s var(--ease);
}
.card:hover .ph img{ filter: brightness(1.05) saturate(1.08); }
.card .ph .dim{
  position:absolute; top:14px; right:14px; z-index:1;
  background: white; border: 1px solid var(--line);
  padding: 5px 9px; border-radius: 6px;
  font-family:'Barlow'; font-size: 11px; font-weight: 700; color: var(--navy);
}
.card-body{ padding: 22px 22px 24px; display:flex; flex-direction:column; gap: 10px; flex:1; }
.card-loc{ display:flex; align-items:center; gap: 8px; color: var(--navy-brand); font-weight: 700; font-size: 13px; letter-spacing: .04em; }
.card-loc svg{ width:14px; height:14px; }
.card h3{ font-size: 22px; line-height: 1.15; }
.card-desc{ color: rgba(26,26,46,0.82); font-size: 14.5px; }
.card-foot{
  display:flex; justify-content: center; align-items: center;
  padding-top: 14px; margin-top: auto;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.card-foot .specs{ color: rgba(26,26,46,0.80); font-weight: 600; }
.card-foot .specs strong{ color: var(--navy); font-weight: 700; }

/* ===== RECICLAJE BANNER ===== */
.reciclaje{
  background: var(--navy-brand);
  color: white;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.reciclaje::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(45,122,58,0.32) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(56,182,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.reciclaje-inner{
  position: relative;
  display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center;
}
.recycle-mark{
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(45,122,58,0.45), inset 0 0 0 1px rgba(255,255,255,0.12);
}
.recycle-mark svg{ width: 42px; height: 42px; color: white; }
.reciclaje h3{ color: white; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.18; margin-bottom: 8px; max-width: 32ch; }
.reciclaje h3 .hi{ color: #9EE3A8; }
.reciclaje p{ color: rgba(255,255,255,0.78); font-size: 15.5px; max-width: 60ch; }
.reciclaje .badge-tag{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(45,122,58,0.22);
  border: 1px solid rgba(158,227,168,0.32);
  border-radius: 999px;
  color: #C8F0CC;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap;
}

/* ===== CIELOS DEL NORTE ===== */
.cielos{ background: #080A12; color: white; overflow: hidden; position: relative; }
.cielos .stars{ position:absolute; inset:0; pointer-events:none; }
.cielos::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 30%, rgba(30,58,138,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 65% 50% at 85% 70%, rgba(56,182,255,0.1) 0%, transparent 60%);
  pointer-events:none;
}
.cielos-inner{ position:relative; z-index:1; padding: 96px 0; display:grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.cielos .kicker{ color: var(--sky); }
.cielos .kicker::before{ background: var(--sky); }
.cielos h2{ color: white; max-width: 18ch; font-size: clamp(26px, 3.2vw, 44px); }
.cielos .lede-block{ max-width: 56ch; margin-top: 20px; }
.cielos .lede-block p{ color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.65; }
.cielos p{ color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.65; }
.cielos-copy > p{ margin-top: 22px; }
.cielos .opcc-link{
  display:inline-flex; align-items:center; gap: 8px;
  margin-top: 28px;
  color: var(--sky); font-weight: 700; font-size: 15px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(56,182,255,0.4);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.cielos .opcc-link:hover{ color: white; border-color: white; }
.cielos-stat-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat{
  padding: 22px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
  cursor: default;
}
.stat:hover{
  transform: translateY(-5px);
  border-color: rgba(56,182,255,0.35);
  background: rgba(56,182,255,0.09);
}
.stat .num{ font-family:'Bebas Neue', 'Plus Jakarta Sans'; font-size: 52px; line-height: 1; color: var(--sky); letter-spacing: -0.01em; transition: text-shadow .25s var(--ease); }
.stat:hover .num{ text-shadow: 0 0 24px rgba(56,182,255,0.45); }
.stat .lbl{ margin-top: 10px; color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.5; }

/* ===== MARCAS ===== */
.marcas{ background: var(--bg-tint); padding-bottom: 56px; }
.marcas-marquee{
  margin-top: 52px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: white;
}
.marquee-row{
  display: flex;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.marquee-track{
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll var(--dur, 40s) linear infinite;
}
.marquee-row[data-dir="right"] .marquee-track{ animation-direction: reverse; }
.marquee-item{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 32px;
  border-right: 1px solid var(--line);
  height: 136px;
  flex-shrink: 0;
}
.marquee-item img{
  height: 122px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  filter: grayscale(1) opacity(0.55);
  transition: filter .1s ease;
}
.marquee-item:hover img{ filter: grayscale(0) opacity(1); }
.marquee-row:hover .marquee-track{ animation-play-state: paused; }
@keyframes marquee-scroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== CONTACTO ===== */
.contacto{
  background: var(--hero-bg);
  background-image:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(30,58,138,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 100%, rgba(56,182,255,0.07) 0%, transparent 60%);
  padding-top: 56px;
}
.contact-card{
  max-width: 720px; margin: 0 auto;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 56px 56px 48px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.07);
  text-align: center;
}
.contact-card .icon-circle{
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--wa-green);
  display: inline-grid; place-items: center;
  margin-bottom: 22px;
  box-shadow: 0 12px 28px rgba(37,211,102,0.35);
}
.contact-card .icon-circle svg{ width:32px; height:32px; color: white; }
.contact-card h2{ font-size: clamp(28px, 3.2vw, 38px); margin-bottom: 14px; color: white; }
.contact-card .sub{ color: rgba(255,255,255,0.65); font-size: 16px; margin-bottom: 32px; }
.contact-card .btn-primary{ width: 100%; justify-content: center; }
.contact-info{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.contact-tile{
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  text-align: left;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.contact-tile:hover{ border-color: rgba(56,182,255,0.35); background: rgba(255,255,255,0.09); }
.contact-tile .lbl{ font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 700; margin-bottom: 6px; }
.contact-tile .val{ font-weight: 700; color: white; font-size: 15.5px; }

/* ===== FOOTER ===== */
.footer{ background: var(--navy-brand); color: rgba(255,255,255,0.7); padding: 56px 0 28px; font-size: 15px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer .brand{ color: white; margin-bottom: 20px; }
.footer h4{ color: white; font-family:'Barlow'; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.footer-col p{ line-height: 1.6; max-width: 36ch; font-size: 15px; }
.footer-col a{ display:block; padding: 4px 0; color: rgba(255,255,255,0.75); transition: color .2s var(--ease); }
.footer-col a:hover{ color: var(--sky); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display:flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: rgba(255,255,255,0.80);
  font-size: 13px;
}
.footer-bottom a{ color: rgba(255,255,255,0.80); transition: color .2s var(--ease); }
.footer-bottom a:hover{ color: var(--sky); }

/* ===== FLOATING WA ===== */
.wa-float{
  position: fixed; right: 22px; bottom: 22px;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--wa-green);
  display:grid; place-items: center;
  color: white;
  box-shadow: 0 14px 36px rgba(37,211,102,0.4), 0 0 0 4px rgba(37,211,102,0.18);
  z-index: 100;
  transition: transform .2s var(--ease);
}
.wa-float:hover{ transform: scale(1.06); }
.wa-float::after{
  content:"";
  position:absolute; inset:0;
  border-radius:50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.45);
  animation: waPulse 2s ease-out infinite;
  pointer-events:none;
}
.wa-float svg{ width: 30px; height: 30px; }
@keyframes waPulse{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  70%{ box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px){
  .grid-3{ grid-template-columns: repeat(2, 1fr); }
  .cielos-inner{ grid-template-columns: 1fr; gap: 36px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .marquee-item{ padding: 18px 26px; height: 110px; }
  .marquee-item img{ height: 88px; width: auto; max-width: 230px; }
}
@media (max-width: 720px){
  .nav-inner{ grid-template-columns: 1fr auto; }
  .nav-links{ display:none; }
  .nav-links.open{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 96px; left: 0; right: 0;
    transform: none;
    background: #ffffff;
    padding: 4px 24px 20px;
    gap: 0;
    border-top: 2px solid var(--sky);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(26,26,46,0.14);
    z-index: 49;
  }
  .nav-links.open a{
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-family: 'Barlow', sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--navy); opacity: 1;
  }
  .nav-links.open a:last-child{ border-bottom: 0; }
  .nav-cta{ display:none; }
  .hamburger{ display:flex; }
  .section{ padding: 72px 0; }
  .reciclaje{ padding: 56px 0; }
  .reciclaje-inner{ grid-template-columns: 1fr; gap: 22px; text-align: left; }
  .reciclaje .badge-tag{ justify-self: start; }
  .cielos-inner{ padding: 88px 0; grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .marcas-marquee{ margin-top: 40px; }
  .marquee-item{ padding: 14px 20px; height: 100px; }
  .marquee-item img{ height: 78px; width: auto; max-width: 180px; }
  .cielos-stat-grid{ grid-template-columns: 1fr 1fr; }
  .contact-card{ padding: 36px 24px; border-radius: 22px; }
  .contact-info{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
  .container{ padding: 0 20px; }
  .wa-float{ width: 56px; height: 56px; right: 16px; bottom: 16px; }
}
@media (max-width: 480px){
  .btn-primary{ width: 100%; justify-content: center; }
  .hero h1{ font-size: 36px; max-width: 14ch; line-height: 1.1; }
  .nav-cta{ padding: 12px 16px; min-height: 44px; }
  .reciclaje-inner{ text-align: center; justify-items: center; }
  .reciclaje .badge-tag{ justify-self: center; }
  .cielos-inner{ padding: 40px 20px; }
  .cielos-copy{ text-align: center; }
  .cielos .kicker{ justify-content: center; }
  .cielos .opcc-link{ justify-content: center; }
  .stat{ text-align: center; }
  .stat .num{ font-size: 51px; }
  .stat .lbl{ font-size: 14px; }
  .footer .brand{ display: flex; justify-content: center; }
}

/* ============================================================
   HERO V2 — Editorial: mosaico de fotos + ticker
   ============================================================ */
.hero-v2{
  background: var(--hero-bg);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 0;
}
/* Fondo: cuadrícula sutil + gradientes */
.hero-v2-bg{ position:absolute; inset:0; pointer-events:none; }
.hero-v2-grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(56,182,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,182,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 60% 30%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 60% 30%, black 0%, transparent 75%);
}
.hero-v2-gradient{
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 65% 55% at 75% 50%, rgba(30,58,138,0.42) 0%, transparent 65%),
    radial-gradient(ellipse 45% 70% at 5% 15%, rgba(56,182,255,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(8,13,26,0.9) 0%, transparent 60%);
}

/* Layout principal: 2 columnas */
.hero-v2-inner{
  position:relative; z-index:1;
  flex:1;
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 72px;
}


/* H1 oversize */
.hero-v2 h1{
  color: white;
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
  max-width: 17ch;
}
.hero-v2 .accent{
  color: transparent;
  -webkit-text-stroke: 2px var(--sky);
}
/* Asegurar que la animación word-by-word del JS siga funcionando */
.hero-v2 h1.reveal .word{ animation: wordUp .7s var(--ease) forwards; }

/* Lede */
.hero-v2-lede{
  color: rgba(255,255,255,0.65);
  font-size: 19px; line-height: 1.68;
  max-width: 50ch;
  margin-bottom: 40px;
}

/* CTAs */
.hero-v2-ctas{
  display:flex; align-items:center; gap:20px; flex-wrap:wrap;
  margin-bottom: 0;
}

/* ---- Mosaico de fotos ---- */
.hero-v2-visual{
  position:relative;
  height: 600px;
  /* desplazamiento sutil hacia abajo para compensar el badge en el copy */
  margin-top: 56px;
}
.v2-photo-glow{
  position:absolute; width: 90%; height: 80%;
  top: 10%; left: 5%;
  background: radial-gradient(ellipse, rgba(56,182,255,0.2) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events:none;
}
.v2-photo{
  position:absolute;
  border-radius: 14px;
  overflow: hidden;
  background: var(--hero-bg);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.3),
    0 20px 56px rgba(0,0,0,0.55);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.v2-photo::after{
  content:"";
  position:absolute; inset:0;
  border-radius: 14px;
  border: 1px solid rgba(56,182,255,0.2);
  pointer-events:none;
  z-index: 5;
  transition: border-color .4s var(--ease);
}
.v2-photo img,
.v2-photo video{
  width:100%; height:100%;
  object-fit:cover; display:block;
  border-radius: inherit;
}
.v2-photo--a:hover{
  transform: rotate(-1.8deg) scale(1.03);
  box-shadow: 0 28px 72px rgba(0,0,0,0.65);
  z-index: 10;
}
.v2-photo--b:hover{
  transform: rotate(1.8deg) scale(1.03);
  box-shadow: 0 28px 72px rgba(0,0,0,0.65);
  z-index: 10;
}
.v2-photo--a:hover::after,
.v2-photo--b:hover::after{
  border-color: rgba(56,182,255,0.45);
}

/* Foto A — dominante, ocupa la mitad superior izquierda */
.v2-photo--a{
  top: 0; left: 0;
  width: 82%; height: 66%;
  transform: rotate(-1.8deg);
  z-index: 3;
}
/* Foto B — secundaria, esquina inferior derecha, se superpone */
.v2-photo--b{
  bottom: 0; right: 0;
  width: 66%; height: 58%;
  transform: rotate(1.8deg);
  z-index: 2;
}
/* Foto C — oculta en este layout de 2 fotos */
.v2-photo--c{ display:none; }

/* Tag de ubicación en cada foto */
.v2-photo-tag{
  position:absolute; bottom:10px; left:10px;
  background: rgba(8,13,26,0.82);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.88);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 5px;
}

/* ---- Ticker de ubicaciones ---- */
.hero-v2-ticker{
  position:relative; z-index:2;
  background: rgba(56,182,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.07);
  height: 48px;
  overflow: hidden;
  display:flex; align-items:center;
}
.v2-ticker-track{
  display:inline-flex; align-items:center; gap:28px;
  white-space: nowrap;
  font-family: 'Barlow', sans-serif;
  color: #ffffff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  animation: v2TickerScroll 32s linear infinite;
  will-change: transform;
}
.v2-ticker-sep{
  color: var(--sky);
  font-size: 7px;
  opacity: 0.5;
}
@keyframes v2TickerScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.hero-v2-ticker:hover .v2-ticker-track{ animation-play-state: paused; }

/* ---- Responsive V2 ---- */
@media (max-width: 1100px){
  .hero-v2-inner{ grid-template-columns: 1fr; gap:40px; padding-top:64px; padding-bottom:48px; align-items:start; }
  .hero-v2-visual{ height: 460px; max-width: 560px; width:100%; margin:24px auto 0; }
  .v2-photo--a{ width:78%; height:64%; }
  .v2-photo--b{ width:64%; height:56%; }
}
@media (max-width: 720px){
  .hero-v2 h1{ font-size: 44px; max-width: 15ch; }
  .hero-v2-lede{ font-size: 17px; }
  .hero-v2-visual{ height: 380px; margin-top: 16px; }
}
@media (max-width: 480px){
  .hero-v2-ctas{ flex-direction: column; align-items: stretch; }
  .hero-v2-ctas .btn-primary{ justify-content: center; }
  .hero-v2-ctas .btn-ghost{ justify-content: center; font-size: 17px; }
  .hero-v2 h1{ font-size: 40px; }
  .hero-v2-lede{ font-size: 16px; }
  .hero-v2-visual{ height: 320px; }
}

/* ============================================================
   UBICACIONES V2 — CONCEPTO ALTERNATIVO (solo evaluación)
   ============================================================ */

.ub2{
  background: var(--bg-tint);
  overflow: hidden;
  position: relative;
}

/* Aviso de evaluación */
.ub2-notice{
  text-align: center;
  padding: 10px 16px;
  background: rgba(255,107,53,0.08);
  border-bottom: 1px solid rgba(255,107,53,0.18);
  color: #FF6B35;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Header */
.ub2-header{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 80px;
  padding-bottom: 56px;
  gap: 48px;
}
.ub2-kicker{
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,26,46,0.65);
  margin-bottom: 18px;
}
.ub2-title{
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin: 0;
}
.ub2-title em{
  font-style: normal;
  color: var(--sky);
}
.ub2-desc{
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(26,26,46,0.72);
  max-width: 30ch;
  text-align: right;
  margin: 0;
  align-self: flex-end;
}

/* ---- Strip de cards acordeón ---- */
.ub2-strip{
  display: flex;
  height: 520px;
  border-top: 1px solid rgba(26,26,46,0.08);
  border-bottom: 1px solid rgba(26,26,46,0.08);
}

.ub2-card{
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
  border-right: 1px solid rgba(26,26,46,0.08);
  transition: flex 0.55s cubic-bezier(0.34, 1.05, 0.64, 1);
}
.ub2-card:last-child{ border-right: none; }
.ub2-card:hover{ flex: 3.2; }
.ub2-strip:hover .ub2-card:not(:hover){ flex: 0.55; }

/* Foto */
.ub2-img{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.5) saturate(0.65);
  transition: filter 0.55s ease, transform 0.55s ease;
}
.ub2-card:hover .ub2-img{
  filter: brightness(0.72) saturate(1.05);
  transform: scale(1.04);
}

/* Gradiente oscuro */
.ub2-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,8,15,0.55) 0%,
    rgba(7,8,15,0.0) 30%,
    rgba(7,8,15,0.0) 50%,
    rgba(7,8,15,0.92) 100%
  );
  z-index: 1;
}


/* Badge ciudad */
.ub2-city{
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 9px;
  border-radius: 3px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.ub2-card:hover .ub2-city{
  background: rgba(56,182,255,0.12);
  border-color: rgba(56,182,255,0.3);
  color: var(--sky);
}

/* Info al pie */
.ub2-info{
  position: absolute;
  bottom: 22px;
  left: 18px;
  right: 18px;
  z-index: 3;
}
.ub2-street{
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease 0.06s, transform 0.3s ease 0.06s;
}
.ub2-card:hover .ub2-street{ opacity: 1; transform: translateY(0); }

.ub2-sub{
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 5px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease 0.12s, transform 0.25s ease 0.12s;
}
.ub2-card:hover .ub2-sub{ opacity: 1; transform: translateY(0); }


/* ---- Responsive UB2 ---- */
@media (max-width: 1024px){
  .ub2-header{ flex-direction: column; align-items: flex-start; gap: 20px; padding-top: 60px; padding-bottom: 44px; }
  .ub2-desc{ text-align: left; max-width: 44ch; }
}
@media (max-width: 720px){
  .ub2-strip{ flex-direction: column; height: auto; }
  .ub2-card{ flex: none !important; height: 200px; border-right: none; border-bottom: 1px solid rgba(26,26,46,0.08); }
  .ub2-card:hover{ flex: none !important; height: 260px; }
  .ub2-strip:hover .ub2-card:not(:hover){ flex: none !important; height: 200px; }
  .ub2-street, .ub2-sub{ opacity: 1; transform: none; }
  .ub2-header{ padding-top: 48px; padding-bottom: 36px; }
  .ub2-footer{ flex-direction: column; gap: 6px; text-align: center; padding-top: 16px; padding-bottom: 20px; }
}
