/* ═══════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════ */
:root {
  --navy:  #181B2D;
  --navy2: #1e2340;
  --navy3: #252b50;
  --gold:  #0165b0;
  --gold2: #1a87d8;
  --white: #f4f6fa;
  --gray:  #8a96a8;
  --gray2: #c8d0dc;
  --dark:  #0f1120;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { color: inherit; }

/* ═══════════════════════════════════════════
   TOPBAR — oculto en móvil
═══════════════════════════════════════════ */
.topbar {
  background: var(--dark);
  padding: 8px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--gray);
}
.topbar a { color: var(--gray); text-decoration: none; transition: color .2s; }
.topbar a:hover { color: var(--gold2); }
.topbar-left, .topbar-right { display: flex; gap: 28px; align-items: center; }
.topbar-right .social-links { display: flex; gap: 16px; align-items: center; }
.topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,.1); }
.topbar-soc { display: flex; align-items: center; color: var(--gray); text-decoration: none; transition: color .25s, transform .2s; line-height: 0; }
.topbar-soc:hover { color: var(--gold2); transform: translateY(-1px); }
.topbar-soc[aria-label="Facebook"]:hover  { color: #1877F2; }
.topbar-soc[aria-label="Instagram"]:hover { color: #E1306C; }
.topbar-soc[aria-label="YouTube"]:hover   { color: #FF0000; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy2);
  border-bottom: 2px solid var(--gold);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-svg { height: 34px; width: auto; display: block; transition: opacity .25s; }
.logo:hover .logo-svg { opacity: .82; }
.logo-svg-footer { height: 28px; width: auto; display: block; margin-bottom: 18px; }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu a {
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray2); text-decoration: none;
  padding: 8px 18px; border-radius: 4px;
  transition: all .25s; position: relative;
}
.nav-menu a::after { content:''; position:absolute; bottom:0; left:50%; width:0; height:2px; background:var(--gold); transform:translateX(-50%); transition:width .3s; }
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { width: 60%; }
.nav-cta { background:var(--gold)!important; color:var(--white)!important; font-weight:700!important; padding:10px 24px!important; border-radius:4px!important; transition:background .25s!important; }
.nav-cta:hover { background:var(--gold2)!important; }
.nav-cta::after { display:none!important; }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:6px; }
.hamburger span { width:24px; height:2px; background:var(--white); border-radius:2px; transition:all .3s; display:block; }

/* ═══════════════════════════════════════════
   MOBILE NAV — mejorado
═══════════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 80px 24px 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: .12em;
  color: var(--white); text-decoration: none;
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%; width: 40px; height: 40px;
  cursor: pointer; font-size: 1.2rem; color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav-socials {
  display: flex; gap: 16px; margin-top: 12px;
}
.mobile-nav-socials a {
  font-size: 1rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 0;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - 68px);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--dark);
}
.hero-bg-carousel { position: absolute; inset: 0; z-index: 0; }
.hero-bg-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease-in-out;
}
.hero-bg-slide.active { opacity: .48; animation: heroSlideZoom 9s ease-in-out forwards; }
@keyframes heroSlideZoom { from{transform:scale(1.06)} to{transform:scale(1)} }

.hero-slide-dots {
  position: absolute; bottom: 24px; right: 24px;
  display: flex; gap: 8px; z-index: 3;
}
.hero-slide-dot {
  width: 24px; height: 3px;
  background: rgba(255,255,255,.25); border-radius: 2px;
  cursor: pointer; transition: background .4s, width .4s;
}
.hero-slide-dot.active { background: var(--gold); width: 40px; }

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(24,27,45,.3) 0%, rgba(15,17,32,.92) 100%),
              linear-gradient(to right, rgba(15,17,32,.85) 40%, transparent 100%);
  z-index: 1;
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(1,101,176,.03) 80px, rgba(1,101,176,.03) 81px);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 72px 60px 80px 80px;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(1,101,176,.12); border: 1px solid rgba(1,101,176,.3);
  padding: 6px 16px; border-radius: 2px;
  font-family: 'Rajdhani', sans-serif; font-size: .72rem;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold2); margin-bottom: 24px;
  opacity: 0; animation: fadeUp .8s .3s forwards;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .95; letter-spacing: .04em;
  color: var(--white); margin-bottom: 8px;
  opacity: 0; animation: fadeUp .8s .5s forwards;
}
.hero-title-gold { color: var(--gold); display: block; }
.hero-sub {
  font-size: 1rem; line-height: 1.7; color: var(--gray2);
  max-width: 480px; margin: 16px 0 36px;
  opacity: 0; animation: fadeUp .8s .7s forwards;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s .9s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: var(--gold); color: var(--white);
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: .88rem; letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px; transition: all .3s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(1,101,176,.35); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border: 1px solid rgba(255,255,255,.2);
  color: var(--white); font-family: 'Rajdhani', sans-serif;
  font-weight: 600; font-size: .88rem; letter-spacing: .15em;
  text-transform: uppercase; text-decoration: none; border-radius: 3px;
  transition: all .3s; white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  opacity: 0; animation: fadeUp .8s 1.1s forwards;
}
.h-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--gold); line-height: 1; }
.h-stat-label { font-size: .75rem; letter-spacing: .1em; color: var(--gray); margin-top: 4px; }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

.counter { display: inline-block; }

/* ═══════════════════════════════════════════
   LOCATION MARQUEE
═══════════════════════════════════════════ */
.location-marquee { background: var(--gold); overflow: hidden; padding: 11px 0; border-bottom: 1px solid rgba(0,0,0,.15); }
.lm-track { display: flex; align-items: center; gap: 28px; width: max-content; animation: lmScroll 18s linear infinite; }
.lm-track:hover { animation-play-state: paused; }
.lm-item { display: inline-flex; align-items: center; gap: 7px; font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: .28em; text-transform: uppercase; color: var(--white); white-space: nowrap; }
.lm-sep { color: rgba(255,255,255,.4); font-size: .6rem; flex-shrink: 0; }
@keyframes lmScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════
   QUICK SERVICES
═══════════════════════════════════════════ */
.quick-services { background: var(--navy2); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.qs-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.qs-item { padding: 32px 36px; border-right: 1px solid rgba(255,255,255,.06); display: flex; align-items: flex-start; gap: 16px; transition: background .3s; }
.qs-item:last-child { border-right: none; }
.qs-item:hover { background: rgba(1,101,176,.06); }
.qs-icon { width: 44px; height: 44px; background: rgba(1,101,176,.12); border: 1px solid rgba(1,101,176,.2); display: flex; align-items: center; justify-content: center; border-radius: 4px; flex-shrink: 0; }
.qs-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.qs-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: .95rem; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.qs-desc { font-size: .78rem; color: var(--gray); line-height: 1.5; }

/* ═══════════════════════════════════════════
   SECTIONS COMMON
═══════════════════════════════════════════ */
section { padding: 90px 80px; }
.section-tag { display: inline-block; font-family: 'Rajdhani', sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .45em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; padding-left: 28px; position: relative; }
.section-tag::before { content: ''; position: absolute; left: 0; top: 50%; width: 18px; height: 2px; background: var(--gold); transform: translateY(-50%); }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 4vw, 3.6rem); letter-spacing: .05em; line-height: 1; color: var(--white); margin-bottom: 16px; }
.section-desc { font-size: .95rem; line-height: 1.8; color: var(--gray); max-width: 520px; }
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.vis { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about { background: var(--dark); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: grayscale(20%); }
.about-img-badge { position: absolute; bottom: -24px; right: -24px; background: var(--gold); padding: 28px 32px; text-align: center; }
.about-img-badge-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--white); line-height: 1; }
.about-img-badge-label { font-family: 'Rajdhani', sans-serif; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.8); opacity: .7; }
.certs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 32px 0; }
.cert-item { background: var(--navy2); border: 1px solid rgba(255,255,255,.07); padding: 14px 18px; border-left: 3px solid var(--gold); display: flex; align-items: center; gap: 12px; }
.cert-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.cert-text { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gray2); }

