/* ═══════════════════════════════════════════════════════
   AUROADUANAS — PREMIUM CORPORATE CSS
   Design System: Navy + Cyan + White | Inter + Plus Jakarta Sans
═══════════════════════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors */
  --navy:       #0A1628;
  --navy-80:    hwb(0 87% 13%);
  --navy-60:    #1E3A5F;
  --blue:       #0066FF;
  --blue-light: #3385FF;
  --cyan:       #00C2CB;
  --cyan-light: #33D1D9;
  --indigo:     #6366F1;
  --amber:      #F59E0B;
  --green:      #10B981;
  --princ:      #2D348B;
  --sec:        #F67B01;



  /* Neutrals */
  --white:      #FFFFFF;
  --bg:         #F8FAFC;
  --bg-alt:     #F1F5F9;
  --border:     #E2E8F0;
  --border-dk:  #CBD5E1;
  --text:       #0F172A;
  --text-2:     #334155;
  --text-3:     #64748B;
  --text-4:     #94A3B8;
  --text-secondary: #64748B;

  /* Gradients */
  --grad-main:  linear-gradient(135deg, #0066FF 0%, #00C2CB 100%);
  --grad-dark:  linear-gradient(135deg, #0A1628 0%, #1E3A5F 100%);
  --grad-hero:  linear-gradient(160deg, #05101F 0%, #0A1F3E 50%, #0D2B52 100%);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:  0 16px 40px rgba(0,0,0,0.10), 0 6px 16px rgba(0,0,0,0.06);
  --shadow-xl:  0 32px 64px rgba(0,0,0,0.12), 0 12px 24px rgba(0,0,0,0.08);
  --shadow-blue: 0 8px 32px rgba(0,102,255,0.25);
  --shadow-cyan: 0 8px 32px rgba(0,194,203,0.20);

  /* Spacing */
  --section-py: 96px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── UTILITIES ────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: var(--section-py) 0; position: relative; overflow: hidden; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.section-eyebrow.white { color: rgba(255,255,255,0.7); }

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.15;
}

.section-desc {
  font-size: 17px;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 600px;
}

.section-body {
  font-size: 16px;
  color: var(--text-3);
  line-height: 1.75;
  margin-bottom: 16px;
}

.section-header { margin-bottom: 64px; }
.section-header.text-center { text-align: center; }
.section-header.text-center .section-desc { margin: 0 auto; }

.gradient-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-light {
  background: linear-gradient(135deg, #60A5FA 0%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center { text-align: center; }
.mt-6 { margin-top: 24px; }

/* ── BUTTONS ──────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--grad-main);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-blue);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,102,255,0.35);
}
.btn-primary.btn-sm { padding: 10px 20px; font-size: 13px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  transition: all 0.25s var(--ease);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-1px);
}

.btn-mini {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  transition: gap 0.2s var(--ease);
}
.btn-mini:hover { gap: 8px; }

/* ── SCROLL REVEAL ANIMATIONS ─────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-float {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-spring);
}
.reveal-float-2 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out) 0.2s, transform 0.6s var(--ease-spring) 0.2s;
}
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

.revealed {
  opacity: 1 !important;
  transform: translate(0,0) !important;
}

/* ══════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(238, 237, 237, 0.97);;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(2,91,151,0.06);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-main { font-size: 17px; color: white; letter-spacing: -0.02em; }
.logo-main strong { font-weight: 800; }
.logo-sub { font-size: 10px; color: var(--text-4); letter-spacing: 0.06em; text-transform: uppercase; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--princ);
  border-radius: var(--r-sm);
  transition: all 0.2s var(--ease);
}
.nav-link:hover { color: var(--sec); background: rgba(255,255,255,0.07); }
.nav-link svg { transition: transform 0.2s var(--ease); }
.nav-item.has-mega:hover .nav-link svg { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: -20px;
  width: 680px;
  background: white;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  padding: 28px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav-item.has-mega:hover .mega-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mega-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.mega-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-4);
  margin-bottom: 12px;
}
.mega-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border-radius: var(--r-md);
  transition: background 0.2s;
  margin-bottom: 4px;
}
.mega-link:hover { background: var(--bg); }
.mega-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.mega-link strong { display: block; font-size: 13px; color: var(--text); margin-bottom: 2px; }
.mega-link span { font-size: 12px; color: var(--text-3); }

.mega-highlight { border-left: 1px solid var(--border); padding-left: 24px; }
.mega-card-highlight {
  background: var(--grad-dark);
  border-radius: var(--r-md);
  padding: 16px;
  margin-top: 8px;
}
.mega-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  background: rgba(0,194,203,0.15);
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.mega-card-highlight h4 { font-size: 14px; color: white; margin-bottom: 6px; }
.mega-card-highlight p { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; margin-bottom: 12px; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--princ);
  transition: color 0.2s;
}
.nav-tel:hover { color: var(--sec); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--princ);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

/* Background elements */
.hero-bg { position: absolute; inset: 0; overflow: hidden; }

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,102,255,0.18) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation: floatOrb 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,194,203,0.12) 0%, transparent 70%);
  bottom: 0; left: 100px;
  animation: floatOrb 10s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(99,102,241,0.10) 0%, transparent 70%);
  top: 50%; right: 30%;
  animation: floatOrb 12s ease-in-out infinite 2s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(0,194,203,0.1);
  border: 1px solid rgba(0,194,203,0.25);
  border-radius: 40px;
  font-size: 18px;
  font-weight: 500;
  color: var(--cyan-light);
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 4px var(--cyan); }
  50% { box-shadow: 0 0 12px var(--cyan), 0 0 24px rgba(0,194,203,0.4); }
}

