/* ═══════════════════════════════════════════════════
   TRAVELUIFER — styles.css
   Luis Fernando Beleño Sosa · Producción audiovisual
   ═══════════════════════════════════════════════════ */

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

:root {
  --black:      #090909;
  --dark:       #111111;
  --darker:     #0D0D0D;
  --gold:       #C9A84C;
  --gold-light: #DFC06A;
  --white:      #F2EFE8;
  --gray:       #7A7A7A;
  --border:     rgba(201,168,76,0.12);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ─── ACCESSIBILITY ─── */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  background: var(--gold); color: var(--black);
  padding: 12px 20px; font-size: .7rem; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none; transition: top .3s;
}
.skip-link:focus { top: 16px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── CURSOR ─── */
#cur  { width:7px; height:7px; background:var(--gold); border-radius:50%; position:fixed; pointer-events:none; z-index:9999; transform:translate(-50%,-50%); transition:transform .12s; }
#curR { width:38px; height:38px; border:1px solid var(--gold); border-radius:50%; position:fixed; pointer-events:none; z-index:9998; transform:translate(-50%,-50%); transition:left .14s ease-out, top .14s ease-out, transform .2s; opacity:.55; }
body.cursor-hover #cur  { transform:translate(-50%,-50%) scale(2.5); }
body.cursor-hover #curR { transform:translate(-50%,-50%) scale(1.6); opacity:.9; }

@media (pointer: coarse) {
  #cur, #curR { display:none; }
  body { cursor:auto; }
}

/* ─── NAV ─── */
nav {
  position: fixed; top:0; width:100%; z-index:900;
  padding: 26px 64px;
  display: flex; justify-content:space-between; align-items:center;
  transition: background .5s, padding .4s, border-color .5s;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(9,9,9,.65) 0%, rgba(9,9,9,.35) 60%, transparent 100%);
}
nav.scrolled {
  background: rgba(9,9,9,.92);
  backdrop-filter: blur(14px);
  padding: 16px 64px;
  border-bottom-color: var(--border);
}

.nav-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.15rem; font-weight:800; letter-spacing:2px;
  color: var(--white); text-decoration:none; text-transform:uppercase;
}
.nav-logo span { color:var(--gold); }

.nav-links { display:flex; gap:32px; list-style:none; align-items:center; }
.nav-links a {
  color:rgba(242,239,232,.96); text-decoration:none;
  font-size:.84rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
  transition: color .3s; position:relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:1px; background:var(--gold); transition:width .3s;
}
.nav-links a:hover, .nav-links a.active { color:var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }

.lang-btn {
  font-size:.63rem; letter-spacing:2.5px; font-family:'Barlow', sans-serif;
  background:none; border:1px solid rgba(201,168,76,.35); color:var(--gold);
  padding:6px 16px; cursor:none; transition:all .3s;
}
.lang-btn:hover { background:var(--gold); color:var(--black); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh; position:relative;
  display:flex; align-items:center; justify-content:center;
  padding: 130px 24px 70px;
  overflow:hidden;
}

.hero-bg {
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 60% 40%, #1c1408 0%, #090909 65%);
}

.hero-bg::after {
  content:''; position:absolute; inset:0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.08) 2px, rgba(0,0,0,.08) 4px);
  pointer-events:none;
}

.hero-vignette {
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(0,0,0,.75) 100%);
}

.hero-overlay {
  position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(9,9,9,.15) 0%, transparent 25%, transparent 70%, rgba(9,9,9,.9) 100%);
}

.hero-streaks { position:absolute; inset:0; overflow:hidden; }
.streak {
  position:absolute; width:1px; top:0; bottom:0;
  background: linear-gradient(to bottom, transparent 0%, rgba(201,168,76,.07) 40%, rgba(201,168,76,.12) 50%, rgba(201,168,76,.07) 60%, transparent 100%);
  animation: streakAnim 12s infinite linear;
}
.streak:nth-child(1) { left:18%; animation-delay:0s; }
.streak:nth-child(2) { left:45%; animation-delay:4s; opacity:.6; }
.streak:nth-child(3) { left:78%; animation-delay:8s; opacity:.4; }
@keyframes streakAnim {
  0%   { transform:translateY(-100%) scaleY(.5); opacity:0; }
  10%  { opacity:1; }
  90%  { opacity:1; }
  100% { transform:translateY(100%) scaleY(.5); opacity:0; }
}

