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

    :root {
      --navy:        #0C1A36;
      --navy-dark:   #070E1F;
      --navy-mid:    #0F2147;
      --blue:        #1B6FE4;
      --blue-light:  #3B8FF7;
      --blue-glow:   rgba(27,111,228,0.18);
      --white:       #F4F7FF;
      --gray:        #8A9BBB;
      --gray-light:  #C8D3E8;
      --line:        rgba(255,255,255,0.08);
      /* Light sections */
      --light-bg:      #EEF2FA;
      --light-surface: #FFFFFF;
      --text-dark:     #070E1F;
      --text-body:     #2A3B5E;
      --text-muted:    #627092;
      --light-border:  rgba(27,111,228,0.15);
      --light-line:    rgba(11,26,54,0.09);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--navy-dark);
      color: var(--white);
      font-family: 'Barlow', sans-serif;
      font-size: 17px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 60px;
      height: 72px;
      transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
    }
    nav.scrolled {
      background: rgba(7, 14, 31, 0.92);
      -webkit-backdrop-filter: blur(16px);
      backdrop-filter: blur(16px);
      box-shadow: 0 1px 0 var(--line);
    }
    .nav-logo img {
      height: 44px;
      width: auto;
      display: block;
      filter: brightness(0) invert(1);
      transition: opacity 0.2s;
    }
    .nav-logo:hover img { opacity: 0.85; }
    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }
    .nav-links a {
      color: var(--gray-light);
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      position: relative;
      transition: color 0.2s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: var(--blue);
      transition: width 0.3s ease;
    }
    .nav-links a:hover { color: #fff; }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      background: var(--blue);
      color: #fff !important;
      padding: 10px 24px;
      border-radius: 3px;
      transition: background 0.2s, transform 0.2s !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--blue-light) !important; transform: translateY(-1px); }
    .nav-phone-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--blue);
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.06em;
      white-space: nowrap;
      transition: opacity 0.2s;
      flex-shrink: 0;
    }
    .nav-phone-link:hover { opacity: 0.75; }

    /* ── HERO ── */
    #inicio {
      position: relative;
      z-index: 1;
      height: 100vh;
      height: 100dvh; /* dynamic viewport height — evita el salto de barra en Safari/Chrome mobile */
      min-height: 700px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--navy-dark);
    }

    .hero-bg-lines {
      position: absolute;
      top: 0; right: 0; bottom: 0; left: 0;
      pointer-events: none;
      overflow: hidden;
    }
    /* Big diagonal slash from logo */
    .hero-bg-lines::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -5%;
      width: 55vw;
      height: 180%;
      background: linear-gradient(135deg, transparent 48%, rgba(27,111,228,0.07) 48%, rgba(27,111,228,0.07) 52%, transparent 52%);
      transform: skewX(-8deg);
    }
    .hero-bg-lines::after {
      content: '';
      position: absolute;
      top: -20%;
      right: 3%;
      width: 55vw;
      height: 180%;
      background: linear-gradient(135deg, transparent 48%, rgba(27,111,228,0.04) 48%, rgba(27,111,228,0.04) 52%, transparent 52%);
      transform: skewX(-8deg);
    }

    /* Hero visual container (right column) */
    .hero-visual {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 0.95;
      align-self: center;
      overflow: visible;
    }
    /* aspect-ratio fallback for Safari < 15 */
    @supports not (aspect-ratio: 1) {
      .hero-visual::before {
        content: '';
        display: block;
        padding-top: 95%;
      }
    }
    .hero-k-img {
      position: absolute;
      top: 0; right: 0; bottom: 0; left: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      opacity: 0.22;
      pointer-events: none;
    }
    .hero-truck-img {
      position: absolute;
      bottom: 3%;
      left: 5%;
      width: 92%;
      opacity: 0;
      transform: translateX(50px) scale(0.95);
      pointer-events: none;
      will-change: transform, opacity, filter;
      filter: brightness(0) invert(1);
    }

    /* Grid lines */
    .hero-grid {
      position: absolute;
      top: 0; right: 0; bottom: 0; left: 0;
      background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
      background-size: 80px 80px;
      pointer-events: none;
      -webkit-mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, black 20%, transparent 80%);
      mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, black 20%, transparent 80%);
    }

    /* Glow spot */
    .hero-glow {
      position: absolute;
      left: -10vw;
      top: 20%;
      width: 70vw;
      height: 60vh;
      background: radial-gradient(ellipse at center, rgba(27,111,228,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 60px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 40px;
    }
    .hero-text { }
    .hero-stats { grid-column: span 2; }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s ease 0.2s forwards;
    }
    .hero-eyebrow-line {
      width: 40px;
      height: 2px;
      background: var(--blue);
    }
    .hero-eyebrow span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--blue-light);
    }

    .hero-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(58px, 8vw, 120px);
      font-weight: 900;
      line-height: 0.92;
      letter-spacing: -0.01em;
      text-transform: uppercase;
      color: #fff;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.9s ease 0.35s forwards;
    }
    .hero-title em {
      font-style: normal;
      color: var(--blue);
    }
    .hero-title .line-outline {
      -webkit-text-stroke: 2px rgba(255,255,255,0.2);
      color: transparent;
    }

    .hero-sub {
      max-width: 500px;
      margin-top: 28px;
      color: var(--gray);
      font-size: 17px;
      font-weight: 400;
      line-height: 1.7;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.9s ease 0.55s forwards;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 24px;
      margin-top: 44px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.9s ease 0.7s forwards;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--blue);
      color: #fff;
      padding: 16px 36px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 3px;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .btn-primary:hover {
      background: var(--blue-light);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(27,111,228,0.4);
    }
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--gray-light);
      padding: 16px 0;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: color 0.2s;
    }
    .btn-ghost:hover { color: #fff; }
    .btn-ghost svg { transition: transform 0.2s; }
    .btn-ghost:hover svg { transform: translateX(4px); }
    .btn-outlined {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--blue);
      padding: 14px 28px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 3px;
      border: 2px solid var(--blue);
      cursor: pointer;
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    .btn-outlined:hover {
      background: var(--blue);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(27,111,228,0.4);
    }
    .hero-phone {
      margin-top: 12px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: var(--gray);
      opacity: 0;
      animation: fadeUp 0.9s ease 0.85s forwards;
    }

    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 72px;
      padding-top: 40px;
      border-top: 1px solid var(--line);
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.9s ease 0.9s forwards;
      flex-wrap: wrap;
    }
    .hero-stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 42px;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }
    .hero-stat-num span { color: var(--blue); }
    .hero-stat-label {
      font-size: 13px;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 4px;
    }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0;
      animation: fadeUp 1s ease 1.4s forwards;
    }
    .scroll-hint span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gray);
    }
    .scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, var(--gray), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    /* ── SHARED SECTION STYLES ── */
    section {
      position: relative;
      z-index: 2;
    }
    .section-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 60px;
    }
    .section-eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 20px;
    }
    .section-eyebrow-line {
      width: 32px;
      height: 2px;
      background: var(--blue);
    }
    .section-eyebrow span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--blue-light);
    }
    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(40px, 5vw, 68px);
      font-weight: 800;
      line-height: 0.95;
      text-transform: uppercase;
      letter-spacing: -0.01em;
    }
    .section-title .accent { color: var(--blue); }

    /* ── REVEAL ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }
    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal-left.visible { opacity: 1; transform: none; }
    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal-right.visible { opacity: 1; transform: none; }

    /* Staggered children */
    .stagger > * { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0s; }
    .stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.1s; }
    .stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.2s; }
    .stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.3s; }
    .stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.4s; }
    .stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay: 0.5s; }
    .stagger.visible > *:nth-child(7) { opacity:1; transform:none; transition-delay: 0.6s; }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--navy);
      position: relative;
      z-index: 2;
      padding: 14px 60px;
    }
    .trust-bar-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      max-width: 1280px;
      margin: 0 auto;
    }
    .trust-item {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--white);
      white-space: nowrap;
    }
    .trust-sep {
      color: var(--blue);
      font-weight: 900;
      font-size: 16px;
      line-height: 1;
    }

    /* ── MARQUEE TICKER ── */
    .ticker {
      position: relative;
      z-index: 2;
      background: var(--blue);
      overflow: hidden;
      height: 44px;
      display: flex;
      align-items: center;
    }
    .ticker-track {
      display: flex;
      gap: 0;
      animation: ticker 28s linear infinite;
      white-space: nowrap;
      will-change: transform;
    }
    .ticker-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 0 28px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.9);
    }
    .ticker-dot {
      width: 5px;
      height: 5px;
      background: rgba(255,255,255,0.5);
      border-radius: 50%;
    }

    /* ── SERVICES ── */
    #servicios {
      background: var(--navy-dark);
      padding: 120px 0 140px;
    }

    .services-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 72px;
    }
    .services-intro {
      max-width: 420px;
      color: var(--gray);
      font-size: 16px;
      line-height: 1.7;
      margin-top: 20px;
    }

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

    .service-card {
      background: var(--navy-mid);
      padding: 52px 44px;
      position: relative;
      overflow: hidden;
      cursor: default;
      transition: background 0.3s ease;
    }
    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 100%; height: 3px;
      background: var(--blue);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    .service-card:hover { background: #0E2352; }
    .service-card:hover::before { transform: scaleX(1); }

    .service-card-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 72px;
      font-weight: 900;
      color: rgba(255,255,255,0.04);
      line-height: 1;
      position: absolute;
      top: 24px; right: 30px;
      transition: color 0.3s;
    }
    .service-card:hover .service-card-num { color: rgba(27,111,228,0.1); }

    .service-icon {
      width: 52px;
      height: 52px;
      background: var(--blue-glow);
      border: 1px solid rgba(27,111,228,0.3);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
      transition: background 0.3s, border-color 0.3s;
    }
    .service-card:hover .service-icon {
      background: rgba(27,111,228,0.25);
      border-color: var(--blue);
    }
    .service-icon svg { color: var(--blue-light); }

    .service-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 24px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 14px;
      color: #fff;
    }
    .service-desc {
      font-size: 15px;
      color: var(--gray);
      line-height: 1.65;
    }

    /* Featured service card */
    .service-card.featured {
      background: var(--blue);
      grid-row: span 1;
    }
    .service-card.featured::before { background: #fff; }
    .service-card.featured .service-icon {
      background: rgba(255,255,255,0.15);
      border-color: rgba(255,255,255,0.3);
    }
    .service-card.featured .service-icon svg { color: #fff; }
    .service-card.featured .service-title { color: #fff; }
    .service-card.featured .service-desc { color: rgba(255,255,255,0.75); }
    .service-card.featured .service-card-num { color: rgba(255,255,255,0.08); }
    .service-card.featured:hover { background: #1A6ADA; }
    .service-card.featured:hover .service-card-num { color: rgba(255,255,255,0.12); }

    /* BASC badge */
    .basc-banner {
      margin-top: 2px;
      grid-column: span 3;
      background: var(--navy-mid);
      border: 1px solid rgba(27,111,228,0.25);
      padding: 36px 44px;
      display: flex;
      align-items: center;
      gap: 36px;
    }
    .basc-badge {
      flex-shrink: 0;
      width: 72px;
      height: 72px;
      background: var(--blue);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 16px;
      font-weight: 900;
      letter-spacing: 0.04em;
      color: #fff;
      text-align: center;
      line-height: 1.1;
    }
    .basc-text h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #fff;
      margin-bottom: 6px;
    }
    .basc-text p {
      font-size: 15px;
      color: var(--gray);
    }

    /* ── ABOUT US ── */
    #nosotros {
      background: var(--navy-dark);
      color: var(--white);
      overflow: visible;
      padding-bottom: 120px;
    }
    #nosotros .section-eyebrow-line { background: var(--blue); }
    #nosotros .section-title { color: var(--white); }
    #nosotros .section-title .accent { color: var(--blue); }

    .about-header { padding-top: 120px; padding-bottom: 72px; }

    /* ── GALLERY LAYOUT ── */
    .about-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .about-gallery-item {
      display: flex;
      flex-direction: column;
      cursor: default;
    }

    /* Image frame */
    .about-gallery-frame {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      border: 1px solid rgba(27,111,228,0.15);
    }
    .about-gallery-frame img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .about-gallery-item:hover .about-gallery-frame img { transform: scale(1.05); }
    .about-gallery-item:hover .about-gallery-frame {
      border-color: rgba(27,111,228,0.45);
    }

    /* Text below frame */
    .about-gallery-content {
      padding: 40px 36px 48px;
      background: var(--navy-mid);
      flex: 1;
    }

    /* ── ABOUT STAT ── */
    .about-stat-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--blue-light);
      margin-bottom: 12px;
    }
    .about-stat-number {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(72px, 9vw, 130px);
      font-weight: 900;
      line-height: 0.85;
      letter-spacing: -0.02em;
      color: var(--white);
    }
    .about-stat-number span { color: var(--blue); }
    .about-stat-line {
      width: 40px;
      height: 3px;
      background: var(--blue);
      margin: 24px 0;
      flex-shrink: 0;
    }
    .about-stat-desc {
      font-size: 15px;
      color: var(--gray-light);
      line-height: 1.75;
    }

    .latam-strip {
      margin-top: 100px;
      padding-top: 60px;
      border-top: 1px solid rgba(255,255,255,0.06);
      text-align: center;
    }
    .latam-strip h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 36px;
    }
    .latam-countries {
      display: flex;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
    }
    .country-item {
      padding: 12px 32px;
      border-right: 1px solid rgba(255,255,255,0.07);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--gray-light);
    }
    .country-item:last-child { border-right: none; }

    /* ── CONTACT ── */
    #contacto {
      background: var(--navy-dark);
      padding: 140px 0;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      margin-top: 72px;
    }

    .contact-info h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 22px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #fff;
      margin-bottom: 20px;
    }
    .contact-info p {
      color: var(--gray);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 40px;
    }

    .contact-items {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }
    .contact-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .contact-item-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(27,111,228,0.3);
      border-radius: 3px;
      background: var(--blue-glow);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .contact-item-icon svg { color: var(--blue-light); }
    .contact-item-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 3px;
    }
    .contact-item-value {
      font-size: 15px;
      color: var(--gray-light);
    }
    .contact-item-value a {
      color: var(--gray-light);
      text-decoration: none;
      transition: color 0.2s;
    }
    .contact-item-value a:hover { color: var(--blue-light); }

    /* Map */
    .contact-map {
      border-radius: 4px;
      overflow: hidden;
      border: 1px solid var(--line);
      height: 100%;
      min-height: 420px;
      position: relative;
    }
    .contact-map iframe {
      width: 100%;
      height: 100%;
      min-height: 420px;
      display: block;
      border: none;
      filter: invert(90%) hue-rotate(180deg) saturate(0.5) brightness(0.8);
    }

    /* Social badges */
    .social-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gray);
      margin-top: 40px;
      margin-bottom: 14px;
    }
    .social-badges {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .social-badge {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 11px 18px;
      border-radius: 3px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.04);
      text-decoration: none;
      color: var(--gray-light);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.06em;
      transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
    }
    .social-badge:hover { transform: translateY(-2px); }
    .social-badge.ig:hover { background: rgba(225,48,108,0.12); border-color: rgba(225,48,108,0.45); color: #f472b6; }
    .social-badge.li:hover { background: rgba(10,102,194,0.15); border-color: rgba(10,102,194,0.5); color: #60a5fa; }
    .social-badge.wa:hover { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.4); color: #4ade80; }
    .social-badge svg { flex-shrink: 0; }

    /* ── FOOTER ── */
    footer {
      background: var(--navy-dark);
      border-top: 1px solid var(--line);
      padding: 60px 0 40px;
    }
    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: 0.8; }
    .footer-copy {
      font-size: 13px;
      color: rgba(138,155,187,0.5);
    }
    .footer-links {
      display: flex;
      gap: 28px;
    }
    .footer-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gray);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--blue-light); }

    /* ── WHATSAPP BUTTON ── */
    .whatsapp-btn {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 999;
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 24px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.3);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      animation: waPulse 3s ease-in-out infinite;
    }
    .whatsapp-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 36px rgba(37,211,102,0.55), 0 2px 12px rgba(0,0,0,0.3);
      animation: none;
    }
    .whatsapp-btn svg { width: 30px; height: 30px; }

    .whatsapp-tooltip {
      position: absolute;
      right: 72px;
      background: var(--navy-mid);
      color: #fff;
      white-space: nowrap;
      padding: 8px 14px;
      border-radius: 4px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.04em;
      opacity: 0;
      transform: translateX(6px);
      pointer-events: none;
      transition: opacity 0.2s, transform 0.2s;
      box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    }
    .whatsapp-tooltip::after {
      content: '';
      position: absolute;
      right: -6px;
      top: 50%;
      transform: translateY(-50%);
      border: 6px solid transparent;
      border-right: none;
      border-left-color: var(--navy-mid);
    }
    .whatsapp-btn:hover .whatsapp-tooltip {
      opacity: 1;
      transform: translateX(0);
    }

    /* ── DIVIDER ── */
    .section-divider {
      height: 80px;
      overflow: hidden;
      position: relative;
      background: var(--navy-dark);
    }
    .section-divider.to-white { background: var(--white); }
    .section-divider svg {
      position: absolute;
      bottom: 0; left: 0;
      width: 100%; height: 100%;
    }

    /* ── FOCUS STATES (accesibilidad teclado) ── */
    :focus-visible {
      outline: 2px solid var(--blue-light);
      outline-offset: 3px;
      border-radius: 2px;
    }
    .btn-primary:focus-visible,
    .btn-ghost:focus-visible,
    .btn-outlined:focus-visible,
    .nav-cta:focus-visible,
    .nav-phone-link:focus-visible {
      outline: 2px solid var(--blue-light);
      outline-offset: 3px;
    }

    /* ── KEYFRAMES ── */
    @keyframes fadeUp {
      to { opacity: 1; transform: none; }
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; }
      50% { opacity: 1; }
    }
    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    @keyframes waPulse {
      0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.3); }
      50% { box-shadow: 0 4px 36px rgba(37,211,102,0.65), 0 2px 8px rgba(0,0,0,0.3); }
    }

    /* ── LIGHTBOX ── */
    #lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(4, 8, 18, 0.96);
      -webkit-backdrop-filter: blur(6px);
      backdrop-filter: blur(6px);
      align-items: center;
      justify-content: center;
    }
    #lightbox.lb-open {
      display: flex;
    }
    .lb-img-wrap {
      max-width: min(90vw, 1100px);
      max-height: 85vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    #lb-img {
      max-width: 100%;
      max-height: 85vh;
      object-fit: contain;
      border: 1px solid rgba(27,111,228,0.25);
      opacity: 0;
      transform: scale(0.96);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    #lb-img.lb-visible {
      opacity: 1;
      transform: scale(1);
    }
    .lb-close {
      position: fixed;
      top: 20px;
      right: 24px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      color: #fff;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s;
      z-index: 10001;
    }
    .lb-close:hover { background: rgba(255,255,255,0.18); }
    .lb-prev, .lb-next {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      color: #fff;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s;
      z-index: 10001;
    }
    .lb-prev { left: 20px; }
    .lb-next { right: 20px; }
    .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.16); }
    .lb-counter {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      letter-spacing: 0.15em;
      color: var(--gray);
      text-transform: uppercase;
    }
    .about-gallery-frame { cursor: zoom-in; }

    /* ── LIGHT SECTIONS THEME ── */

    /* Hero */
    #inicio { background: var(--light-bg); }
    .nav-logo img { filter: none; }
    nav.scrolled { background: rgba(238,242,250,0.94); box-shadow: 0 1px 0 var(--light-line); }
    .nav-links a { color: var(--text-body); }
    .nav-links a:hover { color: var(--blue); }

    #inicio .hero-grid {
      background-image:
        linear-gradient(var(--light-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--light-line) 1px, transparent 1px);
    }
    .hero-k-img   { filter: none; opacity: 0.5; }
    .hero-truck-img { filter: none; }

    #inicio .hero-title { color: var(--text-dark); }
    #inicio .hero-title .line-outline {
      -webkit-text-stroke: 2px var(--blue);
      color: transparent;
    }
    #inicio .hero-eyebrow span { color: var(--blue); }
    #inicio .hero-sub { color: var(--text-muted); }
    #inicio .hero-stat-num { color: var(--text-dark); }
    #inicio .hero-stat-label { color: var(--text-muted); }
    #inicio .hero-stats { border-top-color: var(--light-line); }
    #inicio .btn-ghost { color: var(--text-body); }
    #inicio .btn-ghost:hover { color: var(--blue); }
    #inicio .hero-phone { color: var(--text-muted); }
    #inicio .btn-outlined:hover { background: var(--blue); color: #fff; }
    #inicio .scroll-hint span { color: var(--text-muted); }
    #inicio .scroll-line { background: linear-gradient(to bottom, var(--text-muted), transparent); }

    /* Servicios */
    #servicios { background: var(--light-bg); }
    #servicios .section-title { color: var(--text-dark); }
    #servicios .services-intro { color: var(--text-muted); }

    #servicios .service-card:not(.featured) {
      background: var(--light-surface);
      box-shadow: 0 1px 4px rgba(11,26,54,0.06);
    }
    #servicios .service-card:not(.featured):hover {
      background: var(--light-surface);
      box-shadow: 0 8px 36px rgba(27,111,228,0.14);
    }
    #servicios .service-card:not(.featured) .service-card-num { color: rgba(11,26,54,0.04); }
    #servicios .service-card:not(.featured):hover .service-card-num { color: rgba(27,111,228,0.08); }
    #servicios .service-card:not(.featured) .service-title { color: var(--text-dark); }
    #servicios .service-card:not(.featured) .service-desc  { color: var(--text-body); }

    #servicios .basc-banner { background: var(--light-surface); border-color: var(--light-border); }
    #servicios .basc-text h4 { color: var(--text-dark); }
    #servicios .basc-text p  { color: var(--text-muted); }

    /* Nosotros */
    #nosotros { background: var(--light-bg); color: var(--text-dark); }
    #nosotros .section-title { color: var(--text-dark); }

    .about-gallery-content  { background: var(--light-surface); }
    .about-stat-number      { color: var(--text-dark); }
    .about-stat-desc        { color: var(--text-body); }
    .about-gallery-frame    { border-color: rgba(27,111,228,0.2); }
    .about-gallery-item:hover .about-gallery-frame { border-color: rgba(27,111,228,0.5); }

    .latam-strip            { border-top-color: var(--light-line); }
    .latam-strip h3         { color: var(--text-muted); }
    .country-item           { color: var(--text-dark); border-right-color: var(--light-line); }

    /* Contacto */
    #contacto { background: var(--light-bg); color: var(--text-dark); }
    #contacto .section-title { color: var(--text-dark); }
    .contact-info h3        { color: var(--text-dark); }
    .contact-info p         { color: var(--text-muted); }
    .contact-item-label     { color: var(--text-muted); }
    .contact-item-value     { color: var(--text-body); }
    .contact-item-value a   { color: var(--text-body); }
    .contact-item-value a:hover { color: var(--blue); }
    .social-label           { color: var(--text-muted); }
    .social-badge {
      border-color: rgba(11,26,54,0.12);
      background: rgba(11,26,54,0.04);
      color: var(--text-body);
    }
    .social-badge.ig:hover { background: rgba(225,48,108,0.08); border-color: rgba(225,48,108,0.4); color: #c13584; }
    .social-badge.li:hover { background: rgba(10,102,194,0.08); border-color: rgba(10,102,194,0.4); color: #0a66c2; }
    .social-badge.wa:hover { background: rgba(37,211,102,0.08); border-color: rgba(37,211,102,0.35); color: #128c7e; }
    #contacto .contact-map  { border-color: var(--light-border); }
    #contacto .contact-map iframe { filter: none; }

    /* ── PANTALLAS CORTAS EN ESCRITORIO (13", ~860 px de alto) ── */
    @media (min-width: 901px) and (max-height: 860px) {
      #inicio {
        height: auto;
        min-height: 100dvh;
        padding: 96px 0 48px;
        align-items: flex-start;
      }
      .hero-content { align-items: flex-start; }
      .hero-title   { font-size: clamp(48px, 5.8vw, 90px); }
      .hero-sub     { margin-top: 16px; }
      .hero-actions { margin-top: 28px; }
      .hero-phone   { margin-top: 8px; }
      .hero-visual  { max-height: 490px; }
      .hero-stats {
        margin-top: 16px;
        padding-top: 10px;
        gap: 16px;
      }
    }

    /* ── MOBILE ── */
    @media (max-width: 900px) {
      /* Trust bar */
      .trust-bar { padding: 12px 24px; }
      .trust-sep { display: none; }
      .trust-item { font-size: 12px; }

      /* Nav */
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      .nav-phone-text { display: none; }

      /* Hero — allow height to grow, prevent overflow into next section */
      #inicio {
        height: auto;
        min-height: 100dvh;
        padding: 100px 0 40px;
        overflow: hidden;
        align-items: flex-start;
      }
      .hero-content {
        padding: 0 24px;
        grid-template-columns: 1fr;
        gap: 0;
        align-items: flex-start;
      }
      #hero-truck, .hero-visual { display: none; }
      .hero-stats {
        grid-column: span 1;
        gap: 20px;
        margin-top: 40px;
        padding-top: 28px;
        flex-wrap: wrap;
      }
      .hero-stat-num { font-size: 30px; }
      .scroll-hint { display: none; }

      /* Sections spacing */
      .section-inner { padding: 0 24px; }
      #servicios { padding: 48px 0 32px; }
      .about-header { padding-top: 36px; padding-bottom: 24px; }
      #nosotros { padding-bottom: 52px; }
      #contacto { padding: 56px 0; }
      .latam-strip { margin-top: 40px; padding-top: 36px; }

      /* Services */
      .services-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 36px; }
      .services-grid { grid-template-columns: 1fr; }
      .basc-banner { grid-column: span 1; padding: 28px 24px; gap: 20px; }
      .basc-badge { width: 56px; height: 56px; font-size: 13px; flex-shrink: 0; }
      .basc-text h4 { font-size: 16px; }
      .basc-text p { font-size: 14px; }

      /* Nosotros gallery */
      .about-gallery { grid-template-columns: 1fr; gap: 2px; }
      .about-gallery-content { padding: 32px 24px 40px; }
      .about-stat-number { font-size: clamp(56px, 18vw, 96px); }

      /* Contact & footer */
      .contact-grid { grid-template-columns: 1fr; gap: 48px; }
      .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
    }