.hero-title {
  font-size: clamp(15px, 4.5vw, 30px);
  color: white;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 17px;
  color: rgb(255, 255, 255);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
}
.stat-item { text-align: center; flex: 1; padding: 0 16px; }
.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.stat-plus { font-size: 20px; font-weight: 700; color: var(--cyan); }
.stat-label { display: block; font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* Dashboard Card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: 0;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  width: 100%;
  max-width: 520px;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.dash-dots span:first-child { background: #FF5F57; }
.dash-dots span:nth-child(2) { background: #FEBC2E; }
.dash-dots span:nth-child(3) { background: #28C840; }
.dash-title { flex: 1; font-size: 12px; color: rgba(255,255,255,0.5); text-align: center; }
.dash-live {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: #10B981; font-weight: 600;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #10B981;
  animation: pulseDot 1.5s ease-in-out infinite;
}

.dash-body { padding: 20px; }
.dash-map { margin-bottom: 16px; border-radius: var(--r-md); overflow: hidden; background: rgba(255,255,255,0.02); }
.world-map-svg { width: 100%; height: 160px; }

.route-line { animation: dashAnim 2s linear infinite; }
.route-line-2 { animation: dashAnim 3s linear infinite; }
.route-line-3 { animation: dashAnim 2.5s linear infinite; }
@keyframes dashAnim {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -14; }
}

.pulse-node { animation: pulseNode 2s ease-in-out infinite; }
.pulse-ring { animation: pulseRing 2s ease-in-out infinite; }
.pulse-node-2 { animation: pulseNode 2s ease-in-out infinite 0.5s; }
.pulse-ring-2 { animation: pulseRing 2s ease-in-out infinite 0.5s; }
@keyframes pulseNode { 0%,100% { r:5; } 50% { r:7; } }
@keyframes pulseRing { 0%,100% { r:12; opacity:0.15; } 50% { r:18; opacity:0.05; } }

.dash-ops { display: flex; flex-direction: column; gap: 10px; }
.op-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.05);
}
.op-icon { font-size: 18px; flex-shrink: 0; }
.op-info { flex: 1; min-width: 0; }
.op-name { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); }
.op-detail { display: block; font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.op-status {
  font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 20px; white-space: nowrap;
}
.status-green { background: rgba(16,185,129,0.15); color: #34D399; }
.status-blue { background: rgba(0,102,255,0.15); color: #60A5FA; }
.status-cyan { background: rgba(0,194,203,0.15); color: var(--cyan-light); }

/* Float cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: white;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 2;
}
.float-left { bottom: 40px; left: -20px; animation: floatFC 5s ease-in-out infinite; }
.float-right { top: 60px; right: -20px; animation: floatFC 5s ease-in-out infinite 1.5s; }
@keyframes floatFC {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fc-icon { font-size: 20px; }
.fc-text { display: flex; flex-direction: column; }
.fc-text strong { font-size: 13px; color: var(--text); }
.fc-text span { font-size: 11px; color: var(--text-3); }

/* Hero brands bar */
.hero-brands {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.388);
  max-width: 1280px;
  margin: 0 auto;
}
.brands-label { font-size: 11px; color: rgb(255, 255, 255); white-space: nowrap; letter-spacing: 0.06em; text-transform: uppercase; }
.brands-row { display: flex; gap: 8px; flex-wrap: wrap; }
.brand-chip {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.346);
  border-radius: 20px;
  transition: all 0.2s;
}
.brand-chip:hover { color: white; border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); }

