/* ─── LOCAL FONTS ─── */
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/BarlowCondensed-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/BarlowCondensed-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/BarlowCondensed-ExtraBold.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/BarlowCondensed-Black.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/BarlowCondensed-BlackItalic.woff2') format('woff2');
  font-weight: 900; font-style: italic; font-display: swap;
}

:root {
    --yellow: #FCEA10;
    --black: #000000;
    --dark: #0a0a0a;
    --dark2: #111111;
    --dark3: #1a1a1a;
    --white: #ffffff;
    --gray: #888888;
    --light-gray: #cccccc;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 60px;
    height: 90px;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(252,234,16,0.15);
    transition: all 0.3s;
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }

  .nav-logo-img {
    height: 70px;
    width: auto;
    display: block;
    transition: opacity 0.2s;
  }
  .nav-logo-img:hover {
    opacity: 0.85;
  }
  .hero-logo-img {
    width: clamp(280px, 45vw, 500px);
    height: auto;
    position: relative; z-index: 2;
    
    animation: logoFloat 4s ease-in-out infinite;
  }
  .footer-logo-img {
    height: 70px;
    width: auto;
    margin-bottom: 12px;
    display: block;
    
  }

  .nav-logo-mark {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--yellow);
    letter-spacing: -1px;
    font-style: italic;
    line-height: 1;
  }
  .nav-logo-text {
    display: flex; flex-direction: column;
    border-left: 2px solid var(--yellow);
    padding-left: 12px;
    line-height: 1.1;
  }
  .nav-logo-text span:first-child {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800; font-size: 0.85rem; letter-spacing: 3px; color: var(--white);
  }
  .nav-logo-text span:last-child {
    font-size: 0.65rem; letter-spacing: 2px; color: var(--yellow); font-weight: 500;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex; align-items: center; gap: 36px; list-style: none;
  }
  .nav-links a {
    color: var(--light-gray); text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--yellow); transform: scaleX(0);
    transition: transform 0.2s;
  }
  .nav-links a:hover { color: var(--yellow); }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-cta {
    position: relative;
    background: transparent !important; color: var(--black) !important;
    padding: 10px 28px; font-weight: 700 !important;
    transition: all 0.2s !important;
    z-index: 1;
    border: none !important;
  }
  .nav-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--yellow);
    transform: skewX(-15deg);
    z-index: -1;
    transition: all 0.2s;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover::before { background: #e8d800; scale: 1.05; }
  .nav-cta:hover { transform: translateY(-1px) !important; }

  /* ─── HAMBURGER ─── */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px; height: 44px;
    background: none; border: none;
    cursor: pointer; padding: 8px;
    z-index: 3100;
  }
  .hamburger span {
    display: block;
    width: 26px; height: 2px;
    background: var(--yellow);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* ─── MOBILE MENU ─── */
  .nav-links.mobile-open {
    display: flex !important;
    background-color: #000000 !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100vw !important;
    height: 100vh !important;
  }
  nav.nav-open {
    background: #000000 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 3000 !important;
  }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    background: var(--black);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding-top: 80px;
  }

  .hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
  }


  .hero-glow {
    position: absolute; z-index: 2; top: 20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(252,234,16,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-glow2 {
    position: absolute; bottom: -10%; left: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(252,234,16,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-side-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 65%;
    background: linear-gradient(to right, 
      rgba(0,0,0,0.85) 0%, 
      rgba(0,0,0,0.7) 50%, 
      rgba(0,0,0,0) 100%
    );
    z-index: 2;
    pointer-events: none;
  }

  .hero-content {
    position: relative; z-index: 3;
    max-width: 100%;
    margin: 0;
    padding: 0 60px 0 100px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(252,234,16,0.1);
    border: 1px solid rgba(252,234,16,0.3);
    padding: 8px 18px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; color: var(--yellow);
    text-transform: uppercase; margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
  }
  .hero-tag::before {
    content: ''; width: 8px; height: 8px;
    background: var(--yellow); border-radius: 50%;
    animation: pulse 1.5s ease infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }

  .hero-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 900; line-height: 0.9;
    font-style: italic;
    letter-spacing: 2px;
    animation: fadeUp 0.8s 0.1s ease both;
  }
  .hero-headline .accent { color: var(--yellow); display: block; }
  .hero-headline .outline {
    -webkit-text-stroke: 2px var(--white);
    color: transparent; display: block;
  }

  .hero-desc {
    margin-top: 28px;
    color: var(--gray);
    font-size: 1rem; line-height: 1.7; max-width: 480px;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  .hero-actions {
    display: flex; gap: 16px; margin-top: 40px;
    animation: fadeUp 0.8s 0.3s ease both;
  }

  .btn-primary {
    position: relative;
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--black);
    padding: 16px 40px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.2s;
    z-index: 1;
  }
  .btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--yellow);
    transform: skewX(-15deg);
    z-index: -1;
    transition: all 0.2s;
  }
  .btn-primary:hover { transform: translateY(-2px); }
  .btn-primary:hover::before { background: #e8d800; scale: 1.05; }

  .btn-outline {
    position: relative;
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--white);
    padding: 16px 40px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.2s;
    z-index: 1;
  }
  .btn-outline::before {
    content: '';
    position: absolute; inset: 0;
    border: 2px solid rgba(255,255,255,0.3);
    transform: skewX(-15deg);
    z-index: -1;
    transition: all 0.2s;
  }
  .btn-outline:hover { color: var(--yellow); }
  .btn-outline:hover::before { border-color: var(--yellow); scale: 1.05; }

  .hero-stats {
    display: flex; gap: 40px; margin-top: 60px;
    animation: fadeUp 0.8s 0.4s ease both;
  }

  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem; font-weight: 900; color: var(--yellow); line-height: 1;
  }
  .stat-label {
    font-size: 0.75rem; letter-spacing: 2px; color: var(--gray);
    text-transform: uppercase; font-weight: 500; margin-top: 4px;
  }

  .hero-visual {
    position: relative; display: flex; align-items: center; justify-content: center;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  .hero-logo-big {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-style: italic;
    font-size: clamp(8rem, 15vw, 15rem);
    color: var(--yellow);
    line-height: 1;
    text-shadow: 0 0 80px rgba(252,234,16,0.3);
    animation: logoFloat 4s ease-in-out infinite;
    position: relative; z-index: 2;
  }
  @keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  .hero-logo-ring {
    position: absolute;
    width: 320px; height: 320px;
    border: 1px solid rgba(252,234,16,0.2);
    border-radius: 50%;
    animation: spin 20s linear infinite;
  }
  .hero-logo-ring::before {
    content: ''; position: absolute; top: -4px; left: 50%; margin-left: -4px;
    width: 8px; height: 8px; background: var(--yellow); border-radius: 50%;
  }
  .hero-logo-ring2 {
    position: absolute;
    width: 420px; height: 420px;
    border: 1px solid rgba(252,234,16,0.08);
    border-radius: 50%;
    animation: spin 30s linear infinite reverse;
  }
  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .hero-corner-tag {
    position: absolute; bottom: 40px; right: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem; letter-spacing: 3px; color: rgba(252,234,16,0.4);
    text-transform: uppercase; writing-mode: vertical-rl;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }



  /* ─── SECTIONS SHARED ─── */
  section { padding: 120px 0; }
  .container { max-width: 1300px; margin: 0 auto; padding: 0 60px; }

  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 4px;
    color: var(--yellow); text-transform: uppercase; margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before {
    content: ''; width: 30px; height: 2px; background: var(--yellow);
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900; font-style: italic;
    line-height: 0.95; color: var(--white);
    letter-spacing: 1px;
  }
  .section-title .yellow { color: var(--yellow); }

  /* ─── SERVICIOS ─── */
  #servicios { background: var(--dark2); }

  .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 70px;
  }
  .services-desc {
    max-width: 400px; color: var(--gray); line-height: 1.7;
    font-size: 0.95rem;
  }

  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  }

  .service-card {
    background: var(--dark3); padding: 50px 40px;
    position: relative; overflow: hidden; cursor: default;
    transition: background 0.3s;
    border: 1px solid rgba(255,255,255,0.04);
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--yellow); transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
  }
  .service-card:hover { background: #1f1f1f; }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover .service-icon i,
  .service-card:hover .service-icon svg {
    animation: icon-wiggle 0.5s ease forwards;
  }

  .service-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 5rem; font-weight: 900; font-style: italic;
    color: rgba(252,234,16,0.08); line-height: 1;
    position: absolute; top: 20px; right: 30px;
    transition: color 0.3s;
  }
  .service-card:hover .service-num { color: rgba(252,234,16,0.15); }

  /* ─── LUCIDE ICONS ─── */
  [data-lucide] { display: block; }

  /* Icon sizing & color for all Lucide icons */
  .service-icon i, .service-icon svg {
    width: 40px; height: 40px;
    stroke: var(--yellow); fill: none;
    stroke-width: 1.5;
  }
  .truck-emoji i, .truck-emoji svg {
    width: 100px; height: 100px;
    stroke: var(--yellow); fill: none;
    stroke-width: 1.2;
  }
  .feat-row .icon i, .feat-row .icon svg {
    width: 22px; height: 22px;
    stroke: var(--yellow); fill: none;
    stroke-width: 2;
  }
  .porque-icon i, .porque-icon svg {
    width: 48px; height: 48px;
    stroke: var(--yellow); fill: none;
    stroke-width: 1.5;
  }
  .porque-item:hover .porque-icon i,
  .porque-item:hover .porque-icon svg {
    animation: icon-wiggle 0.5s ease forwards;
  }

  @keyframes icon-wiggle {
    0%   { transform: rotate(0deg); }
    30%  { transform: rotate(-45deg); }
    70%  { transform: rotate(45deg); }
    100% { transform: rotate(0deg); }
  }
  .city-icon i, .city-icon svg {
    width: 36px; height: 36px;
    stroke: var(--yellow); fill: none;
    stroke-width: 1.5;
  }
  .contact-item-icon i, .contact-item-icon svg {
    width: 24px; height: 24px;
    stroke: var(--yellow); fill: none;
    stroke-width: 2;
  }

  .service-icon {
    font-size: 2.5rem; margin-bottom: 24px;
    display: block;
  }

  .service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem; font-weight: 800; font-style: italic;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
    color: var(--white);
  }

  .service-text {
    color: var(--gray); font-size: 0.9rem; line-height: 1.7;
  }

  /* ─── FLOTA ─── */
  #flota { background: var(--black); }

  .flota-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }

  .flota-visual {
    position: relative;
  }

  .truck-graphic {
    background: var(--dark3);
    border: 1px solid rgba(252,234,16,0.15);
    padding: 60px 40px;
    position: relative; overflow: hidden;
    text-align: center;
  }
  .truck-graphic::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
      45deg, transparent, transparent 20px,
      rgba(252,234,16,0.02) 20px, rgba(252,234,16,0.02) 40px
    );
  }
  /* Road line at bottom of truck box */
  .truck-graphic::after {
    content: '';
    position: absolute; bottom: 44px; left: 0; right: 0;
    height: 2px;
    background: repeating-linear-gradient(
      90deg,
      rgba(252,234,16,0.4) 0px, rgba(252,234,16,0.4) 20px,
      transparent 20px, transparent 40px
    );
  }

  .truck-emoji {
    font-size: 8rem;
    position: relative; z-index: 1; display: block;
    transform: translateX(0%);
    will-change: transform;
  }

  .truck-badge {
    position: absolute; top: 20px; right: 20px;
    background: var(--yellow); color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 0.75rem; letter-spacing: 2px;
    padding: 6px 14px; text-transform: uppercase;
  }

  .flota-features { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
  .feat-row {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 24px;
    background: var(--dark3); border-left: 3px solid var(--yellow);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 1rem; letter-spacing: 1px; text-transform: uppercase;
    color: var(--white);
    transition: background 0.2s;
  }
  .feat-row:hover { background: #1f1f1f; }
  .feat-row span.icon { font-size: 1.4rem; }
  .feat-row span.desc { font-size: 0.8rem; font-weight: 400; color: var(--gray); margin-left: auto; font-style: normal; text-transform: none; letter-spacing: 0; font-family: 'Barlow', sans-serif; }


  .flota-points {
    display: flex; flex-direction: column; gap: 32px; margin-top: 48px;
  }
  .point {
    display: flex; gap: 20px;
  }
  .point-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem; font-weight: 900; font-style: italic; color: var(--yellow);
    line-height: 1; flex-shrink: 0; width: 40px;
  }

  .point-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 8px;
  }
  .point-desc { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

  /* ─── IMPORTACIONES / EXPORTACIONES ─── */
  #comercio { background: var(--dark2); }

  .comercio-hero {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  }

  .comercio-panel {
    padding: 80px 60px; position: relative; overflow: hidden;
    cursor: default;
  }
  .comercio-panel.import { background: var(--dark3); }
  .comercio-panel.export {
    background: var(--yellow);
  }
  .comercio-panel.export .panel-tag { color: var(--black); opacity: 0.5; }
  .comercio-panel.export .panel-title { color: var(--black); }
  .comercio-panel.export .panel-desc { color: rgba(0,0,0,0.6); }
  .comercio-panel.export .panel-list li { color: rgba(0,0,0,0.7); }
  .comercio-panel.export .panel-list li::before { background: var(--black); }

  .panel-big-num {
    position: absolute; bottom: -20px; right: -10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12rem; font-weight: 900; font-style: italic;
    color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none;
  }
  .comercio-panel.export .panel-big-num { color: rgba(0,0,0,0.08); }

  .panel-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 4px;
    color: var(--yellow); text-transform: uppercase; margin-bottom: 20px;
  }
  .panel-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; font-style: italic;
    line-height: 0.95; margin-bottom: 24px;
    letter-spacing: 1px;
  }
  .panel-desc {
    color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 32px;
    max-width: 360px;
  }

  .panel-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .panel-list li {
    color: var(--light-gray); font-size: 0.9rem;
    display: flex; align-items: center; gap: 10px;
  }
  .panel-list li::before {
    content: ''; width: 6px; height: 6px; background: var(--yellow); flex-shrink: 0;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  }

  /* ─── VALORES CORPORATIVOS ─── */
  #valores { background: #111111; }

  .porque-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: rgba(255,255,255,0.06); margin-top: 70px;
  }
  .porque-item {
    background: var(--black); padding: 50px 36px;
    border-top: 3px solid transparent; transition: border-color 0.3s, background 0.3s;
  }
  .porque-item:hover { border-color: var(--yellow); background: var(--dark3); }

  .porque-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
  .porque-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem; font-weight: 900; font-style: italic; color: var(--yellow);
    line-height: 1; margin-bottom: 10px;
  }
  .porque-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 14px;
  }
  .porque-desc { color: var(--gray); font-size: 0.88rem; line-height: 1.65; }

  /* ─── ECUADOR ─── */
  #ecuador {
    background: var(--yellow);
    padding: 100px 0;
    text-align: center;
  }
  #ecuador .section-label { color: rgba(0,0,0,0.5); justify-content: center; }
  #ecuador .section-label::before { background: rgba(0,0,0,0.3); }
  #ecuador .section-title { color: var(--black); }

  .ecuador-desc {
    color: rgba(0,0,0,0.65); max-width: 600px; margin: 24px auto 0;
    font-size: 1.05rem; line-height: 1.7;
  }

  .ecuador-cities {
    display: flex; justify-content: center; gap: 48px;
    margin-top: 60px; flex-wrap: wrap;
  }
  .city {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
  }
  .city-icon { font-size: 2rem; }
  .city-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800; font-size: 1rem; letter-spacing: 2px;
    text-transform: uppercase; color: var(--black);
  }
  .city-role { font-size: 0.75rem; color: rgba(0,0,0,0.5); letter-spacing: 1px; }

  .ecuador-cta { margin-top: 60px; }
  .btn-dark {
    position: relative;
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--yellow);
    padding: 18px 50px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800; font-size: 0.9rem; letter-spacing: 3px; text-transform: uppercase;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.2s;
    z-index: 1;
  }
  .btn-dark::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--black);
    transform: skewX(-15deg);
    z-index: -1;
    transition: all 0.2s;
  }
  .btn-dark:hover { transform: translateY(-2px); }
  .btn-dark:hover::before { background: #111; scale: 1.05; }

  /* ─── CONTACTO ─── */
  #contacto { background: var(--dark2); }

  .contacto-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  }


  .contact-items { display: flex; flex-direction: column; gap: 32px; margin-top: 48px; }
  .contact-item { display: flex; gap: 20px; }
  .contact-item-icon {
    width: 50px; height: 50px; background: rgba(252,234,16,0.1);
    border: 1px solid rgba(252,234,16,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
  }

  .contact-item-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; color: var(--yellow);
    text-transform: uppercase; margin-bottom: 4px;
  }
  .contact-item-value { color: var(--white); font-size: 0.95rem; }

  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-group label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; color: var(--gray);
    text-transform: uppercase;
  }
  .form-group input, .form-group select, .form-group textarea {
    background: var(--dark3); border: 1px solid rgba(255,255,255,0.1);
    color: var(--white); padding: 14px 18px;
    font-family: 'Barlow', sans-serif; font-size: 0.9rem;
    outline: none; transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--yellow);
  }
  .form-group select option { background: var(--dark3); }
  .form-group textarea { resize: vertical; min-height: 120px; }

  .form-submit { margin-top: 8px; }
  .btn-submit {
    position: relative;
    width: 100%; background: transparent; color: var(--black);
    padding: 18px; border: none; cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 1rem; letter-spacing: 3px; text-transform: uppercase;
    transition: all 0.2s;
    z-index: 1;
  }
  .btn-submit::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--yellow);
    transform: skewX(-15deg);
    z-index: -1;
    transition: all 0.2s;
  }
  .btn-submit:hover::before { background: #e8d800; scale: 1.02; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--black);
    border-top: 1px solid rgba(252,234,16,0.15);
    padding: 60px 0 30px;
  }

  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }


  .footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem; font-weight: 900; font-style: italic; color: var(--yellow);
    line-height: 1; margin-bottom: 6px;
  }
  .footer-tagline {
    font-size: 0.7rem; letter-spacing: 3px; color: var(--gray);
    text-transform: uppercase; margin-bottom: 24px;
  }
  .footer-desc {
    color: var(--gray); font-size: 0.88rem; line-height: 1.7; max-width: 280px;
  }

  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; color: var(--yellow);
    text-transform: uppercase; margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col ul a {
    color: var(--gray); text-decoration: none; font-size: 0.88rem;
    transition: color 0.2s;
  }
  .footer-col ul a:hover { color: var(--white); }

  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 30px;
  }
  .footer-copy {
    color: var(--gray); font-size: 0.8rem;
  }
  .footer-copy span { color: var(--yellow); }

  .social-links { display: flex; gap: 12px; }
  .social-link {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--gray); text-decoration: none; font-size: 1rem;
    transition: all 0.2s;
  }
  .social-link:hover {
    border-color: var(--yellow); color: var(--yellow);
    background: rgba(252,234,16,0.05);
  }

  /* ─── SCROLL REVEAL ─── */
  .reveal { opacity: 0; transform: translateY(40px); transition: all 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .flota-layout { grid-template-columns: 1fr; }
    .comercio-hero { grid-template-columns: 1fr; }
    .porque-grid { grid-template-columns: repeat(2, 1fr); }
    .contacto-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    nav { padding: 0 30px; }
    .container { padding: 0 30px; }
    .hero-content { padding: 0 30px; padding-top: 40px; }
    .hero-side-overlay {
      width: 100%;
      background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
    }
  }

  @media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
      display: none;
      position: fixed;
      top: 0; left: 0; 
      width: 100vw; height: 100vh;
      background: #000000;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 36px;
      z-index: 3001;
      padding: 100px 40px 60px;
      border-top: none;
    }
    .nav-links a {
      font-size: 1.4rem;
      letter-spacing: 3px;
    }
    .nav-cta {
      padding: 14px 40px !important;
      font-size: 1.1rem !important;
    }
    .hero-content {
      padding-top: 150px !important;
    }
    .services-header {
      display: flex !important;
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 24px !important;
    }
    .services-header > div, 
    .services-desc {
      width: 100% !important;
      max-width: 100% !important;
      display: block !important;
    }
    .section-desc {
      max-width: 100% !important;
    }
    .services-grid { grid-template-columns: 1fr; }
    .porque-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
  }
  /* ─── BACK TO TOP ─── */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--yellow);
    border: none;
    border-radius: 50%;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(20px) scale(0.8);
  }

  .back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .back-to-top:hover {
    background: #fff;
    transform: translateY(-5px) scale(1.1);
  }

  .back-to-top i, .back-to-top svg {
    width: 30px;
    height: 30px;
    stroke: var(--black) !important;
    stroke-width: 2.5;
  }

  @media (max-width: 768px) {
    .back-to-top {
      bottom: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
    }
  }