/* VIDEO placeholder — replace <div class="hero-video-wrap"> with <video> when ready */
.hero-video-wrap { position:absolute; inset:0; overflow:hidden; }
.hero-video-wrap video { width:100%; height:100%; object-fit:cover; opacity:.35; }
.hero-video-wrap.has-video ~ .hero-bg { display:none; }

.hero-content {
  position:relative; z-index:2;
  text-align:center; padding:0 24px;
  display:flex; flex-direction:column; align-items:center;
  width:100%; max-width:100%; box-sizing:border-box;
  overflow-wrap:break-word; word-break:break-word;
}

.hero-eyebrow {
  font-size:.85rem; letter-spacing:5px; color:var(--gold-light);
  text-transform:uppercase; margin-bottom:36px; font-weight:600;
  opacity:0; animation:fadeUp .9s .4s forwards;
  display:flex; align-items:center; justify-content:center; gap:20px;
  flex-wrap:wrap; text-align:center; row-gap:8px;
  max-width:100%;
}

.hero-title {
  font-family:'Unbounded', sans-serif;
  font-size: clamp(1.9rem, 7.4vw, 6.6rem);
  font-weight:800; line-height:1.04; letter-spacing:-1px;
  text-transform:uppercase;
  margin-bottom:32px;
  opacity:0; animation:fadeUp 1s .7s forwards;
  max-width:100%; overflow-wrap:normal; word-break:keep-all; hyphens:none;
  white-space:normal;
}
/* Salto forzado antes de "experiencias" solo en teléfonos angostos —
   evita que la palabra se corte por overflow-x:hidden si no alcanza
   el ancho junto al resto de la línea. Oculto por defecto. */
.hero-word-break { display:none; }
@media (max-width:768px) {
  .hero-word-break { display:inline; }
}
.hero-title em { color:var(--gold); font-style:normal; font-weight:800; }

.hero-sub {
  font-size:.78rem; letter-spacing:4px; color:rgba(242,239,232,.72);
  text-transform:uppercase; margin-bottom:20px; font-weight:600;
  opacity:0; animation:fadeUp .9s 1s forwards;
  max-width:100%; overflow-wrap:break-word; word-break:break-word;
}

.hero-microtrust {
  font-size:.9rem; color:rgba(242,239,232,.78); margin-bottom:44px; font-weight:500;
  opacity:0; animation:fadeUp .9s 1.1s forwards;
}
.hero-microtrust strong { color:var(--gold-light); font-weight:600; }

.hero-cta {
  display:flex; gap:18px; justify-content:center;
  opacity:0; animation:fadeUp .9s 1.3s forwards;
}

.btn-gold {
  background:var(--gold); color:var(--black);
  padding:18px 48px; font-size:.78rem; font-weight:700;
  letter-spacing:2.5px; text-transform:uppercase;
  text-decoration:none; transition:all .3s; cursor:none; border:2px solid var(--gold);
  display:inline-flex; align-items:center; gap:12px;
  box-shadow:0 4px 22px rgba(201,168,76,.3);
}
.btn-gold::after { content:'→'; transition:transform .3s; font-weight:700; }
.btn-gold:hover { background:var(--gold-light); border-color:var(--gold-light); transform:translateY(-3px) scale(1.02); box-shadow:0 14px 38px rgba(201,168,76,.45); }
.btn-gold:hover::after { transform:translateX(5px); }

.btn-outline {
  border:2px solid rgba(242,239,232,.6); color:var(--white);
  padding:18px 48px; font-size:.78rem; font-weight:700;
  letter-spacing:2.5px; text-transform:uppercase;
  text-decoration:none; transition:all .3s; cursor:none;
  display:inline-flex; align-items:center; gap:12px; background:none;
}
.btn-outline::after { content:'→'; transition:transform .3s; }
.btn-outline:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-3px) scale(1.02); box-shadow:0 10px 28px rgba(201,168,76,.2); }
.btn-outline:hover::after { transform:translateX(5px); }

/* ─── SECTION COMMON ─── */
section { padding:120px 64px; }

.sec-label {
  font-size:.68rem; letter-spacing:4px; color:var(--gold);
  text-transform:uppercase; margin-bottom:18px;
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
}
.sec-label::before { content:''; width:32px; height:1px; background:var(--gold); }

.sec-title {
  font-family:'Unbounded', sans-serif;
  font-size:clamp(2rem,4vw,3.6rem);
  font-weight:700; line-height:1.12; margin-bottom:20px;
  text-transform:uppercase; letter-spacing:-.5px;
}
.sec-title em { font-style:normal; color:var(--gold); font-weight:700; }