/* ══════════════════════════════════════════════════════
   QUIÉNES SOMOS
══════════════════════════════════════════════════════ */
.nosotros { background: var(--white); }

.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nosotros-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.n-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-2);
}

.nosotros-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.glass-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--ease);
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-dk);
}

.ic-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  border-radius: var(--r-md);
  margin-bottom: 12px;
}

.info-card h4 { font-size: 15px; color: var(--text); margin-bottom: 8px; }
.info-card p { font-size: 13px; color: var(--text-3); line-height: 1.6; }

/* ══════════════════════════════════════════════════════
   SERVICIOS
══════════════════════════════════════════════════════ */
.servicios { background: var(--bg); }

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

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-card--highlight {
  background: var(--grad-dark);
  border-color: transparent;
  color: white;
}
.service-card--highlight h3,
.service-card--highlight p { color: white; }
.service-card--highlight .sc-list li { color: rgba(255,255,255,0.65); }
.service-card--highlight .sc-list li::before { background: var(--cyan); }
.service-card--highlight .sc-cta { color: var(--cyan-light); }
.service-card--highlight .sc-icon-wrap.white { background: rgba(255,255,255,0.1); }
.service-card--highlight .sc-icon-wrap.white svg { stroke: white; }

.sc-icon-wrap {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  margin-bottom: 20px;
}
.sc-icon-wrap.blue { background: rgba(0,102,255,0.08); }
.sc-icon-wrap.blue svg { stroke: var(--blue); }
.sc-icon-wrap.cyan { background: rgba(0,194,203,0.08); }
.sc-icon-wrap.cyan svg { stroke: var(--cyan); }
.sc-icon-wrap.indigo { background: rgba(99,102,241,0.08); }
.sc-icon-wrap.indigo svg { stroke: var(--indigo); }
.sc-icon-wrap.amber { background: rgba(245,158,11,0.08); }
.sc-icon-wrap.amber svg { stroke: var(--amber); }
.sc-icon-wrap.green { background: rgba(16,185,129,0.08); }
.sc-icon-wrap.green svg { stroke: var(--green); }
.sc-icon-wrap.white { background: rgba(255,255,255,0.08); }

.service-card h3 { font-size: 18px; color: var(--text); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-3); line-height: 1.65; margin-bottom: 16px; }

.sc-list { list-style: none; margin-bottom: 20px; }
.sc-list li {
  font-size: 13px;
  color: var(--text-3);
  padding: 4px 0 4px 16px;
  position: relative;
}
.sc-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.sc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.2s var(--ease);
}
.sc-cta:hover { gap: 10px; }

/* ══════════════════════════════════════════════════════
   ACOMPAÑAMIENTO ESTRATÉGICO
══════════════════════════════════════════════════════ */
.estrategico { background: white; }

.estrategico-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.timeline-track {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-step {
  display: grid;
  grid-template-columns: 48px 1fr 44px;
  gap: 20px;
  align-items: start;
  padding-bottom: 36px;
  position: relative;
}
.timeline-step::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--border-dk), transparent);
}
.timeline-step:last-child::before { display: none; }
.timeline-step:last-child { padding-bottom: 0; }

.ts-number {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-main);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-blue);
}
.ts-content h4 { font-size: 16px; color: var(--text); margin-bottom: 8px; padding-top: 12px; }
.ts-content p { font-size: 14px; color: var(--text-3); line-height: 1.65; }
.ts-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  margin-top: 8px;
  flex-shrink: 0;
}