/* ═══════════════════════════════════════════
   SOLUTIONS
═══════════════════════════════════════════ */
.solutions { background: var(--navy); }
.solutions-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; }
.solutions-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(255,255,255,.05); }
.sol-card { background: var(--navy2); position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: default; }
.sol-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .4s; filter: grayscale(30%) brightness(.6); }
.sol-card:hover img { transform: scale(1.07); filter: grayscale(0%) brightness(.5); }
.sol-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,17,32,.95) 0%, rgba(15,17,32,.2) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px 26px; transition: background .4s; }
.sol-card:hover .sol-overlay { background: linear-gradient(to top, rgba(15,17,32,.98) 20%, rgba(15,17,32,.5) 100%); }
.sol-tag { font-family: 'Rajdhani', sans-serif; font-size: .65rem; letter-spacing: .4em; text-transform: uppercase; color: var(--white); font-weight: 700; text-shadow: 0 1px 6px rgba(0,0,0,.7); margin-bottom: 6px; }
.sol-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: .08em; color: var(--white); margin-bottom: 8px; }
.sol-desc { font-size: .8rem; line-height: 1.6; color: var(--gray2); opacity: 0; transform: translateY(10px); transition: opacity .4s, transform .4s; max-height: 0; overflow: hidden; }
.sol-card:hover .sol-desc { opacity: 1; transform: none; max-height: 80px; }
.sol-arrow { margin-top: 12px; font-family: 'Rajdhani', sans-serif; font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; color: var(--white); font-weight: 700; opacity: 0; transition: opacity .3s; }
.sol-arrow a { color: var(--white); text-decoration: none; font-weight: 700; text-shadow: 0 1px 6px rgba(0,0,0,.7); }
.sol-arrow a:hover { color: var(--gold2); }
.sol-card:hover .sol-arrow { opacity: 1; }