.gold-rule { width:52px; height:1px; background:var(--gold); margin:24px 0; }

/* ─── ABOUT ─── */
#about {
  display:grid; grid-template-columns:1fr 1fr; gap:88px; align-items:start;
  border-top:1px solid var(--border);
}

.about-img-col { position:relative; }

.about-photo {
  width:100%; aspect-ratio:4/5;
  background: linear-gradient(155deg, #161208 0%, #0e0c07 100%);
  display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
}
.about-photo::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 30% 30%, rgba(201,168,76,.05), transparent 70%);
}
.about-photo img { width:100%; height:100%; object-fit:cover; object-position:center 18%; display:block; position:absolute; inset:0; }
.photo-placeholder-text {
  font-size:.6rem; letter-spacing:3px; color:rgba(201,168,76,.25); text-transform:uppercase;
  display:none;
}
.about-photo img[hidden] { display:none; }
.about-photo img[hidden] + .photo-placeholder-text { display:block; }
.specialty-visual img[hidden] + .photo-placeholder-text { display:block; }
.about-photo-frame {
  position:absolute; top:18px; right:-18px; bottom:-18px; left:18px;
  border:1px solid rgba(201,168,76,.18); pointer-events:none; z-index:-1;
}

.about-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; margin-top:3px; }
.stat { background:var(--dark); padding:24px 20px; border:1px solid var(--border); }
.stat-n {
  font-family:'Unbounded', sans-serif;
  font-size:2.6rem; font-weight:800; color:var(--gold); line-height:1; letter-spacing:-1px;
}
.stat-l { font-size:.66rem; letter-spacing:1.5px; color:var(--gray); text-transform:uppercase; margin-top:8px; }

.about-text-col { padding-top:8px; }

.about-role {
  font-family:'Unbounded', sans-serif;
  font-size:.72rem; font-weight:700; letter-spacing:2.5px;
  color:var(--white); text-transform:uppercase; margin-bottom:20px;
}

.about-quote {
  font-family:'Unbounded', sans-serif;
  font-size:1.35rem; font-weight:700;
  color:var(--gold); line-height:1.4; margin-bottom:32px;
  text-transform:uppercase; letter-spacing:0px;
}

.about-text-col p { font-size:1.05rem; font-weight:500; line-height:1.8; color:rgba(242,239,232,.88); margin-bottom:18px; }

.diffs { margin-top:40px; display:flex; flex-direction:column; gap:0; }
.diff { display:flex; align-items:flex-start; gap:20px; padding:18px 0; border-bottom:1px solid rgba(242,239,232,.055); }
.diff-num {
  font-family:'Unbounded', sans-serif;
  font-size:.78rem; font-weight:700; letter-spacing:1px; color:var(--gold);
  flex-shrink:0; width:28px; padding-top:2px;
}
.diff p { font-size:.95rem; font-weight:500; line-height:1.65; color:rgba(242,239,232,.86); margin-bottom:0 !important; }
.diff p strong { color:var(--white); font-weight:600; }

/* ─── SPECIALTY (Turismo) ─── */
#specialty {
  border-top:1px solid var(--border);
  position:relative; overflow:hidden;
  background: linear-gradient(155deg, #14100a 0%, var(--black) 55%);
}
.specialty-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:80px; align-items:center; position:relative; z-index:1; }
.specialty-visual {
  aspect-ratio:4/5; background:linear-gradient(150deg,#1a1409,#0b0906);
  border:1px solid rgba(201,168,76,.18); position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.specialty-visual::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 70% 20%, rgba(201,168,76,.08), transparent 60%);
  z-index:1; pointer-events:none;
}
.specialty-visual img { width:100%; height:100%; object-fit:cover; display:block; position:absolute; inset:0; }
.specialty-visual img[hidden] { display:none; }
.specialty-badge {
  position:absolute; bottom:24px; left:24px; right:24px;
  background:rgba(9,9,9,.75); border:1px solid rgba(201,168,76,.25);
  padding:16px 20px; backdrop-filter:blur(6px);
}
.specialty-badge p { font-size:.6rem; letter-spacing:2px; color:var(--gold); text-transform:uppercase; margin-bottom:4px; }
.specialty-badge span { font-size:.72rem; color:rgba(242,239,232,.8); }