/* Features grid */
.estrategico-features {
  background: var(--bg);
  border-radius: var(--r-xl);
  padding: 36px;
  border: 1px solid var(--border);
}
.estrategico-features h3 { font-size: 22px; color: var(--text); margin-bottom: 28px; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.fi-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.feature-item h5 { font-size: 14px; color: var(--text); margin-bottom: 4px; }
.feature-item p { font-size: 13px; color: var(--text-3); line-height: 1.55; }

/* ══════════════════════════════════════════════════════
   STATS SECTION
══════════════════════════════════════════════════════ */
.stats-section {
  background: var(--grad-dark);
  padding: 80px 0;
  overflow: hidden;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.big-stat {
  display: flex;
  flex-direction: column;
}
.bs-number {
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 900;
  color: white;
  letter-spacing: -0.04em;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
}
.bs-plus { font-size: 48px; font-weight: 800; color: var(--cyan); }
.bs-label { font-size: 16px; color: rgba(255,255,255,0.45); margin-top: 8px; }

.stats-right { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mini-stat {
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
}
.ms-num {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ms-pct { font-size: 28px; font-weight: 700; color: var(--cyan); }
.ms-label { display: block; font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 6px; line-height: 1.4; }

/* ══════════════════════════════════════════════════════
   ECOSISTEMA
══════════════════════════════════════════════════════ */
.ecosistema { background: var(--bg); overflow: hidden; }

/* Circular network visualization */
.eco-network {
  position: relative;
  width: 520px;
  height: 520px;
  margin: 0 auto 64px;
}

.eco-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-hub {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,102,255,0.15);
  animation: expandRing 3s ease-in-out infinite;
}
.hub-ring-1 { width: 80px; height: 80px; }
.hub-ring-2 { width: 140px; height: 140px; animation-delay: 0.5s; border-color: rgba(0,194,203,0.1); }
.hub-ring-3 { width: 200px; height: 200px; animation-delay: 1s; border-color: rgba(99,102,241,0.08); }
@keyframes expandRing {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 0.3; }
}

.hub-core {
  position: relative;
  z-index: 1;
  width: 80px; height: 80px;
  background: var(--grad-main);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: var(--shadow-blue), 0 0 40px rgba(0,102,255,0.3);
}
.hub-core span { font-size: 10px; font-weight: 700; color: white; }

.eco-satellites { position: absolute; inset: 0; }

.eco-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96px;
  transform:
    rotate(var(--angle))
    translateX(var(--r))
    rotate(calc(-1 * var(--angle)));
  transform-origin: 0 0;
  margin-top: -48px;
  margin-left: -48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.eco-node:hover, .eco-node--active {
  box-shadow: var(--shadow-blue);
  border-color: var(--blue);
  transform:
    rotate(var(--angle))
    translateX(calc(var(--r) - 4px))
    rotate(calc(-1 * var(--angle)));
}
.eco-node--active { border-color: var(--blue); }
.en-icon { font-size: 20px; }
.eco-node strong { font-size: 11px; color: var(--text); line-height: 1.2; }
.eco-node span { font-size: 9px; color: var(--text-3); line-height: 1.3; }

/* Eco cards row */
.eco-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.eco-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: all 0.3s var(--ease);
}
.eco-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.ecc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.ecc-emoji { font-size: 28px; }
.ecc-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  background: rgba(0,102,255,0.08);
  padding: 3px 8px;
  border-radius: 20px;
}
.ecc-badge.active { color: var(--cyan); background: rgba(0,194,203,0.08); }

.eco-card h4 { font-size: 15px; color: var(--text); margin-bottom: 6px; }
.eco-card p { font-size: 13px; color: var(--text-3); line-height: 1.55; }

/* ══════════════════════════════════════════════════════
   INFRAESTRUCTURA
══════════════════════════════════════════════════════ */
.infraestructura { background: white; }