/* ═══════════════════════════════════════════
   STATS
═══════════════════════════════════════════ */
.stats-section { background: var(--gold); padding: 64px 80px; display: grid; grid-template-columns: repeat(4,1fr); }
.stat-card { text-align: center; padding: 20px 24px; border-right: 1px solid rgba(255,255,255,.15); }
.stat-card:last-child { border-right: none; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; color: var(--white); line-height: 1; }
.stat-label { font-family: 'Rajdhani', sans-serif; font-size: .78rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 4px; }

/* ═══════════════════════════════════════════
   CLIENTS
═══════════════════════════════════════════ */
.clients-strip { background: var(--navy2); padding: 56px 80px; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); overflow: hidden; }
.clients-strip-header { text-align: center; margin-bottom: 40px; }
.clients-strip-header .section-tag { display: block; text-align: center; padding-left: 0; }
.clients-strip-header .section-tag::before { display: none; }
.clients-strip-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: .06em; color: var(--white); }
.clients-marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%); }
.clients-track { display: flex; align-items: center; width: max-content; animation: clientsScroll 30s linear infinite; }
.clients-track:hover { animation-play-state: paused; }
@keyframes clientsScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.client-logo-item { display: flex; align-items: center; justify-content: center; padding: 14px 36px; border-right: 1px solid rgba(255,255,255,.07); flex-shrink: 0; transition: opacity .3s; opacity: .55; filter: grayscale(100%) brightness(1.4); min-width: 150px; height: 76px; }
.client-logo-item:hover { opacity: 1; filter: grayscale(0%) brightness(1); }
.client-logo-item svg, .client-logo-item img { max-height: 40px; max-width: 120px; width: auto; height: auto; object-fit: contain; }
.client-logo-text { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: .95rem; letter-spacing: .12em; text-transform: uppercase; color: var(--white); text-align: center; line-height: 1.2; white-space: nowrap; }
.client-logo-text small { display: block; font-size: .6rem; letter-spacing: .2em; color: var(--gray); font-weight: 400; margin-top: 2px; }

/* ═══════════════════════════════════════════
   SEGMENTS
═══════════════════════════════════════════ */
.segments { background: #0f1120; }
.seg-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 3px; margin-top: 48px; background: rgba(255,255,255,.04); }
.seg-item { background: var(--navy2); padding: 40px 46px; display: flex; gap: 24px; align-items: flex-start; transition: background .3s; }
.seg-item:hover { background: rgba(1,101,176,.05); }
.seg-icon-box { width: 50px; height: 50px; flex-shrink: 0; border: 1px solid rgba(1,101,176,.25); display: flex; align-items: center; justify-content: center; }
.seg-icon-box svg { width: 24px; height: 24px; fill: var(--gold); }
.seg-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: .95rem; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.seg-text { font-size: .83rem; line-height: 1.75; color: var(--gray); }