.specialty-tags { display:grid; grid-template-columns:1fr 1fr; gap:2px; margin:36px 0 40px; }
.spec-tag {
  background:rgba(255,255,255,.02); border:1px solid var(--border);
  padding:20px 18px; display:flex; align-items:center; gap:14px;
}
.spec-tag-ico { width:34px; height:34px; flex-shrink:0; border:1px solid rgba(201,168,76,.3); display:flex; align-items:center; justify-content:center; }
.spec-tag-ico svg { width:16px; height:16px; stroke:var(--gold); fill:none; stroke-width:1.6; }
.spec-tag p { font-size:.82rem; color:rgba(242,239,232,.9); line-height:1.4; font-weight:500; }

.specialty-desc { font-size:1.05rem; font-weight:500; line-height:1.8; color:rgba(242,239,232,.88); margin-bottom:8px; }
.specialty-credibility { font-size:.78rem; letter-spacing:.5px; color:var(--gray); margin:20px 0 36px; }
.specialty-credibility strong { color:var(--gold-light); font-weight:600; }
.specialty-cta { display:flex; gap:16px; flex-wrap:wrap; }

/* ─── SERVICES ─── */
#services { border-top:1px solid var(--border); background:var(--darker); }

.srv-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:72px; gap:24px; }

.srv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }

.srv-card { background:var(--dark); padding:52px 40px; position:relative; overflow:hidden; transition:transform .4s, background .4s; cursor:none; }
.srv-card::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(201,168,76,.06) 0%, transparent 55%);
  opacity:0; transition:opacity .4s;
}
.srv-card:hover { transform:translateY(-5px); background:#151515; }
.srv-card:hover::before { opacity:1; }

.srv-n {
  font-family:'Unbounded', sans-serif;
  font-size:5rem; font-weight:800; color:rgba(201,168,76,.06);
  position:absolute; top:12px; right:24px; line-height:1; letter-spacing:-1px;
}

.srv-media {
  width:100%; aspect-ratio:16/10; position:relative; overflow:hidden;
  margin-bottom:28px; border:1px solid rgba(201,168,76,.22);
}
.srv-media img {
  width:100%; height:100%; object-fit:cover; display:block;
  position:relative; z-index:1; transition:transform .6s ease;
}
.srv-card:hover .srv-media img { transform:scale(1.08); }
.srv-media-fallback {
  position:absolute; inset:0; z-index:0;
  background:linear-gradient(150deg,#1a1409,#0b0906);
  display:flex; align-items:center; justify-content:center;
}
.srv-media-fallback svg { width:30px; height:30px; stroke:rgba(201,168,76,.5); fill:none; stroke-width:1.4; }
.srv-media img[hidden] { display:none; }

.srv-name {
  font-family:'Unbounded', sans-serif;
  font-size:1.55rem; font-weight:700; line-height:1.25; margin-bottom:18px;
  text-transform:uppercase; letter-spacing:0px;
}

.srv-desc { font-size:1rem; font-weight:500; line-height:1.7; color:rgba(242,239,232,.85); margin-bottom:32px; }

.tags { display:flex; flex-wrap:wrap; gap:8px; }
.tag { font-size:.66rem; letter-spacing:1.2px; color:var(--gold); border:1px solid rgba(201,168,76,.22); padding:5px 13px; text-transform:uppercase; }

/* ─── PORTFOLIO PREVIEW ─── */
#portfolio { border-top:1px solid var(--border); }

.port-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:56px; gap:24px; }
.port-teaser-sub { max-width:340px; font-size:.8rem; line-height:1.8; color:rgba(242,239,232,.6); text-align:right; }

/* ── Category teaser grid (home portfolio preview) ── */
.teaser-grid { display:grid; grid-template-columns:2fr 1fr 1fr; grid-template-rows:280px 280px; gap:3px; }
.teaser-tile {
  position:relative; overflow:hidden; display:block; text-decoration:none;
  background:linear-gradient(145deg,#14100a,#0a0807); cursor:none;
}
.teaser-tile.teaser-lg { grid-row:1/3; }

.teaser-tile:nth-child(2) { background:linear-gradient(145deg,#08100a,#050c07); }
.teaser-tile:nth-child(3) { background:linear-gradient(145deg,#100808,#0c0505); }
.teaser-tile:nth-child(4) { background:linear-gradient(145deg,#0e0a14,#090611); }
.teaser-tile:nth-child(5) { background:linear-gradient(145deg,#08100e,#05100c); }

.teaser-tile img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s cubic-bezier(.25,.46,.45,.94); }
.teaser-tile:hover img { transform:scale(1.05); }

.teaser-tile::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg,rgba(9,9,9,0) 42%,rgba(9,9,9,.9) 100%);
}
.teaser-tile::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  border:1px solid rgba(201,168,76,0); transition:border-color .35s;
}
.teaser-tile:hover::after { border-color:rgba(201,168,76,.5); }

.teaser-overlay { position:absolute; inset:0; z-index:1; display:flex; flex-direction:column; justify-content:flex-end; padding:24px 28px; }
.teaser-lg .teaser-overlay { padding:36px 40px; }

.teaser-eyebrow { display:block; font-size:.62rem; letter-spacing:3px; text-transform:uppercase; color:var(--gold-light); font-weight:600; margin-bottom:10px; }
.teaser-ttl { font-family:'Unbounded', sans-serif; font-size:clamp(1.6rem,2.6vw,2.3rem); font-weight:700; text-transform:uppercase; color:var(--white); letter-spacing:0; margin-bottom:8px; }
.teaser-sub-cats { font-size:.8rem; letter-spacing:.5px; color:rgba(242,239,232,.8); font-weight:500; }
.teaser-ttl-sm { font-family:'Unbounded', sans-serif; font-size:1.02rem; font-weight:700; text-transform:uppercase; color:var(--white); letter-spacing:0; }

.port-cta { text-align:center; margin-top:56px; }

/* ─── CLIENTS / BRANDS marquee ─── */
#clients { border-top:1px solid rgba(201,168,76,.25); border-bottom:1px solid rgba(201,168,76,.25); background:var(--darker); overflow:hidden; position:relative; }
.clients-lbl { text-align:center; font-size:.9rem; letter-spacing:3px; color:var(--gold-light); text-transform:uppercase; margin-bottom:56px; font-weight:600; }

.brand-marquee {
  display:flex; flex-direction:column; gap:14px;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
          mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}
.brand-row { overflow:hidden; width:100%; }
.brand-track {
  display:flex; width:max-content; gap:8px;
  animation:marqueeLeft 32s linear infinite;
}
.brand-track.reverse { animation-name:marqueeRight; animation-duration:38s; }
.brand-marquee:hover .brand-track { animation-play-state:paused; }

@keyframes marqueeLeft  { from{ transform:translateX(0); }    to{ transform:translateX(-50%); } }
@keyframes marqueeRight { from{ transform:translateX(-50%); } to{ transform:translateX(0); } }

.brand-tile {
  flex:0 0 auto; width:214px; aspect-ratio:2.1/1;
  background:rgba(201,168,76,.05);
  border:1px solid rgba(201,168,76,.18);
  display:flex; align-items:center; justify-content:center;
  padding:18px 26px; position:relative; cursor:none;
  transition:background .35s, border-color .35s, transform .35s;
}
.brand-tile:hover, .brand-tile:focus-within {
  background:rgba(201,168,76,.12); border-color:rgba(201,168,76,.6);
  transform:translateY(-4px);
}
/* El tono parejo (#F2EFE8) ya viene aplicado en el archivo de imagen
   (fondo removido + recoloreado a nivel de píxel/vector), así que aquí
   solo se ajusta tamaño/opacidad — sin filtros CSS forzados, que
   rompían los PNG con fondo opaco (quedaban como bloques sólidos). */
.brand-tile img {
  max-width:100%; max-height:54px; object-fit:contain;
  opacity:.94;
  transition:opacity .35s, filter .35s, transform .35s;
}
.brand-tile:hover img, .brand-tile:focus-within img {
  opacity:1; transform:scale(1.08);
  filter:drop-shadow(0 0 12px rgba(201,168,76,.45));
}
.brand-fallback {
  display:none; align-items:center; justify-content:center; text-align:center;
  font-family:'Unbounded', sans-serif; font-size:.85rem; font-weight:600;
  letter-spacing:.3px; color:var(--gold-light);
  transition:color .3s, transform .3s; padding:0 6px; opacity:.85;
}
.brand-tile:hover .brand-fallback, .brand-tile:focus-within .brand-fallback {
  color:var(--gold); transform:scale(1.05); opacity:1;
}
.brand-tile img[hidden] + .brand-fallback { display:flex; }

@media (max-width:768px) { .brand-tile { width:176px; padding:16px 20px; } .brand-tile img { max-height:46px; } }
@media (max-width:480px) { .brand-tile { width:148px; padding:14px 16px; } .brand-tile img { max-height:38px; } }

/* ─── TESTIMONIALS ─── */
#testimonials { border-top:1px solid var(--border); background:linear-gradient(to bottom, transparent, rgba(201,168,76,.015), transparent); }

.test-head { text-align:center; margin-bottom:72px; }
.test-head .sec-label { justify-content:center; }

.test-block { max-width:820px; margin:0 auto; text-align:center; }
.test-quote {
  font-family:'Unbounded', sans-serif;
  font-size:clamp(1.2rem,2.4vw,1.9rem);
  font-weight:600; text-transform:none; letter-spacing:0px;
  line-height:1.55; color:rgba(242,239,232,.82); margin-bottom:36px;
}
.test-author { font-size:.75rem; letter-spacing:2.5px; color:var(--gold); text-transform:uppercase; }

.test-video {
  max-width:700px; margin:64px auto 0; aspect-ratio:16/9;
  background:var(--dark); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
}
.test-video::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg, rgba(201,168,76,.03), transparent); pointer-events:none; z-index:1; }
.test-video-thumb {
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  filter:brightness(.6) saturate(.9); transition:filter .35s, transform .5s;
}
.test-video:hover .test-video-thumb { filter:brightness(.5) saturate(.95); transform:scale(1.03); }
.test-video iframe { position:absolute; inset:0; width:100%; height:100%; border:0; z-index:2; }
.play-circle {
  width:76px; height:76px; border:1px solid rgba(201,168,76,.4);
  background:rgba(9,9,9,.35); backdrop-filter:blur(2px);
  display:flex; align-items:center; justify-content:center;
  position:relative; z-index:1; transition:all .3s; cursor:pointer;
}
.play-circle:hover { background:rgba(201,168,76,.14); border-color:var(--gold); transform:scale(1.06); }
.play-circle svg { width:26px; height:26px; fill:var(--gold); margin-left:6px; }
.test-note { font-size:.62rem; letter-spacing:1px; color:var(--gray); margin-top:16px; }

/* ─── CONTACT ─── */
#contact { border-top:1px solid var(--border); text-align:center; }

.contact-inner { max-width:760px; margin:0 auto; }
.contact-inner .sec-title { text-align:center; }

.contact-desc { font-size:1.05rem; font-weight:500; line-height:1.8; color:rgba(242,239,232,.85); max-width:600px; margin:0 auto; }

.contact-cta-card {
  margin:56px auto 0; max-width:620px;
  border:1px solid rgba(201,168,76,.28);
  background:linear-gradient(155deg,#14100a,#0e0c07);
  padding:56px 48px; text-align:center;
}
.contact-cta-title {
  font-family:'Unbounded', sans-serif; font-size:1.3rem; font-weight:700;
  color:var(--white); text-transform:uppercase; line-height:1.35; margin:14px 0 18px;
}
.contact-cta-sub { font-size:1rem; font-weight:500; line-height:1.75; color:rgba(242,239,232,.85); margin-bottom:32px; max-width:460px; margin-left:auto; margin-right:auto; }
.contact-cta-card .btn-gold { margin:0 auto; }
.contact-cta-note { font-size:.7rem; letter-spacing:1px; color:var(--gray); margin-top:22px; }

.contact-info-row {
  display:flex; justify-content:center; flex-wrap:wrap; gap:20px 48px;
  margin-top:64px; padding-top:44px; border-top:1px solid var(--border);
}
.info-item {
  display:flex; align-items:center; gap:12px; text-decoration:none;
  color:rgba(242,239,232,.88); font-size:.92rem; letter-spacing:.3px; font-weight:500;
  transition:color .3s; cursor:none;
}
.info-item svg { width:20px; height:20px; fill:var(--gold); flex-shrink:0; }
.info-item:hover { color:var(--gold); }

.contact-form { display:flex; flex-direction:column; gap:20px; }
.fg { display:flex; flex-direction:column; gap:7px; }
.fg label { font-size:.58rem; letter-spacing:2px; color:var(--gray); text-transform:uppercase; }
.fg input, .fg textarea, .fg select {
  background:rgba(255,255,255,.025); border:1px solid rgba(201,168,76,.14);
  color:var(--white); padding:13px 16px;
  font-family:'Barlow', sans-serif; font-size:.8rem;
  outline:none; transition:border-color .3s; -webkit-appearance:none; cursor:none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color:rgba(201,168,76,.5); }
.fg textarea { resize:vertical; min-height:110px; }
.fg select option { background:var(--black); }
.submit-btn { width:100%; padding:15px; font-size:.65rem; letter-spacing:3px; text-transform:uppercase; font-weight:600; cursor:none; }
.form-note { font-size:.62rem; color:var(--gray); margin-top:-6px; letter-spacing:.5px; }

/* ─── FOOTER ─── */
footer { border-top:1px solid var(--border); padding:48px 64px; display:flex; justify-content:space-between; align-items:center; gap:32px; }
.foot-brand .foot-logo { font-family:'Unbounded', sans-serif; font-size:1.1rem; font-weight:800; letter-spacing:1.5px; color:var(--white); text-transform:uppercase; }
.foot-brand .foot-logo span { color:var(--gold); }
.foot-brand .foot-sub { font-size:.68rem; letter-spacing:1.5px; color:var(--gray); margin-top:5px; }

.foot-socials { display:flex; gap:12px; }
.soc { width:38px; height:38px; border:1px solid rgba(201,168,76,.18); display:flex; align-items:center; justify-content:center; text-decoration:none; transition:all .3s; cursor:none; }
.soc:hover { border-color:var(--gold); background:rgba(201,168,76,.07); }
.soc svg { width:15px; height:15px; fill:rgba(242,239,232,.55); transition:fill .3s; }
.soc:hover svg { fill:var(--gold); }

.foot-copy { font-size:.68rem; color:rgba(122,122,122,.55); letter-spacing:1px; text-align:right; line-height:1.8; }

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position:fixed; bottom:30px; right:30px; z-index:888;
  width:60px; height:60px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center;
  text-decoration:none; transition:transform .3s, box-shadow .3s; cursor:none;
  box-shadow:0 4px 22px rgba(37,211,102,.35);
  animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float::before {
  content:''; position:absolute; inset:0; border-radius:50%;
  border:1px solid rgba(37,211,102,.5);
  animation: waRing 2.6s ease-out infinite;
}
.wa-float:hover { transform:scale(1.12); box-shadow:0 8px 34px rgba(37,211,102,.5); }
.wa-float svg { width:28px; height:28px; fill:#fff; position:relative; z-index:1; }

@keyframes waPulse {
  0%, 100% { box-shadow:0 4px 22px rgba(37,211,102,.35); }
  50% { box-shadow:0 4px 28px rgba(37,211,102,.6); }
}
@keyframes waRing {
  0% { transform:scale(1); opacity:.7; }
  100% { transform:scale(1.5); opacity:0; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float { animation:none; }
  .wa-float::before { animation:none; display:none; }
}

/* ─── FADE ANIMATIONS ─── */
@keyframes fadeUp { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

.reveal { opacity:0; transform:translateY(36px); transition:opacity .9s ease, transform .9s ease; }
.reveal.on { opacity:1; transform:translateY(0); }
.reveal-d1 { transition-delay:.1s; }
.reveal-d2 { transition-delay:.2s; }
.reveal-d3 { transition-delay:.3s; }

/* ─── LANGUAGE TOGGLE ─── */
[data-en] { display:none; }
body.en [data-es] { display:none; }
body.en [data-en] { display:revert; }
span[data-en] { display:none; }
body.en span[data-es] { display:none; }
body.en span[data-en] { display:inline; }

/* ─── HAMBURGER ─── */
.nav-hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:none; padding:4px; z-index:910; }
.nav-hamburger span { display:block; width:26px; height:1.5px; background:var(--white); transition:all .35s; }
.nav-hamburger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

/* ─── RESPONSIVE ─── */
@media (max-width:1024px) {
  nav { padding:22px 40px; }
  nav.scrolled { padding:16px 40px; }
  section { padding:96px 40px; }
  footer { padding:40px 40px; }
  #about { gap:56px; }
  .specialty-grid { gap:48px; }
}

@media (max-width:768px) {
  nav { padding:20px 24px; }
  nav.scrolled { padding:16px 24px; }
  .nav-hamburger { display:flex; }

  .nav-links {
    position:fixed; top:0; right:-100%; width:75vw; max-width:300px; height:100vh;
    background:rgba(9,9,9,.97); backdrop-filter:blur(20px);
    flex-direction:column; align-items:flex-start; justify-content:center;
    gap:0; padding:80px 40px 40px;
    border-left:1px solid var(--border);
    transition:right .45s cubic-bezier(.77,0,.175,1);
    z-index:905;
  }
  .nav-links.open { right:0; }
  .nav-links li { width:100%; border-bottom:1px solid rgba(242,239,232,.05); }
  .nav-links a { display:block; padding:18px 0; font-size:.95rem; font-weight:700; letter-spacing:2px; color:rgba(242,239,232,.98); }
  .nav-links a:hover { color:var(--gold); }
  .nav-links .lang-btn { margin:24px 0 0; }

  .nav-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,.55); z-index:904; }
  .nav-overlay.open { display:block; }

  #cur, #curR { display:none; }
  body { cursor:auto; }
  .btn-gold, .btn-outline, .lang-btn, .teaser-tile, .srv-card, .brand-tile, .info-item, .soc, .wa-float, .lb-close { cursor:pointer; }
  nav, a, button { cursor:pointer; }

  #hero { padding:110px 20px 50px; }
  .hero-eyebrow { font-size:.7rem; letter-spacing:2px; gap:10px; margin-bottom:28px; }
  .clients-lbl { font-size:.95rem; letter-spacing:1.5px; }
  .hero-title { font-size: clamp(1.5rem, 7.2vw, 3.2rem); letter-spacing: -.5px; word-break:keep-all; overflow-wrap:normal; hyphens:none; }
  .hero-sub { letter-spacing:2px; }
  .hero-microtrust { padding:0 8px; }
  .hero-cta { flex-direction:column; align-items:center; gap:12px; }
  .btn-gold, .btn-outline { padding:14px 32px; width:100%; max-width:280px; justify-content:center; }

  section { padding:72px 24px; }
  footer { padding:40px 24px; flex-direction:column; align-items:flex-start; gap:28px; }
  .foot-copy { text-align:left; }

  #about { grid-template-columns:1fr; gap:48px; }
  .about-photo { aspect-ratio:3/4; }
  .about-photo img { object-position:center 15%; }

  .specialty-grid { grid-template-columns:1fr; gap:40px; }
  .specialty-visual { aspect-ratio:4/3; }
  .specialty-tags { grid-template-columns:1fr; }

  .srv-header { flex-direction:column; align-items:flex-start; gap:24px; margin-bottom:48px; }
  .srv-grid { grid-template-columns:1fr; gap:2px; }

  .port-header { flex-direction:column; align-items:flex-start; gap:20px; margin-bottom:40px; }
  .port-teaser-sub { text-align:left; max-width:100%; }
  .teaser-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }
  .teaser-tile.teaser-lg { grid-row: 1 / 2; grid-column: 1 / 3; }

  .contact-cta-card { padding:40px 28px; }
  .contact-info-row { gap:20px 28px; }

  .test-video { max-width:100%; }
}

@media (max-width:480px) {
  .hero-title { font-size: clamp(1.3rem, 7.2vw, 2.6rem); }
  .hero-eyebrow { font-size:.64rem; letter-spacing:1.5px; gap:8px; }
  .clients-lbl { font-size:.85rem; letter-spacing:1px; }
  .hero-cta { gap:10px; }

  section { padding:60px 20px; }
  footer { padding:36px 20px; }

  .about-stats { grid-template-columns:repeat(3,1fr); gap:1px; }
  .stat { padding:16px 10px; }
  .stat-n { font-size:1.7rem; }
  .stat-l { font-size:.58rem; letter-spacing:1px; }

  .teaser-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .teaser-tile { height:200px; }
  .teaser-tile.teaser-lg { grid-column:1; grid-row:auto; height:240px; }

  .srv-card { padding:36px 24px; }
  .srv-n { font-size:4rem; }

  .sec-title { font-size: clamp(1.7rem, 8vw, 2.6rem); }

  footer { flex-direction:column; }
  .foot-socials { flex-wrap:wrap; }
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position:fixed; inset:0; z-index:9990;
  background:rgba(9,9,9,.95);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .4s;
}
.lightbox.open { opacity:1; pointer-events:all; }
.lb-close {
  position:absolute; top:24px; right:32px;
  font-size:1.8rem; color:var(--gold); cursor:none; background:none; border:none;
  line-height:1; transition:transform .2s;
}
.lb-close:hover { transform:rotate(90deg); }
.lb-content { max-width:900px; width:90%; }
.lb-video { width:100%; aspect-ratio:16/9; background:#000; }
.lb-info { padding:20px 0; }
.lb-cat { font-size:.6rem; letter-spacing:3px; color:var(--gold); text-transform:uppercase; margin-bottom:8px; }
.lb-title { font-family:'Unbounded', sans-serif; font-size:1.4rem; font-weight:700; }
.lb-desc { font-size:.78rem; color:rgba(242,239,232,.75); margin-top:8px; line-height:1.7; }

/* ─── SR-ONLY (screen reader only, for decorative-duplicate content) ─── */
.sr-only {
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