.infra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.infra-locations { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.location-item { display: flex; align-items: flex-start; gap: 16px; }

.loc-pin {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.loc-pin::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: pinPulse 2s ease-in-out infinite;
}
.loc-pin.bogota { background: rgba(0,102,255,0.1); }
.loc-pin.bogota::before { content: '🏙️'; font-size: 18px; }
.loc-pin.bogota::after { border: 2px solid rgba(0,102,255,0.3); }
.loc-pin.medellin { background: rgba(0,194,203,0.1); }
.loc-pin.medellin::before { content: '🌆'; font-size: 18px; }
.loc-pin.medellin::after { border: 2px solid rgba(0,194,203,0.3); }
.loc-pin.miami { background: rgba(245,158,11,0.1); }
.loc-pin.miami::before { content: '🌴'; font-size: 18px; }
.loc-pin.miami::after { border: 2px solid rgba(245,158,11,0.3); }
@keyframes pinPulse { 0%,100% { transform:scale(1); opacity:1; } 50% { transform:scale(1.2); opacity:0.5; } }

.loc-info h5 { font-size: 15px; color: var(--text); margin-bottom: 4px; }
.loc-info p { font-size: 13px; color: var(--text-3); line-height: 1.5; }

/* Map card */
.map-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.map-title { font-size: 13px; font-weight: 600; color: var(--text); }
.map-live { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--green); font-weight: 600; }
.map-live .live-dot { background: var(--green); box-shadow: 0 0 6px var(--green); }

.map-body { padding: 20px; }
.latam-map { width: 100%; height: auto; }

.map-legend {
  display: flex;
  gap: 16px;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.ml-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-3); }
.ml-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ml-dot.blue { background: var(--blue); }
.ml-dot.cyan { background: var(--cyan); }
.ml-dot.amber { background: var(--amber); }

/* ══════════════════════════════════════════════════════
   CLIENTES
══════════════════════════════════════════════════════ */
.clientes { background: var(--bg); }

.clients-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}
.ci-tag {
  padding: 6px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
  transition: all 0.2s;
}
.ci-tag:hover { border-color: var(--blue); color: var(--blue); }

/* Logo carousel */
.logos-track-wrap {
  overflow: hidden;
  margin: 0 -32px 48px;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.logos-track {
  display: flex;
  gap: 32px;
  animation: scrollLogos 25s linear infinite;
  width: max-content;
}
@keyframes scrollLogos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logos-track:hover { animation-play-state: paused; }

.logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-3);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.logo-placeholder:hover { border-color: var(--border-dk); color: var(--text); }

/* Testimonials */
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonio-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  transition: all 0.3s var(--ease);
}
.testimonio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.tc-quote {
  font-size: 64px;
  font-family: 'Plus Jakarta Sans', serif;
  line-height: 0.8;
  color: var(--blue);
  opacity: 0.15;
  margin-bottom: 16px;
  display: block;
}
.testimonio-card p { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.tc-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.tc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-main);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.tc-author strong { display: block; font-size: 13px; color: var(--text); }
.tc-author span { font-size: 12px; color: var(--text-3); }

/* ══════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════ */
.faq-section { background: white; }

.faq-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--blue); }
.faq-q svg { flex-shrink: 0; transition: transform 0.3s var(--ease); }
.faq-q.active { color: var(--blue); }
.faq-q.active svg { transform: rotate(180deg); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease);
}
.faq-a.open { max-height: 200px; }
.faq-a p { padding-bottom: 20px; font-size: 14px; color: var(--text-3); line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════ */
.cta-section { background: var(--bg); }

.cta-wrapper {
  background: var(--grad-dark);
  border-radius: 32px;
  padding: 64px 72px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.cta-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.cta-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,102,255,0.2) 0%, transparent 70%);
  top: -100px; right: -50px;
}
.cta-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,194,203,0.15) 0%, transparent 70%);
  bottom: -80px; left: 100px;
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
  font-size: clamp(32px, 4vw, 48px);
  color: white;
  margin-bottom: 20px;
  line-height: 1.15;
}
.cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 48px;
}

/* Form */
.cta-form { max-width: 720px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  font-size: 14px;
  color: white;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s var(--ease);
  outline: none;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(0,194,203,0.5);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(0,194,203,0.1);
}
.form-select { cursor: pointer; }
.form-select option { background: var(--navy); color: white; }
.form-textarea { resize: vertical; min-height: 80px; }