/* ═══════════════════════════════════════════
   JOBS
═══════════════════════════════════════════ */
.jobs { background: var(--gold); padding: 72px 80px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; position: relative; overflow: hidden; }
.jobs::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(1,101,176,.88) 0%, rgba(1,101,176,.75) 50%, rgba(1,101,176,.55) 100%); z-index: 0; }
.jobs > * { position: relative; z-index: 1; }
.jobs h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; letter-spacing: .05em; color: var(--white); line-height: 1; }
.jobs p { font-size: .92rem; color: rgba(255,255,255,.85); margin-top: 12px; line-height: 1.7; }
.btn-dark { display: inline-flex; align-items: center; gap: 10px; padding: 15px 32px; background: var(--dark); color: var(--gold); font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: .88rem; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; border-radius: 3px; white-space: nowrap; transition: background .3s; }
.btn-dark:hover { background: var(--navy2); }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-section { background: var(--dark); display: grid; grid-template-columns: 1fr 1fr; padding: 0; }
.contact-left { padding: 80px; }
.contact-left h2 { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; letter-spacing: .05em; color: var(--white); line-height: 1.05; margin-bottom: 16px; }
.contact-left h2 span { color: var(--gold); }
.contact-left p { font-size: .9rem; color: var(--gray); line-height: 1.8; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; }
.contact-row-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(1,101,176,.1); display: flex; align-items: center; justify-content: center; }
.contact-row-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.contact-row-label { font-family: 'Rajdhani', sans-serif; font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.contact-row-val { font-size: .9rem; color: var(--white); }
.contact-row-val a { color: var(--white); text-decoration: none; }
.contact-row-val a:hover { color: var(--gold); }
.contact-form-area { background: var(--navy2); padding: 80px; border-left: 1px solid rgba(255,255,255,.06); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-family: 'Rajdhani', sans-serif; font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea { width: 100%; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 3px; padding: 12px 16px; color: var(--white); font-family: 'DM Sans', sans-serif; font-size: .9rem; outline: none; transition: border-color .3s; appearance: none; -webkit-appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: none; height: 100px; }
.form-select { background-color: var(--navy2); 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='%238a96a8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; color-scheme: dark; }
.form-select option { background-color: var(--navy2); color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; padding: 14px; background: var(--gold); color: var(--white); font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: .9rem; letter-spacing: .2em; text-transform: uppercase; border: none; border-radius: 3px; cursor: pointer; transition: background .3s; }
.form-submit:hover { background: var(--gold2); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer { background: var(--dark); border-top: 2px solid var(--gold); }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 56px; padding: 60px 80px; }
.footer-brand p { font-size: .85rem; color: var(--gray); line-height: 1.8; margin: 18px 0 24px; }
.footer-soc { display: flex; gap: 12px; }
.soc-btn { width: 38px; height: 38px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--gray); border-radius: 4px; transition: all .3s; line-height: 0; }
.soc-btn svg { transition: transform .25s; }
.soc-btn:hover svg { transform: scale(1.15); }
.soc-btn[aria-label="Facebook"]:hover  { background: #1877F2; border-color: #1877F2; color: #fff; }
.soc-btn[aria-label="Instagram"]:hover { background: #C13584; border-color: #C13584; color: #fff; }
.soc-btn[aria-label="TikTok"]:hover    { background: #010101; border-color: #69C9D0; color: #fff; }
.soc-btn[aria-label="YouTube"]:hover   { background: #FF0000; border-color: #FF0000; color: #fff; }
.footer-col-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: .75rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .85rem; color: var(--gray); text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '›'; color: var(--gold); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 18px 80px; display: flex; justify-content: space-between; align-items: center; font-size: .75rem; color: var(--gray); flex-wrap: wrap; gap: 12px; }
.footer-pay-badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pay-badge { height: 26px; border-radius: 4px; display: flex; align-items: center; justify-content: center; padding: 0 8px; flex-shrink: 0; }
.pay-visa    { background: #1A1F71; }
.pay-mc      { background: #252525; padding: 0 6px; }
.pay-amex    { background: #007BC1; }
.pay-oxxo    { background: #EF2323; }
.pay-7eleven { background: #fff; padding: 0 6px; }

/* ═══════════════════════════════════════════
   WA FLOAT
═══════════════════════════════════════════ */
.wa-float { position: fixed; bottom: 24px; right: 20px; width: 54px; height: 54px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,.4); z-index: 500; transition: transform .3s, box-shadow .3s; }
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,.5); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ═══════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════ */
#cookieBanner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; transform: translateY(100%); transition: transform .5s cubic-bezier(.22,1,.36,1); background: var(--navy2); border-top: 2px solid var(--gold); box-shadow: 0 -8px 40px rgba(0,0,0,.5); }
#cookieBanner.show { transform: translateY(0); }
.cookie-inner { max-width: 1400px; margin: 0 auto; padding: 18px 60px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.cookie-icon { font-size: 1.8rem; flex-shrink: 0; }
.cookie-text { flex: 1; min-width: 220px; }
.cookie-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: .95rem; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.cookie-desc { font-size: .8rem; color: var(--gray); line-height: 1.6; }
.cookie-desc a { color: var(--gold); text-decoration: none; }
.cookie-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept { padding: 10px 24px; background: var(--gold); color: var(--white); font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; border: none; border-radius: 3px; cursor: pointer; transition: background .25s; white-space: nowrap; }
.cookie-btn-accept:hover { background: var(--gold2); }
.cookie-btn-decline { padding: 10px 18px; background: transparent; color: var(--gray); font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; border: 1px solid rgba(255,255,255,.12); border-radius: 3px; cursor: pointer; transition: all .25s; white-space: nowrap; }
.cookie-btn-decline:hover { border-color: rgba(255,255,255,.3); color: var(--white); }
.cookie-close { width: 32px; height: 32px; background: transparent; border: none; color: var(--gray); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background .2s, color .2s; }
.cookie-close:hover { background: rgba(255,255,255,.08); color: var(--white); }
.cookie-toggles { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 8px; }
.cookie-toggle-item { display: flex; align-items: center; gap: 8px; font-size: .75rem; color: var(--gray); cursor: pointer; user-select: none; }
.cookie-toggle-item input[type="checkbox"] { display: none; }
.cookie-toggle-track { width: 32px; height: 17px; background: rgba(255,255,255,.1); border-radius: 10px; position: relative; transition: background .3s; flex-shrink: 0; }
.cookie-toggle-item input:checked ~ .cookie-toggle-track { background: var(--gold); }
.cookie-toggle-thumb { position: absolute; top: 2px; left: 2px; width: 13px; height: 13px; background: white; border-radius: 50%; transition: transform .3s; }
.cookie-toggle-item input:checked ~ .cookie-toggle-track .cookie-toggle-thumb { transform: translateX(15px); }
.cookie-toggle-label { font-size: .75rem; color: var(--gray2); }
.cookie-required { color: var(--gold); font-size: .65rem; }

/* ═══════════════════════════════════════════
   ── RESPONSIVE: TABLET (≤ 1024px) ──
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .topbar { padding: 8px 24px; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }

  section { padding: 64px 40px; }
  .hero-content { padding: 64px 40px; }
  .stats-section { padding: 56px 40px; }
  .clients-strip { padding: 48px 40px; }
  .jobs { padding: 60px 40px; }

  .about { grid-template-columns: 1fr; gap: 60px; }
  .about-img-badge { bottom: 16px; right: 16px; }

  .solutions-grid { grid-template-columns: repeat(2,1fr); }
  .stats-section { grid-template-columns: repeat(2,1fr); }
  .seg-grid { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-left { padding: 56px 40px 32px; }
  .contact-form-area { padding: 32px 40px 56px; border-left: none; border-top: 1px solid rgba(255,255,255,.06); }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 40px; }
  .footer-bottom { padding: 16px 40px; }

  .qs-grid { grid-template-columns: repeat(2,1fr); }
  .jobs { grid-template-columns: 1fr; text-align: left; }
}

/* ═══════════════════════════════════════════
   ── RESPONSIVE: MÓVIL (≤ 640px) ──
═══════════════════════════════════════════ */
@media (max-width: 640px) {

  /* — Topbar — */
  .topbar { display: none; }

  /* — Nav — */
  nav { padding: 0 16px; height: 60px; }
  .logo-svg { height: 28px; }

  /* — Hero — */
  .hero { min-height: 100svh; }
  .hero-content { padding: 48px 20px 60px; }
  .hero-badge { font-size: .65rem; letter-spacing: .25em; padding: 5px 12px; margin-bottom: 18px; }
  .hero-title { font-size: clamp(2.6rem, 12vw, 3.8rem); }
  .hero-sub { font-size: .9rem; margin: 12px 0 28px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-secondary { justify-content: center; padding: 14px 20px; font-size: .85rem; width: 100%; max-width: 320px; }
  .hero-stats { gap: 20px; margin-top: 32px; padding-top: 24px; flex-wrap: wrap; }
  .hero-stats > div { flex: 1; min-width: 80px; }
  .h-stat-num { font-size: 2rem; }
  .h-stat-label { font-size: .68rem; }
  .hero-slide-dots { bottom: 16px; right: 16px; gap: 6px; }
  .hero-slide-dot { width: 20px; }
  .hero-slide-dot.active { width: 32px; }

  /* — Location marquee — */
  .lm-item { font-size: .75rem; letter-spacing: .2em; }

  /* — Quick services — */
  .qs-grid { grid-template-columns: 1fr 1fr; }
  .qs-item { padding: 20px 16px; gap: 12px; flex-direction: column; align-items: center; text-align: center; border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .qs-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.06); }
  .qs-item:nth-last-child(-n+2) { border-bottom: none; }
  .qs-icon { width: 40px; height: 40px; }
  .qs-title { font-size: .85rem; }
  .qs-desc { font-size: .74rem; }

  /* — Secciones — */
  section { padding: 52px 20px; }
  .section-title { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .section-desc { font-size: .88rem; }

  /* — About — */
  .about { padding: 52px 20px; gap: 40px; }
  .about-img { aspect-ratio: 16/9; }
  .about-img-badge { bottom: 12px; right: 12px; padding: 18px 22px; }
  .about-img-badge-num { font-size: 2.2rem; }
  .certs-grid { grid-template-columns: 1fr; gap: 8px; }
  .cert-item { padding: 12px 14px; }

  /* — Solutions — */
  .solutions { padding: 52px 20px; }
  .solutions-header { flex-direction: column; align-items: flex-start; margin-bottom: 28px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .sol-card { aspect-ratio: unset; min-height: 200px; }
  .sol-overlay { padding: 20px 20px 22px; justify-content: flex-end; }
  .sol-tag { font-size: .62rem; letter-spacing: .28em; margin-bottom: 4px; }
  .sol-title { font-size: 1.3rem; margin-bottom: 6px; }
  /* En móvil mostramos el desc siempre visible */
  .sol-desc { opacity: 1; transform: none; max-height: none; font-size: .78rem; line-height: 1.55; }
  .sol-arrow { opacity: 1; margin-top: 8px; font-size: .68rem; }

  /* — Stats — */
  .stats-section { grid-template-columns: 1fr 1fr; padding: 40px 20px; gap: 0; }
  .stat-card { padding: 24px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .stat-card:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.15); }
  .stat-card:nth-last-child(-n+2) { border-bottom: none; }
  .stat-num { font-size: 3rem; }

  /* — Clients — */
  .clients-strip { padding: 40px 0; }
  .clients-strip-header { padding: 0 20px; }
  .client-logo-item { padding: 12px 24px; min-width: 130px; height: 66px; }

  /* — Segments — */
  .segments { padding: 52px 20px; }
  .seg-grid { grid-template-columns: 1fr; margin-top: 32px; }
  .seg-item { padding: 28px 20px; gap: 16px; }
  .seg-icon-box { width: 44px; height: 44px; }
  .seg-title { font-size: .9rem; }
  .seg-text { font-size: .8rem; }

  /* — Jobs — */
  .jobs { padding: 48px 20px; grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .jobs h2 { font-size: 2.2rem; }
  .jobs p { font-size: .88rem; }
  .btn-dark { width: 100%; justify-content: center; max-width: 320px; }

  /* — Contact — */
  .contact-section { padding: 0; }
  .contact-left { padding: 48px 20px 28px; }
  .contact-left h2 { font-size: 2.4rem; }
  .contact-form-area { padding: 28px 20px 48px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group { margin-bottom: 16px; }

  /* — Footer — */
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-pay-badges { gap: 6px; }

  /* — WA float — */
  .wa-float { bottom: 16px; right: 14px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }

  /* — Cookie banner — */
  .cookie-inner { padding: 16px 16px 20px; gap: 14px; }
  .cookie-actions { width: 100%; justify-content: flex-end; gap: 8px; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; padding: 10px 12px; font-size: .78rem; }
  .cookie-toggles { gap: 12px; }
}

/* ═══════════════════════════════════════════
   ── RESPONSIVE: MUY PEQUEÑO (≤ 380px) ──
═══════════════════════════════════════════ */
@media (max-width: 380px) {
  .hero-title { font-size: 2.4rem; }
  .qs-grid { grid-template-columns: 1fr; }
  .qs-item { border-right: none !important; }
  .qs-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.06); }
  .qs-item:last-child { border-bottom: none; }
  .stats-section { grid-template-columns: 1fr; }
  .stat-card { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.15) !important; }
  .stat-card:last-child { border-bottom: none !important; }
}