.form-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--grad-main);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-md);
  border: none;
  box-shadow: var(--shadow-blue);
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,102,255,0.4); }

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: rgba(37,211,102,0.15);
  color: #25D366;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: var(--r-md);
  transition: all 0.25s var(--ease);
}
.btn-cta-whatsapp:hover {
  background: rgba(37,211,102,0.22);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-socials { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.social-btn:hover { background: rgba(255,255,255,0.12); color: white; border-color: rgba(255,255,255,0.2); }

.footer-col h5 { font-size: 13px; color: white; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul a:hover { color: rgba(255,255,255,0.8); }

.footer-contact { gap: 12px !important; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; opacity: 0.5; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-menu, .nav-actions .nav-tel { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn-primary { display: none; }

  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .stat-divider { display: none; }

  .nosotros-grid { grid-template-columns: 1fr; gap: 48px; }
  .nosotros-cards { order: -1; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .estrategico-layout { grid-template-columns: 1fr; gap: 40px; }
  .infra-grid { grid-template-columns: 1fr; gap: 48px; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .eco-cards-row { grid-template-columns: repeat(2, 1fr); }
  .stats-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .stats-right { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-wrapper { padding: 48px 40px; }
  .eco-network { display: none; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --section-py: 64px; }
  .container { padding: 0 20px; }

  .services-grid { grid-template-columns: 1fr; }
  .nosotros-cards { grid-template-columns: 1fr; }
  .eco-cards-row { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .btn-cta-primary, .btn-cta-whatsapp { justify-content: center; }
  .cta-wrapper { padding: 32px 24px; border-radius: 20px; }
  .hero-stats { padding: 16px; }
  .hero-brands { flex-direction: column; align-items: flex-start; }
  .stats-right { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════
   PRODUCTION FIXES — Mobile navigation, accessibility and responsive polish
══════════════════════════════════════════════════════ */
:root { --navy-80: #E5E7EB; }

.nav-logo img { width: auto; max-height: 42px; }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(8px); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px 24px;
  background: rgba(10, 22, 40, 0.98);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 12px 14px;
  color: rgba(255,255,255,0.86);
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.mobile-link:hover,
.mobile-link:focus-visible {
  color: #fff;
  background: rgba(255,255,255,0.09);
  outline: none;
}
body.menu-open { overflow: hidden; }

@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

@media (max-width: 1024px) {
  .nav-container { padding: 0 20px; gap: 16px; }
  .mega-menu { display: none; }
}

@media (max-width: 640px) {
  .nav-container { height: 64px; }
  .navbar + .mobile-menu { top: 64px; }
  .hero { padding-top: 64px; min-height: auto; }
  .hero-container { padding: 64px 20px 48px; gap: 32px; }
  .hero-title { font-size: clamp(34px, 10vw, 46px); }
  .hero-subtitle, .section-desc { font-size: 15px; }
  .hero-actions, .inner-hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; width: 100%; }
  .stats-right { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 40px; }
}

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

/* ══════════════════════════════════════════════════════
   2026 VISUAL UPGRADE — Photos, 3D, Animations
══════════════════════════════════════════════════════ */

/* ── Hero photo background ── */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: saturate(0.5);
}

/* ── Nosotros photo ── */
.nosotros-grid { align-items: start; }

.nosotros-photo { position: relative; }

.photo-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.photo-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.photo-frame:hover img { transform: scale(1.04); }

.photo-frame-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 10px 16px;
  color: white;
}
.pfb-icon { font-size: 22px; }
.photo-frame-badge strong { display: block; font-size: 13px; color: white; }
.photo-frame-badge span { font-size: 11px; color: rgba(255,255,255,0.5); }

.photo-frame-badge2 {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,194,203,0.15);
  border: 1px solid rgba(0,194,203,0.3);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan-light);
}

/* ── Nosotros icon grid ── */
.nosotros-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.nic-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all 0.3s var(--ease);
}
.nic-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-dk);
}
.nic-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.nic-item strong { font-size: 13px; color: var(--text); }
.nic-item span { font-size: 12px; color: var(--text-3); }

/* ── Service photo cards ── */
.svc-photo-card { padding: 0; overflow: hidden; }
.svc-photo-card:hover { transform: translateY(-8px); }

.svc-photo-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.svc-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  display: block;
}
.svc-photo-card:hover .svc-photo-wrap img { transform: scale(1.08); }

.svc-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(10,22,40,0.55) 100%);
}

.svc-icon-over {
  position: absolute;
  bottom: 14px;
  left: 16px;
  margin: 0;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
}
.svc-icon-over.blue { background: rgba(0,102,255,0.85); }
.svc-icon-over.blue svg { stroke: white; }
.svc-icon-over.cyan { background: rgba(0,194,203,0.85); }
.svc-icon-over.cyan svg { stroke: white; }
.svc-icon-over.indigo { background: rgba(99,102,241,0.85); }
.svc-icon-over.indigo svg { stroke: white; }
.svc-icon-over.amber { background: rgba(245,158,11,0.85); }
.svc-icon-over.amber svg { stroke: white; }
.svc-icon-over.green { background: rgba(16,185,129,0.85); }
.svc-icon-over.green svg { stroke: white; }

.svc-body {
  padding: 22px 24px 24px;
}
.svc-body h3 { font-size: 17px; color: var(--text); margin-bottom: 8px; }
.svc-body p { font-size: 13px; color: var(--text-3); line-height: 1.6; margin-bottom: 14px; }

/* ── Process visual ── */
.process-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 64px;
}
.pv-step {
  text-align: center;
}
.pv-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 200px;
  margin-bottom: 16px;
}
.pv-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  display: block;
}
.pv-step:hover .pv-photo img { transform: scale(1.07); }
.pv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.7) 0%, rgba(10,22,40,0.1) 60%);
}
.pv-num {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-size: 32px;
  font-weight: 900;
  color: rgba(255,255,255,0.25);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
}
.pv-step h4 { font-size: 15px; color: var(--text); margin-bottom: 4px; }
.pv-step p { font-size: 13px; color: var(--text-3); line-height: 1.55; }

.pv-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  margin-top: 86px;
}

/* ── Differentiators grid ── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.diff-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.diff-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.diff-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.diff-item:hover::before { transform: scaleX(1); }
.diff-emoji { font-size: 28px; margin-bottom: 4px; }
.diff-item strong { font-size: 14px; color: var(--text); }
.diff-item span { font-size: 13px; color: var(--text-3); line-height: 1.5; }

/* ── Stats photo background ── */
.stats-section { position: relative; overflow: hidden; }
.stats-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.stats-photo-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.1;
  filter: saturate(0.3);
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-dark);
  z-index: 1;
  opacity: 0.92;
}

/* ── Testimonial photos ── */
.tc-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

/* ── CTA photo panel ── */
.cta-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}
.cta-photo-panel {
  position: relative;
  overflow: hidden;
}
.cta-photo-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.cpp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 24px 20px;
}
.cpp-stat { display: flex; flex-direction: column; gap: 2px; }
.cpp-num { font-size: 28px; font-weight: 900; color: white; font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; }
.cpp-lbl { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; }

.cta-content { padding: 52px 52px 52px 48px; position: relative; z-index: 1; }

/* ── 3D card tilt on hover ── */
.service-card.svc-photo-card,
.info-card.glass-card,
.diff-item,
.mini-stat {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

/* ── Shimmer loading animation on photos ── */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

/* ── Glow pulse on section eyebrows ── */
.section-eyebrow {
  position: relative;
}

/* ── loc-pin classes ── */
.loc-pin {
  background: rgba(0,102,255,0.12);
}
.loc-pin.auroaduanas { background: rgba(0,102,255,0.12); }
.loc-pin.auroaduanas::before { content: '🏛️'; font-size: 16px; }
.loc-pin.auroaduanas::after { border: 2px solid rgba(0,102,255,0.3); }
.loc-pin.alamos { background: rgba(0,194,203,0.12); }
.loc-pin.alamos::before { content: '🏭'; font-size: 16px; }
.loc-pin.alamos::after { border: 2px solid rgba(0,194,203,0.3); }
.loc-pin.aduanas { background: rgba(245,158,11,0.12); }
.loc-pin.aduanas::before { content: '✈️'; font-size: 16px; }
.loc-pin.aduanas::after { border: 2px solid rgba(245,158,11,0.3); }

/* ── Responsive updates for new components ── */
@media (max-width: 1024px) {
  .process-visual {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .pv-connector { display: none; }
  .nosotros-grid { grid-template-columns: 1fr; }
  .nosotros-photo { order: -1; }
  .photo-frame img { height: 340px; }
  .cta-wrapper { grid-template-columns: 1fr; }
  .cta-photo-panel { height: 200px; }
  .cta-content { padding: 40px; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .process-visual { grid-template-columns: 1fr; gap: 16px; }
  .nosotros-icon-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .photo-frame img { height: 260px; }
  .cta-content { padding: 28px 24px; }
}
