/* ============================================
   Big Heavy Industrias — Styles v16
   Paleta: negro/gris oscuro industrial + amarillo mostaza
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --black:        #09090b;
    --dark:         #0f0f11;
    --surface:      #141416;
    --card:         #1a1a1d;
    --card-hover:   #1f1f23;
    --border:       rgba(255,255,255,0.07);
    --border-light: rgba(255,255,255,0.12);
    --gray:         #6b6b72;
    --gray-light:   #9a9aaa;
    --white:        #f4f4f6;

    /* Acento verde (color logo Big Heavy) */
    --accent:       #1DB800;
    --accent-dim:   #169000;
    --accent-hover: #169000;
    --accent-alpha: rgba(29,184,0,0.10);
    --accent-glow:  rgba(29,184,0,0.20);
    --accent-text:  #3DD400;

    --font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --heading:      'Barlow Condensed', sans-serif;
    --label:        'Inter', sans-serif;
    --w:            1200px;
    --nav-h:        80px;
    --r:            14px;
    --ease:         cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--black);
    overscroll-behavior-y: none;
}

body {
    font-family: var(--font);
    color: var(--white);
    background: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    overscroll-behavior-y: none;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
body.modal-open { overflow: hidden; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--w);
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: var(--w);
    height: var(--nav-h);
    background: rgba(9,9,11,0.72);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    backdrop-filter: blur(20px) saturate(140%);
    z-index: 1000;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 0 rgba(255,255,255,0.05) inset;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, top 0.35s ease;
}
.navbar.scrolled {
    background: rgba(9,9,11,0.95);
    border-color: rgba(29,184,0,0.18);
    box-shadow: 0 6px 36px rgba(0,0,0,0.70), 0 1px 0 rgba(255,255,255,0.05) inset;
    top: 8px;
}

.nav-container {
    width: 100%; padding: 0 22px; height: 100%;
    display: flex; align-items: center; gap: 0;
}
.nav-logo { display: flex; align-items: center; margin-right: auto; }
.nav-logo-img { height: 68px; width: auto; max-width: 240px; display: block; }

.nav-menu {
    list-style: none; display: flex; align-items: center; gap: 2px;
    position: absolute; left: 50%; transform: translateX(-50%);
}

.nav-link {
    padding: 7px 15px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(244,244,246,0.55);
    border-radius: 100px;
    border: 1px solid transparent;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    font-family: var(--font);
    position: relative;
}
.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.09);
}
.nav-link.active-link {
    color: var(--accent-text);
}
.nav-link.active-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%;
    transform: translateX(-50%);
    width: 16px; height: 2px;
    border-radius: 2px;
    background: var(--accent);
}

.nav-cta-btn {
    margin-left: 16px;
    padding: 9px 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0a0a0a;
    background: var(--accent);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 0 var(--accent-dim), 0 6px 20px rgba(29,184,0,0.30);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.nav-cta-btn:hover {
    background: var(--accent-hover);
    box-shadow: 0 2px 0 var(--accent-dim), 0 10px 28px rgba(29,184,0,0.45);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 12px;
}
.nav-toggle span {
    width: 22px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100dvh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

/* Particles canvas — sits above bg image, below overlay */
.hero-particles {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(160deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.40) 45%, rgba(0,0,0,0.85) 100%),
        linear-gradient(to bottom, rgba(9,9,11,0.2) 0%, rgba(9,9,11,0.1) 50%, rgba(9,9,11,0.96) 100%);
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(105deg,
            rgba(29,184,0,0.05) 0%, transparent 40%,
            transparent 70%, rgba(29,184,0,0.03) 100%),
        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: 100% 100%, 80px 80px, 80px 80px;
    pointer-events: none;
}

.hero-center {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: calc(var(--nav-h) + 20px) 32px 170px;
    max-width: 920px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
}

/* Partners ticker anchored to bottom of hero */
.hero-partners {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding-bottom: 0;
    width: 100%;
}
.hero-partners-label {
    text-align: center;
    font-family: var(--label);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: transparent;
    background: linear-gradient(90deg, rgba(29,184,0,0.7) 0%, rgba(244,244,246,0.55) 50%, rgba(29,184,0,0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.hero-partners-label::before,
.hero-partners-label::after {
    content: '';
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(29,184,0,0.4));
}
.hero-partners-label::after {
    background: linear-gradient(90deg, rgba(29,184,0,0.4), transparent);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-family: var(--label);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(244,244,246,0.65);
    margin-bottom: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 9px 22px;
    border-radius: 100px;
    min-height: 38px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.hero-cursor {
    display: inline-block;
    color: var(--accent);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-title {
    font-family: var(--heading);
    font-size: clamp(4rem, 9vw, 8rem);
    font-weight: 700;
    line-height: 0.92;
    color: var(--white);
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.hero-title em {
    font-style: normal;
    color: var(--accent-text);
    position: relative;
}

/* Fleet CTA button in hero */
.hero-fleet-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px 14px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 100px;
    color: var(--white);
    text-decoration: none;
    font-family: var(--label);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    cursor: pointer;
}
.hero-fleet-btn:hover {
    background: rgba(29,184,0,0.12);
    border-color: rgba(29,184,0,0.45);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(29,184,0,0.15);
}
.hero-fleet-btn-icon {
    width: 34px; height: 34px;
    background: rgba(29,184,0,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s ease;
}
.hero-fleet-btn:hover .hero-fleet-btn-icon {
    background: rgba(29,184,0,0.22);
}
.hero-fleet-btn-icon svg { width: 16px; height: 16px; color: var(--accent); }
.hero-fleet-btn-text { color: rgba(244,244,246,0.9); }
.hero-fleet-btn-arrow svg {
    width: 16px; height: 16px;
    color: var(--accent);
    transition: transform 0.2s ease;
}
.hero-fleet-btn:hover .hero-fleet-btn-arrow svg { transform: translateX(3px); }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header { text-align: center; margin-bottom: 72px; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--label);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.section-tag::before,
.section-tag::after {
    content: '';
    width: 24px; height: 1px;
    background: currentColor;
    opacity: 0.5;
    flex-shrink: 0;
}

.section-title {
    font-family: var(--heading);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1rem;
    color: var(--gray-light);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 300;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 0 120px;
    background: #0d0f0d;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(29,184,0,0.10);
}
.services::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 92% 8%,  rgba(29,184,0,0.11) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 8%  88%, rgba(29,184,0,0.08) 0%, transparent 50%),
        radial-gradient(ellipse 30% 30% at 50% 50%, rgba(29,184,0,0.03) 0%, transparent 60%),
        linear-gradient(135deg, rgba(29,184,0,0.025) 0%, transparent 50%, rgba(29,184,0,0.015) 100%);
    pointer-events: none;
}
.services::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(29,184,0,0.40) 40%, rgba(29,184,0,0.40) 60%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}
/* Decorative animated shapes for services */
.services-deco {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 0; overflow: hidden;
}
.services-deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(29,184,0,0.08);
    animation: deco-pulse 8s ease-in-out infinite;
}
.services-deco-ring:nth-child(1) {
    width: 280px; height: 280px;
    top: -80px; right: -60px;
    animation-delay: 0s;
}
.services-deco-ring:nth-child(2) {
    width: 180px; height: 180px;
    top: -30px; right: -10px;
    border-color: rgba(29,184,0,0.05);
    animation-delay: 1.5s;
}
.services-deco-ring:nth-child(3) {
    width: 400px; height: 400px;
    bottom: -140px; left: -100px;
    animation-delay: 3s;
}
.services-deco-ring:nth-child(4) {
    width: 240px; height: 240px;
    bottom: -60px; left: -20px;
    border-color: rgba(29,184,0,0.05);
    animation-delay: 4.5s;
}
.services-deco-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(29,184,0,0.55);
    animation: deco-dot-blink 4s ease-in-out infinite;
}
.services-deco-dot:nth-child(5)  { width:3px;height:3px; top:18%; left:18%; animation-delay:0s; }
.services-deco-dot:nth-child(6)  { width:2px;height:2px; top:72%; left:82%; animation-delay:1s; }
.services-deco-dot:nth-child(7)  { width:2px;height:2px; top:38%; left:68%; animation-delay:2s; }
.services-deco-dot:nth-child(8)  { width:3px;height:3px; top:55%; left:12%; animation-delay:3s; }
.services-deco-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(29,184,0,0.12), transparent);
    height: 1px;
    animation: deco-line-slide 10s ease-in-out infinite;
}
.services-deco-line:nth-child(9)  { width:200px; top:30%; left:60%; transform:rotate(-15deg); animation-delay:0s; }
.services-deco-line:nth-child(10) { width:150px; top:65%; left:25%; transform:rotate(10deg);  animation-delay:5s; }

@keyframes deco-pulse {
    0%,100% { transform: scale(1);   opacity: 0.6; }
    50%      { transform: scale(1.06); opacity: 1; }
}
@keyframes deco-dot-blink {
    0%,100% { opacity: 0.3; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.6); }
}
@keyframes deco-line-slide {
    0%,100% { opacity: 0.4; transform: scaleX(1) rotate(var(--r,0deg)); }
    50%      { opacity: 1;   transform: scaleX(1.3) rotate(var(--r,0deg)); }
}
.services .container { position: relative; z-index: 1; }

/* ── Lista de servicios ── */
.services-list {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.service-row {
    display: grid;
    grid-template-columns: 445px 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    min-height: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    transition: background 0.25s ease;
    cursor: default;
}
.service-row::before {
    content: '';
    position: absolute;
    inset: 0 -24px;
    background: rgba(29,184,0,0.04);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}
.service-row:hover::before { opacity: 1; }

.service-row--featured {
    padding: 22px 0;
}

.service-row-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 44px;
}

.service-index {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(29,184,0,0.12);
    letter-spacing: -0.02em;
    flex-shrink: 0;
    width: 52px;
    text-align: right;
    transition: color 0.3s ease;
    -webkit-user-select: none; user-select: none;
}
.service-row:hover .service-index { color: rgba(29,184,0,0.28); }

.service-row-icon {
    flex-shrink: 0;
    width: 34px; height: 34px;
    background: rgba(29,184,0,0.08);
    border: 1px solid rgba(29,184,0,0.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.service-row-icon svg { width: 16px; height: 16px; }
.service-row-icon i { font-size: 1.1rem; color: var(--accent); }
.service-row:hover .service-row-icon {
    background: rgba(29,184,0,0.15);
    border-color: rgba(29,184,0,0.4);
    box-shadow: 0 0 20px rgba(29,184,0,0.18);
}

.service-row-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
}

.service-row-desc {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.55;
    font-weight: 300;
    margin: 0;
    max-width: 420px;
}

.service-row-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-text);
    background: rgba(29,184,0,0.1);
    border: 1px solid rgba(29,184,0,0.22);
    border-radius: 6px;
    padding: 4px 10px;
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity 0.25s;
}
.service-row:hover .service-row-tag { opacity: 1; }

/* ── Service row right (tag + toggle) ── */
.service-row-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}


/* ── LER toggle button ── */
.service-ler-toggle {
    flex-shrink: 0;
    width: 34px; height: 34px;
    background: rgba(29,184,0,0.08);
    border: 1px solid rgba(29,184,0,0.25);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.service-ler-toggle svg { width: 16px; height: 16px; transition: transform 0.25s; }
.service-ler-toggle:hover { background: rgba(29,184,0,0.16); border-color: rgba(29,184,0,0.5); }
.service-ler-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.service-ler-toggle[aria-expanded="true"] { background: rgba(29,184,0,0.15); border-color: rgba(29,184,0,0.45); }

/* ── LER inline panel ── */
.service-ler-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
    border-top: 1px solid rgba(29,184,0,0.08);
}
.service-ler-panel.is-open {
    opacity: 1;
    max-height: 2000px;
}
.service-ler-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0 0 0 80px;
    padding: 12px 40px 18px 0;
}
.service-ler-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.service-ler-list li:nth-last-child(-n+3) { border-bottom: none; }
.service-ler-list .ler-code {
    font-family: 'Barlow Condensed', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--accent);
    background: rgba(29,184,0,0.08);
    border: 1px solid rgba(29,184,0,0.18);
    border-radius: 3px;
    padding: 2px 5px;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 52px;
    text-align: center;
}
.service-ler-list .ler-desc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.35;
}
@media (max-width: 900px) {
    .service-ler-list { grid-template-columns: repeat(2, 1fr); margin-left: 0; }
    .service-ler-list li:nth-last-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,0.04); }
    .service-ler-list li:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 560px) {
    .service-ler-list { grid-template-columns: 1fr; }
    .service-ler-list li:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.04); }
    .service-ler-list li:last-child { border-bottom: none; }
    .service-ler-panel.is-open {
        background: rgba(255,255,255,0.02);
        border: 1px solid rgba(255,255,255,0.07);
        border-top: none;
        border-radius: 0 0 12px 12px;
        margin-bottom: 8px;
        overflow: visible;
    }
    .service-ler-list {
        margin-left: 0;
        padding: 8px 12px 14px;
    }
}

/* ============================================
   FLEET
   ============================================ */
.fleet {
    padding: 140px 0;
    background: #080a08;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(29,184,0,0.10);
}
.fleet::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 55% 65% at 4%  50%, rgba(29,184,0,0.09) 0%, transparent 55%),
        radial-gradient(ellipse 55% 65% at 96% 50%, rgba(29,184,0,0.07) 0%, transparent 55%),
        radial-gradient(ellipse 40% 30% at 50% 0%,  rgba(29,184,0,0.04) 0%, transparent 50%);
    pointer-events: none; z-index: 0;
}
/* Anillos concéntricos animados */
.fleet::after {
    content: '';
    position: absolute;
    left: -90px; top: 50%;
    transform: translateY(-50%);
    width: 340px; height: 340px;
    border: 1px solid rgba(29,184,0,0.07);
    border-radius: 50%;
    box-shadow:
        0 0 0 44px rgba(29,184,0,0.028),
        0 0 0 88px rgba(29,184,0,0.014),
        0 0 0 132px rgba(29,184,0,0.007);
    pointer-events: none; z-index: 0;
    animation: ring-breathe 7s ease-in-out infinite;
}
@keyframes ring-breathe {
    0%,100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
    50%      { opacity: 1;   transform: translateY(-50%) scale(1.04); }
}
/* Decorative fleet shapes */
.fleet-deco {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 0; overflow: hidden;
}
.fleet-deco-hex {
    position: absolute;
    width: 120px; height: 120px;
    border: 1px solid rgba(29,184,0,0.06);
    clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
    animation: hex-spin 20s linear infinite;
}
.fleet-deco-hex:nth-child(1) { top: 8%;  right: 6%;  width:100px; height:100px; animation-duration:24s; }
.fleet-deco-hex:nth-child(2) { top: 55%; right: 3%;  width:60px;  height:60px;  animation-direction:reverse; animation-duration:16s; }
.fleet-deco-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(29,184,0,0.5);
    animation: deco-dot-blink 5s ease-in-out infinite;
}
.fleet-deco-dot:nth-child(3) { width:3px;height:3px; top:20%; right:22%; animation-delay:0s; }
.fleet-deco-dot:nth-child(4) { width:2px;height:2px; top:70%; right:15%; animation-delay:2s; }
.fleet-deco-dot:nth-child(5) { width:2px;height:2px; top:40%; right:40%; animation-delay:1s; }
.fleet-deco-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(29,184,0,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29,184,0,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
    opacity: 0.5;
}
@keyframes hex-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.fleet .container { position: relative; z-index: 1; }

/* Vehicle type cards */
.fleet-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 72px;
}
.fleet-type-card {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}
.fleet-type-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.fleet-type-card:hover {
    background: var(--card);
    border-color: rgba(29,184,0,0.18);
    transform: translateY(-4px);
}
.fleet-type-card:hover::before { transform: scaleX(1); }

.fleet-type-icon {
    width: 56px; height: 56px;
    background: var(--accent-alpha);
    border: 1px solid rgba(29,184,0,0.15);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.fleet-type-card:hover .fleet-type-icon {
    background: rgba(29,184,0,0.16);
    border-color: rgba(29,184,0,0.4);
    box-shadow: 0 0 24px rgba(29,184,0,0.18);
}
.fleet-type-icon svg { width: 32px; height: 32px; }
.fleet-type-icon i { font-size: 2.2rem; color: var(--accent); }

.fleet-type-info h3 {
    font-family: var(--label);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
}
.fleet-type-cap {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    font-family: var(--label);
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}
.fleet-type-desc {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.55;
    font-weight: 300;
}

/* ============================================
   FLEET ORBITAL CAROUSEL
   ============================================ */

/* Section label */
.fleet-carousel-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 48px 0 0;
    position: relative;
    z-index: 10;
}
.fleet-carousel-label-line { display: none; }
.fleet-carousel-label-text {
    font-family: var(--label);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #1db800;
    padding: 12px 40px;
    background: linear-gradient(135deg, rgba(14,18,14,0.98) 0%, rgba(9,13,9,0.98) 100%);
    border-radius: 100px;
    border: 1px solid rgba(29,184,0,0.35);
    box-shadow:
        0 0 0 4px rgba(29,184,0,0.06),
        0 8px 40px rgba(0,0,0,0.70),
        inset 0 1px 0 rgba(255,255,255,0.08);
    position: relative;
}
.fleet-carousel-label-text::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(29,184,0,0.18), transparent 50%, rgba(29,184,0,0.06));
    z-index: -1;
}

/* Outer wrapper */
.fleet-carousel-wrap {
    position: relative;
    width: 100%;
    padding: 0;
    margin-top: -80px;
    -webkit-user-select: none;
    user-select: none;
}

/* Nav buttons — bold arrows */
.fleet-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 56px; height: 56px;
    border-radius: 14px;
    border: 1px solid rgba(29,184,0,0.22);
    background: linear-gradient(145deg, rgba(12,16,12,0.95), rgba(8,10,8,0.95));
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    color: rgba(29,184,0,0.80);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    outline: none;
    transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s, box-shadow 0.22s;
    box-shadow:
        0 4px 24px rgba(0,0,0,0.60),
        inset 0 1px 0 rgba(255,255,255,0.06),
        inset 0 -1px 0 rgba(0,0,0,0.40);
}
#fleetPrev { left: 4px; }
#fleetNext { right: 4px; }
.fleet-nav-btn:hover {
    background: linear-gradient(145deg, rgba(29,184,0,0.18), rgba(29,184,0,0.08));
    border-color: rgba(29,184,0,0.55);
    color: #1db800;
    box-shadow:
        0 0 32px rgba(29,184,0,0.22),
        0 4px 24px rgba(0,0,0,0.60),
        inset 0 1px 0 rgba(29,184,0,0.15);
    transform: translateY(-50%) scale(1.07);
}
.fleet-nav-btn:active { transform: translateY(-50%) scale(0.94); }
.fleet-nav-btn svg {
    width: 20px; height: 20px;
    stroke: currentColor; fill: none;
    stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
    pointer-events: none;
}

/* Oval stage */
.fleet-scene {
    width: 100%;
    height: 560px;
    position: relative;
    overflow: visible;
    cursor: grab;
    -webkit-clip-path: inset(0px 0 -60px 0);
    clip-path: inset(0px 0 -60px 0);
}
.fleet-scene.dragging { cursor: grabbing; }

.fleet-cylinder {
    width: 100%; height: 100%;
    position: relative;
}

/* Individual card */
.fleet-item {
    position: absolute;
    left: 50%; top: 52%;
    width: 520px; height: 350px;
    margin-left: -260px; margin-top: -175px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    will-change: transform, opacity;
    transition: box-shadow 0.45s cubic-bezier(0.22,1,0.36,1);
}
.fleet-item.is-active {
    cursor: zoom-in;
    box-shadow:
        0 40px 100px rgba(0,0,0,0.90),
        0 0 0 1px rgba(29,184,0,0.28),
        0 0 60px rgba(29,184,0,0.12),
        0 0 0 6px rgba(29,184,0,0.05);
}
.fleet-item:not(.is-active):hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.65);
}

.fleet-item-box {
    width: 100%; height: 100%;
    position: relative;
    background: #080c08;
    border-radius: 20px;
    overflow: hidden;
}
.fleet-item-box img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
    pointer-events: none;
    -webkit-user-select: none; user-select: none;
    transition: filter 0.60s cubic-bezier(0.22,1,0.36,1), transform 0.60s cubic-bezier(0.22,1,0.36,1);
    transform-origin: center;
}
.fleet-item .fleet-item-box img {
    filter: brightness(0.82) saturate(0.75);
}
.fleet-item.is-active .fleet-item-box img {
    filter: brightness(1) saturate(1.05);
}
.fleet-item.is-active:hover .fleet-item-box img {
    transform: scale(1.04);
}

/* Bottom gradient */
.fleet-item-box::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.10) 0%,
        transparent 30%,
        rgba(0,0,0,0.55) 68%,
        rgba(0,0,0,0.95) 100%
    );
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

/* Active card: glowing top edge */
.fleet-item.is-active::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(29,184,0,0.0) 10%,
        rgba(29,184,0,0.90) 50%,
        rgba(29,184,0,0.0) 90%,
        transparent 100%
    );
    border-radius: 20px 20px 0 0;
    z-index: 10;
}

/* Caption */
.fleet-item-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 60px 22px 20px;
    pointer-events: none;
    opacity: 1;
    z-index: 2;
}
.fleet-item-caption h3 {
    font-family: var(--heading);
    font-size: 0.72rem; font-weight: 800;
    letter-spacing: 0.20em; text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,1);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fleet-item-caption p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.40);
    margin: 5px 0 0; font-weight: 400;
    text-shadow: 0 1px 8px rgba(0,0,0,0.9);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    display: none;
    letter-spacing: 0.04em;
}

/* Active card: large, sharp, bright */
.fleet-item.is-active .fleet-item-caption h3 {
    font-size: 1.15rem;
    color: #fff;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.80);
}
.fleet-item.is-active .fleet-item-caption p {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(29,184,0,0.90);
    font-size: 0.76rem;
}
.fleet-item.is-active .fleet-item-caption p::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(29,184,0,0.90);
    flex-shrink: 0;
}

/* ── Fleet Lightbox ── */
.fleet-lightbox {
    display: none;
    position: fixed; inset: 0;
    z-index: 9000;
    background: rgba(0,0,0,0.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
}
.fleet-lightbox.is-open {
    display: flex;
    animation: lb-in 0.20s ease;
}
@keyframes lb-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.fleet-lightbox-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    padding: 64px 80px 16px;
    overflow: hidden;
}
.fleet-lightbox-img {
    max-width: 100%;
    max-height: calc(100vh - 140px);
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.80);
    display: block;
    transition: opacity 0.16s ease;
    -webkit-user-select: none; user-select: none;
}
.fleet-lightbox-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
    flex-shrink: 0;
}
.fleet-lightbox-count {
    font-family: var(--heading);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
}
.fleet-lightbox-caption {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.04em;
    text-align: center;
    pointer-events: none;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 60vw;
}
.fleet-lightbox-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.07);
    color: #fff;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.18s;
    z-index: 2;
}
.fleet-lightbox-close:hover { background: rgba(255,255,255,0.15); }
.fleet-lightbox-close svg { width: 18px; height: 18px; }
.fleet-lightbox-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.07);
    color: #fff;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.18s, transform 0.18s;
    z-index: 2;
}
.fleet-lightbox-nav:hover { background: rgba(255,255,255,0.15); }
.fleet-lightbox-nav--prev { left: 16px; }
.fleet-lightbox-nav--next { right: 16px; }
.fleet-lightbox-nav svg { width: 20px; height: 20px; }
@media (max-width: 600px) {
    .fleet-lightbox-inner { padding: 56px 16px 12px; }
    .fleet-lightbox-nav { width: 40px; height: 40px; }
    .fleet-lightbox-nav--prev { left: 8px; }
    .fleet-lightbox-nav--next { right: 8px; }
    .fleet-lightbox-nav svg { width: 16px; height: 16px; }
    .fleet-lightbox-caption { max-width: 70vw; font-size: 0.75rem; }
}

/* Thumbnail strip — hidden */
.fleet-thumbs {
    display: none;
}
.fleet-thumb {
    width: 64px; height: 44px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.08);
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    background: var(--surface);
}
.fleet-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.55) saturate(0.4);
    transition: filter 0.25s;
    pointer-events: none;
    -webkit-user-select: none; user-select: none;
}
.fleet-thumb:hover {
    border-color: rgba(255,255,255,0.30);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.fleet-thumb:hover img { filter: brightness(0.75) saturate(0.6); }
.fleet-thumb.is-active {
    border-color: rgba(255,255,255,0.45);
    box-shadow: 0 0 10px rgba(0,0,0,0.40);
}
.fleet-thumb.is-active img { filter: brightness(1) saturate(1); }

/* Drag hint label */
.fleet-drag-hint {
    display: none;
}

/* ── Responsive carrusel ── */
@media (max-width: 900px) {
    .fleet-scene { height: 420px; }
    .fleet-item  { width: 340px; height: 230px; margin-left: -170px; margin-top: -115px; }
}
@media (max-width: 640px) {
    .fleet-carousel-wrap { display: block; }
    .fleet-scene { height: 300px; }
    .fleet-item  { width: 260px; height: 174px; margin-left: -130px; margin-top: -87px; }
    #fleetPrev { left: 4px; }
    #fleetNext { right: 4px; }
    .fleet-nav-btn { width: 36px; height: 36px; border-radius: 9px; }
    .fleet-nav-btn svg { width: 14px; height: 14px; }
}
@media (max-width: 400px) {
    .fleet-scene { height: 260px; }
    .fleet-item  { width: 220px; height: 148px; margin-left: -110px; margin-top: -74px; }
}

/* Slider móvil — oculto, se usa el carrusel orbital en todas las pantallas */
.fleet-mobile-slider { display: none !important; }

/* ============================================
   ABOUT / NOSOTROS
   ============================================ */
.about {
    padding: 100px 0;
    background: #0c0e0c;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(29,184,0,0.10);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 65% 65% at 0%   50%, rgba(29,184,0,0.10) 0%, transparent 55%),
        radial-gradient(ellipse 45% 45% at 100% 50%, rgba(29,184,0,0.06) 0%, transparent 50%),
        radial-gradient(ellipse 30% 30% at 50%  100%, rgba(29,184,0,0.04) 0%, transparent 50%),
        linear-gradient(180deg, rgba(8,10,8,0) 0%, rgba(29,184,0,0.025) 50%, rgba(8,10,8,0) 100%);
    pointer-events: none; z-index: 0;
}
.section-top-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(29,184,0,0.55) 50%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}
/* Cuadrado rotado animado top-right */
.about::after {
    content: '';
    position: absolute;
    right: 48px; top: 56px;
    width: 160px; height: 160px;
    border: 1px solid rgba(29,184,0,0.08);
    transform: rotate(45deg);
    pointer-events: none; z-index: 0;
    box-shadow: inset 0 0 32px rgba(29,184,0,0.03);
    animation: square-spin 30s linear infinite;
}
@keyframes square-spin {
    from { transform: rotate(45deg); }
    to   { transform: rotate(405deg); }
}
/* Extra decorative elements for about */
.about-deco {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 0; overflow: hidden;
}
.about-deco-square {
    position: absolute;
    border: 1px solid rgba(29,184,0,0.05);
    animation: square-spin 40s linear infinite;
}
.about-deco-square:nth-child(1) {
    width:100px; height:100px;
    right: 58px; top: 70px;
    animation-direction: reverse; animation-duration:22s;
}
.about-deco-square:nth-child(2) {
    width:60px; height:60px;
    right: 88px; top: 100px;
    animation-duration: 15s;
    border-color: rgba(29,184,0,0.04);
}
.about-deco-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(29,184,0,0.5);
    animation: deco-dot-blink 5s ease-in-out infinite;
}
.about-deco-dot:nth-child(3) { width:3px;height:3px; top:15%; right:30%; animation-delay:0.5s; }
.about-deco-dot:nth-child(4) { width:2px;height:2px; top:80%; right:18%; animation-delay:2.5s; }
.about-deco-dot:nth-child(5) { width:2px;height:2px; top:50%; left:6%;  animation-delay:4s; }
.about-deco-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(29,184,0,0.15), transparent);
    animation: deco-line-slide 9s ease-in-out infinite;
}
.about-deco-line:nth-child(6) { width:180px; top:25%; left:0; animation-delay:0s; }
.about-deco-line:nth-child(7) { width:120px; top:70%; left:0; animation-delay:4s; }
.about .container { position: relative; z-index: 1; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    border: none;
}
.about-logo {
    height: auto;
    max-width: 100%;
    object-fit: contain;
    padding: 0;
}

.about-content .section-tag  { text-align: left; justify-content: flex-start; }
.about-content .section-tag::before { display: none; }
.about-content .section-title { text-align: left; margin-bottom: 28px; }

.about-text {
    font-size: 0.9375rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
}
.about-text strong { color: rgba(244,244,246,0.9); font-weight: 600; }

.about-features { margin: 28px 0 40px; display: flex; flex-direction: column; gap: 12px; }
.about-feature {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.9rem; font-weight: 400;
    color: rgba(244,244,246,0.7);
}
.feature-check {
    width: 22px; height: 22px;
    background: var(--accent-alpha);
    color: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; font-weight: 700;
    flex-shrink: 0;
    border: 1px solid rgba(29,184,0,0.25);
}

/* Timeline */
.timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding-top: 8px;
}
.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}
.timeline-line {
    flex: 1;
    height: 1px;
    background: rgba(29,184,0,0.20);
    align-self: center;
    margin-top: -24px;
    min-width: 20px;
}
.timeline-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid rgba(29,184,0,0.35);
    flex-shrink: 0;
    transition: border-color 0.3s, background 0.3s;
}
.timeline-dot--active {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(29,184,0,0.5);
}
.timeline-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.timeline-year {
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
}
.timeline-label {
    font-size: 0.68rem;
    color: var(--gray);
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
}
.timeline-item--active .timeline-year { color: var(--accent-text); }
.timeline-item--active .timeline-label { color: var(--gray-light); }

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 140px 0;
    background: #080a08;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(29,184,0,0.10);
}
.contact::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 75% 60% at 50% 75%, rgba(29,184,0,0.09) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 10% 20%, rgba(29,184,0,0.05) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 90% 20%, rgba(29,184,0,0.05) 0%, transparent 50%);
    pointer-events: none; z-index: 0;
}
.contact::after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(29,184,0,0.30) 30%, rgba(29,184,0,0.30) 70%, transparent 100%);
    pointer-events: none; z-index: 1;
}
.contact-deco {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 0; overflow: hidden;
}
.contact-deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(29,184,0,0.06);
    animation: deco-pulse 10s ease-in-out infinite;
}
.contact-deco-ring:nth-child(1) { width:320px; height:320px; top:-100px; left:-100px; animation-delay:0s; }
.contact-deco-ring:nth-child(2) { width:200px; height:200px; top:-40px;  left:-40px;  animation-delay:2s;  border-color:rgba(29,184,0,0.04); }
.contact-deco-ring:nth-child(3) { width:260px; height:260px; bottom:-80px; right:-80px; animation-delay:4s; }
.contact-deco-ring:nth-child(4) { width:140px; height:140px; bottom:-20px; right:-20px; animation-delay:6s; border-color:rgba(29,184,0,0.04); }
.contact-deco-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(29,184,0,0.55);
    animation: deco-dot-blink 5s ease-in-out infinite;
}
.contact-deco-dot:nth-child(5) { width:3px;height:3px; top:22%; left:12%;  animation-delay:0s; }
.contact-deco-dot:nth-child(6) { width:2px;height:2px; top:68%; left:88%;  animation-delay:1.5s; }
.contact-deco-dot:nth-child(7) { width:2px;height:2px; top:45%; left:50%;  animation-delay:3s; }
.contact-deco-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(29,184,0,0.10), transparent);
    animation: deco-line-slide 12s ease-in-out infinite;
}
.contact-deco-line:nth-child(8) { width:220px; top:35%; left:65%; transform:rotate(-8deg);  animation-delay:0s; }
.contact-deco-line:nth-child(9) { width:160px; top:60%; left:20%; transform:rotate(5deg);   animation-delay:6s; }
.contact .container { position: relative; z-index: 1; }

.contact-centered { text-align: center; max-width: 780px; margin: 0 auto; }
.contact-centered .section-tag { justify-content: center; }
.contact-centered .section-title { text-align: center; }

.contact-desc {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.75;
    margin-top: 16px;
    margin-bottom: 48px;
    font-weight: 300;
}

.contact-details-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 20px 24px;
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    text-align: left;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.contact-detail:hover {
    background: var(--card);
    border-color: rgba(29,184,0,0.25);
    transform: translateY(-2px);
}
.contact-detail-icon {
    width: 44px; height: 44px;
    background: var(--accent-alpha);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    border: 1px solid rgba(29,184,0,0.18);
    flex-shrink: 0;
}
.contact-detail h4 {
    font-family: var(--label);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    margin-bottom: 4px;
    text-transform: uppercase;
    color: var(--gray);
}
.contact-detail p { font-size: 0.9375rem; color: var(--white); font-weight: 500; }
.contact-detail a { color: var(--white); transition: color 0.2s; }
.contact-detail a:hover { color: var(--accent-text); }

/* Map container */
.contact-map {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    width: 100%;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.contact-map-label {
    background: var(--surface);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 14px 20px;
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.contact-map-label > span {
    font-family: var(--label);
    font-size: 0.65rem; font-weight: 600;
    color: rgba(244,244,246,0.35);
    text-transform: uppercase; letter-spacing: 0.18em;
    white-space: nowrap;
}
.contact-map-provinces { display: flex; gap: 6px; flex-wrap: wrap; }
.province-chip {
    background: var(--accent-alpha);
    color: var(--accent-text);
    font-size: 0.75rem; font-weight: 500;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(29,184,0,0.25);
    font-family: var(--label);
    letter-spacing: 0.06em;
}

/* Google Maps iframe */
.gmap-wrap {
    background: var(--surface);
    padding: 20px;
    position: relative;
}
.gmap-iframe {
    border: 0;
    border-radius: 12px;
    display: block;
    width: 100%;
    height: 420px;
    filter: invert(90%) hue-rotate(180deg) saturate(0.4) brightness(0.85);
}
.gmap-pins {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 14px;
    padding: 0 4px;
}
.gmap-pin {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(244,244,246,0.55);
}
.gmap-pin-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(29,184,0,0.6);
    flex-shrink: 0;
}
.gmap-pin-dot--secondary {
    background: rgba(29,184,0,0.4);
    box-shadow: none;
    border: 1px solid rgba(29,184,0,0.5);
}

/* ============================================
   PARTNERS / COLABORADORES
   ============================================ */
/* ── Ticker wrap ── */
.partners-ticker-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.45);
    padding: 0;
}

/* Edge fade masks */
.partners-fade {
    position: absolute;
    top: 0; bottom: 0;
    width: 160px;
    z-index: 2;
    pointer-events: none;
}
.partners-fade--left {
    left: 0;
    background: linear-gradient(to right, #09090b 0%, transparent 100%);
}
.partners-fade--right {
    right: 0;
    background: linear-gradient(to left, #09090b 0%, transparent 100%);
}

/* Scrolling track */
@keyframes partners-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partners-track {
    display: flex;
    align-items: center;
    width: max-content;
    padding: 22px 0;
    animation: partners-scroll 32s linear infinite;
    will-change: transform;
}
.partners-track:hover { animation-play-state: paused; }

/* Individual item */
.partners-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 48px;
    flex-shrink: 0;
}

.partners-item-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
}
.partners-item-logo svg {
    height: 46px;
    width: auto;
    max-width: 200px;
    filter: brightness(0) invert(1);
    opacity: 0.45;
    transition: opacity 0.3s;
}
.partners-item:hover .partners-item-logo svg { opacity: 0.7; }
.partners-item-logo .repsol-logo {
    height: 68px;
    width: auto;
    max-width: 240px;
    display: block;
    margin: 0 auto;
    filter: brightness(0) invert(1);
    opacity: 0.45;
    transition: opacity 0.3s;
}
.partners-item:hover .partners-item-logo .repsol-logo { opacity: 0.7; }

/* Pill items — categorías "próximamente" */
.partners-item--pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 0 36px;
}
.partners-pill-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(29,184,0,0.5);
    flex-shrink: 0;
}
.partners-pill-text {
    font-family: var(--label);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(244,244,246,0.2);
    white-space: nowrap;
}


/* ============================================
   SECTION TRANSITIONS — fondos conectados
   ============================================ */

/* Degradado de salida hero → servicios */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 180px;
    background: linear-gradient(to bottom, transparent, var(--dark));
    pointer-events: none;
    z-index: 1;
}
/* Servicios → flota: sin degradado extra, la línea top ya marca la sección */
/* Flota → nosotros: sin degradado, el ::after del fleet es el círculo decorativo */
/* Nosotros → contacto: sin degradado, el ::after del about es el cuadrado decorativo */

/* ============================================
   ANIMACIONES DE ENTRADA (scroll)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.reveal--left  { transform: translateX(-28px); }
.reveal.reveal--right { transform: translateX(28px); }
.reveal.reveal--scale { transform: scale(0.94); }
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* stagger para hijos */
.reveal-group > * {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1), transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.reveal-group.is-visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0.05s; }
.reveal-group.is-visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.13s; }
.reveal-group.is-visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.21s; }
.reveal-group.is-visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.29s; }
.reveal-group.is-visible > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.37s; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #07080a;
    padding: 80px 0 0;
    border-top: 1px solid rgba(29,184,0,0.12);
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(29,184,0,0.6) 50%, transparent 100%);
    z-index: 1;
}
.footer::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(29,184,0,0.05) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 100%, rgba(29,184,0,0.03) 0%, transparent 50%);
    pointer-events: none; z-index: 0;
}

.footer > .container { position: relative; z-index: 1; }

.footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    gap: 0 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-cols > .footer-col:first-child {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-link { display: block; margin-bottom: 20px; }
.footer-logo {
    height: 52px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.footer-logo:hover { opacity: 1; }

.footer-brand-desc {
    font-size: 0.875rem;
    color: rgba(244,244,246,0.40);
    line-height: 1.75;
    font-weight: 300;
    max-width: 100%;
    margin-bottom: 28px;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: rgba(37,211,102,0.08);
    border: 1px solid rgba(37,211,102,0.22);
    color: #25D366;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    font-family: var(--font);
    letter-spacing: 0.04em;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.footer-whatsapp:hover {
    background: rgba(37,211,102,0.15);
    border-color: rgba(37,211,102,0.40);
    transform: translateY(-2px);
}
.footer-whatsapp svg { width: 16px; height: 16px; }

.footer-links-row {
    display: contents;
}

.footer-links-row > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-col-title {
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.footer-nav a {
    font-size: 0.9rem;
    color: rgba(244,244,246,0.45);
    font-weight: 400;
    transition: color 0.2s;
    display: inline-block;
}
.footer-nav a:hover {
    color: var(--white);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(244,244,246,0.40);
    font-weight: 300;
}
.footer-contact-list svg {
    width: 15px; height: 15px;
    stroke: var(--accent); fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
}
.footer-contact-list a {
    color: rgba(244,244,246,0.40);
    transition: color 0.2s;
}
.footer-contact-list a:hover { color: var(--accent-text); }

.footer-bottom {
    padding: 22px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.78125rem;
    color: rgba(244,244,246,0.20);
    line-height: 1.5;
}
.footer-legal-links {
    display: flex; gap: 4px; align-items: center; flex-wrap: wrap;
}
.footer-link {
    background: none; border: none;
    color: rgba(244,244,246,0.20);
    font-size: 0.75rem; font-family: inherit;
    cursor: pointer; padding: 4px 10px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.03em;
}
.footer-link:hover {
    color: rgba(244,244,246,0.65);
    background: rgba(255,255,255,0.05);
}

/* ============================================
   FOOTER MÓVIL — estructura rediseñada
   ============================================ */
.footer-mobile { display: none; }

@media (max-width: 768px) {
    .footer-mobile {
        display: flex;
        flex-direction: column;
        padding: 0 0 0;
    }

    /* Ocultar versión desktop en móvil */
    .footer-cols,
    .footer-bottom {
        display: none;
    }

    /* ── Top: logo arriba, tagline abajo, centrado ── */
    .footer-mobile-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 36px 0 28px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .footer-mobile-logo-link { display: block; }
    .footer-mobile-logo {
        height: 64px;
        width: auto;
        opacity: 0.9;
    }
    .footer-mobile-tagline {
        font-family: var(--label);
        font-size: 0.58rem;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: rgba(29,184,0,0.55);
    }

    /* ── CTA row: WhatsApp + Email ── */
    .footer-mobile-cta-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 24px 0 0;
    }
    .footer-mobile-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 15px 12px;
        border-radius: 10px;
        font-family: var(--font);
        font-size: 0.82rem;
        font-weight: 600;
        letter-spacing: 0.02em;
        transition: transform 0.15s, opacity 0.15s;
    }
    .footer-mobile-btn:active { transform: scale(0.97); opacity: 0.85; }
    .footer-mobile-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

    .footer-mobile-btn--wa {
        background: rgba(37,211,102,0.08);
        border: 1px solid rgba(37,211,102,0.2);
        color: #25D366;
    }
    .footer-mobile-btn--email {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.1);
        color: rgba(244,244,246,0.55);
    }

    /* ── Nav horizontal ── */
    .footer-mobile-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0;
        padding: 28px 0 0;
        border-top: 1px solid rgba(255,255,255,0.05);
        margin-top: 28px;
    }
    .footer-mobile-nav a {
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        color: rgba(244,244,246,0.35);
        padding: 6px 10px;
        transition: color 0.2s;
    }
    .footer-mobile-nav a:hover { color: rgba(244,244,246,0.8); }
    .footer-mobile-nav span {
        width: 3px; height: 3px;
        border-radius: 50%;
        background: rgba(29,184,0,0.35);
        flex-shrink: 0;
    }

    /* ── Bottom: copyright + legal ── */
    .footer-mobile-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 22px 0 32px;
        padding-bottom: calc(28px + env(safe-area-inset-bottom));
    }
    .footer-mobile-copy {
        font-size: 0.68rem;
        color: rgba(244,244,246,0.15);
        letter-spacing: 0.03em;
    }
    .footer-mobile-legal {
        display: flex;
        align-items: center;
        gap: 2px;
    }
    .footer-mobile-legal .footer-link {
        font-size: 0.62rem;
        padding: 3px 8px;
        color: rgba(244,244,246,0.15);
    }
}

/* ============================================
   MODAL LEGAL
   ============================================ */
.legal-modal {
    visibility: hidden;
    opacity: 0;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    transition: opacity 0.22s ease, visibility 0.22s ease;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.legal-modal.active { visibility: visible; opacity: 1; }

.legal-modal-box {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;
    max-width: 720px; width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    display: flex; flex-direction: column;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s var(--ease);
    box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}
.legal-modal.active .legal-modal-box { transform: translateY(0) scale(1); }

.legal-modal-header {
    position: sticky; top: 0;
    background: var(--card);
    z-index: 1;
    display: flex; justify-content: flex-end;
    padding: 16px 20px 0;
    border-radius: 20px 20px 0 0;
    flex-shrink: 0;
}
#legalContent { padding: 0 40px 40px; }

.legal-modal-close {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 1.1rem; cursor: pointer;
    color: var(--gray); line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.2s, background 0.2s;
}
.legal-modal-close:hover { color: var(--white); background: rgba(255,255,255,0.12); }

#legalContent h2 {
    font-family: var(--heading);
    font-size: 2rem; font-weight: 400;
    margin-bottom: 24px; color: var(--white);
    text-transform: uppercase; letter-spacing: 0.02em;
}
#legalContent h3 {
    font-family: var(--label);
    font-size: 0.75rem; font-weight: 600;
    margin: 24px 0 10px; color: var(--accent);
    text-transform: uppercase; letter-spacing: 0.18em;
}
#legalContent p {
    font-size: 0.9375rem; line-height: 1.8;
    color: var(--gray-light); margin-bottom: 12px; font-weight: 300;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    visibility: hidden;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.35s var(--ease), visibility 0.3s ease;
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(9,9,11,0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    color: rgba(244,244,246,0.75);
    padding: 20px 32px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    z-index: 1500;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.875rem;
    border-top: 1px solid rgba(29,184,0,0.12);
}
.cookie-banner.visible { visibility: visible; opacity: 1; transform: translateY(0); }
.cookie-banner p { margin: 0; flex: 1; line-height: 1.6; }

.cookie-link {
    background: none; border: none;
    color: var(--accent-text);
    text-decoration: underline;
    cursor: pointer; font-size: inherit; font-family: inherit; padding: 0;
    transition: color 0.2s;
}
.cookie-link:hover { color: var(--accent-hover); }

.cookie-btn {
    background: var(--accent); color: #0a0a0a;
    border: none; border-radius: 10px;
    padding: 10px 28px;
    font-size: 0.875rem; font-weight: 700;
    font-family: inherit; cursor: pointer;
    white-space: nowrap; flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.cookie-btn:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* ============================================
   TOAST
   ============================================ */
.toast {
    position: fixed;
    bottom: 32px; left: 50%;
    transform: translateX(-50%) translateY(16px);
    background: var(--card);
    border: 1px solid rgba(29,184,0,0.30);
    color: var(--white);
    font-size: 0.875rem; font-weight: 500;
    padding: 12px 24px;
    border-radius: 100px;
    z-index: 3000;
    pointer-events: none; opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }


/* ============================================
   ANIMATIONS
   ============================================ */
.anim-base {
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease) !important;
    will-change: transform, opacity;
}
.anim-up    { opacity: 0; transform: translateY(28px); }
.anim-left  { opacity: 0; transform: translateX(-28px); }
.anim-right { opacity: 0; transform: translateX(28px); }
.anim-base.anim-visible { opacity: 1 !important; transform: none !important; }

/* ============================================
   MOBILE NAV DRAWER
   ============================================ */
.nav-drawer-overlay {
    display: block;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.nav-drawer-overlay.active { opacity: 1; pointer-events: auto; }

.nav-drawer {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 88vw);
    background: var(--surface);
    z-index: 999;
    flex-direction: column;
    border-left: 1px solid rgba(255,255,255,0.07);
    box-shadow: -24px 0 80px rgba(0,0,0,0.7);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    overscroll-behavior: contain;
}
.nav-drawer.active { transform: translateX(0); }

.nav-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}
.nav-drawer-logo { height: 44px; width: auto; display: block; }

.nav-drawer-close {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 10px;
    cursor: pointer; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
}
.nav-drawer-close:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.18); }
.nav-drawer-close svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

.nav-drawer-links {
    flex: 1;
    display: flex; flex-direction: column;
    padding: 12px 12px 0;
    gap: 4px;
}
.nav-drawer-link {
    display: flex; align-items: center; gap: 14px;
    padding: 15px 16px;
    border-radius: 14px;
    color: rgba(244,244,246,0.65);
    font-size: 1rem; font-weight: 500;
    font-family: var(--font);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: 1px solid transparent;
}
.nav-drawer-link:hover, .nav-drawer-link:active {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border-color: rgba(255,255,255,0.08);
}
.nav-drawer-link.active-link {
    color: var(--white);
    background: var(--accent-alpha);
    border-color: rgba(29,184,0,0.18);
}
.nav-drawer-link.active-link .nav-drawer-icon { color: var(--accent); }

.nav-drawer-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(244,244,246,0.4);
    flex-shrink: 0;
    transition: color 0.2s, background 0.2s;
}
.nav-drawer-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.nav-drawer-link:hover .nav-drawer-icon { color: rgba(244,244,246,0.8); background: rgba(255,255,255,0.09); }

.nav-drawer-label { flex: 1; }
.nav-drawer-chevron { color: rgba(244,244,246,0.2); transition: color 0.2s; }
.nav-drawer-chevron svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nav-drawer-link:hover .nav-drawer-chevron { color: rgba(244,244,246,0.45); }

.nav-drawer-cta-wrap { padding: 16px 12px; }
.nav-drawer-cta {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 16px;
    background: var(--accent);
    color: #0a0a0a; font-weight: 700;
    font-size: 0.9375rem; font-family: var(--font);
    letter-spacing: 0.04em; text-transform: uppercase;
    border-radius: 14px; border: none;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(29,184,0,0.30);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-drawer-cta:active { transform: scale(0.98); }
.nav-drawer-cta svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.nav-drawer-footer {
    padding: 16px 20px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255,255,255,0.05);
    flex-shrink: 0;
}
.nav-drawer-contact { display: flex; flex-direction: column; gap: 10px; }
.nav-drawer-contact-item {
    display: flex; align-items: center; gap: 10px;
    color: rgba(244,244,246,0.45);
    font-size: 0.8125rem; font-weight: 400;
    text-decoration: none;
    transition: color 0.2s;
}
.nav-drawer-contact-item:hover { color: rgba(244,244,246,0.75); }
.nav-drawer-contact-item svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ============================================
   RESPONSIVE — TABLET 1024px
   ============================================ */
@media (max-width: 1024px) {
    .service-row { grid-template-columns: 390px 1fr auto; gap: 20px; }
    .service-row-tag { display: none; }
    .about-grid    { gap: 56px; }
    .fleet-types-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-links-row { gap: 48px; }
}


/* ============================================
   RESPONSIVE — MOBILE 768px
   ============================================ */
@media (max-width: 768px) {
    .container { padding: 0 18px; }

    /* ── Navbar ── */
    .navbar {
        top: 10px;
        width: calc(100% - 20px);
        border-radius: 14px;
        height: 76px;
        overflow: visible;
        background: rgba(9,9,11,0.82);
        border-color: rgba(255,255,255,0.09);
    }
    .nav-logo-img { height: 60px; max-width: 220px; }
    .navbar.scrolled {
        background: rgba(9,9,11,0.97);
        top: 6px;
    }
    .nav-container { padding: 0 14px; }
    .nav-menu { display: none; }
    .nav-cta-btn { display: none; }
    .nav-toggle { display: flex; }
    .nav-drawer { display: flex; }

    /* ── Hero ── */
    .hero { min-height: unset; height: 100svh; height: 100dvh; }
    .hero-center {
        padding: calc(68px + 32px) 18px 36px;
        justify-content: center;
        text-align: center;
        align-items: center;
        flex: 1 1 auto;
        min-height: 0;
    }
    .hero-title {
        font-size: clamp(3.8rem, 17vw, 7rem);
        line-height: 0.88;
        margin-bottom: 32px;
        letter-spacing: -0.02em;
    }
    .hero-title em { color: var(--accent); }
    .hero-eyebrow {
        font-size: 0.6rem;
        padding: 7px 14px;
        letter-spacing: 0.18em;
        margin-bottom: 18px;
        border-color: rgba(29,184,0,0.22);
        background: rgba(29,184,0,0.07);
    }
    .hero-scroll { display: none; }
    .hero-fleet-btn {
        padding: 13px 22px 13px 16px;
        font-size: 0.78rem;
        border-radius: 12px;
        gap: 10px;
    }
    .hero-fleet-btn-icon { width: 32px; height: 32px; border-radius: 8px; }

    /* ── Partners ticker ── */
    .hero-partners { position: relative; bottom: auto; left: auto; right: auto; margin-top: 0; }
    .hero-partners-label {
        font-size: 0.8rem;
        margin-bottom: 0;
        padding-top: 28px;
        letter-spacing: 0.22em;
    }
    .partners-ticker-wrap { border-top: 1px solid rgba(255,255,255,0.05); }
    .partners-item { padding: 0 32px; }
    .partners-item--pill { padding: 0 24px; }
    .partners-item-logo { height: 64px; display: flex; align-items: center; }
    .partners-item-logo svg { height: 42px; max-width: 180px; }
    .partners-item-logo .repsol-logo { height: 60px; max-width: 200px; }
    .partners-fade { width: 70px; }

    /* ── Secciones generales ── */
    .services { padding: 64px 0 56px; }
    .fleet { padding: 72px 0 0; }
    .about, .contact { padding: 56px 0; }
    .section-header { margin-bottom: 36px; text-align: center; }
    .section-tag { font-size: 0.58rem; letter-spacing: 0.22em; }
    .section-title { font-size: clamp(2.2rem, 8vw, 3.2rem); letter-spacing: -0.02em; text-align: center; }
    .section-desc { font-size: 0.88rem; line-height: 1.72; text-align: center; }

    /* ── Services: tarjetas apiladas ── */
    .services-list { border-top: none; }
    .service-row {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        min-height: unset;
        border-bottom: none;
        border-radius: 12px;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.07);
        margin-bottom: 8px;
        overflow: hidden;
    }
    .service-row::before { display: none; }
    .service-row-left {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 14px;
        border-bottom: none;
    }
    .service-index { display: none; }
    .service-row-icon { width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0; }
    .service-row-icon i { font-size: 0.95rem; }
    .service-row-title { font-size: 0.9rem; white-space: normal; }
    .service-row-desc {
        font-size: 0.78rem;
        padding: 0 14px 10px;
        max-width: 100%;
        color: rgba(244,244,246,0.45);
        line-height: 1.5;
    }
    .service-row-right {
        padding: 8px 14px 10px;
        justify-content: space-between;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    .service-row-tag { display: flex; opacity: 0.8; font-size: 0.58rem; }
    .service-ler-toggle { width: 28px; height: 28px; border-radius: 6px; }
    .service-ler-toggle svg { width: 13px; height: 13px; }
    .service-row--featured { padding: 0; }

    /* ── Fleet ── */
    .fleet-types-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px; }
    .fleet-type-card {
        padding: 16px 14px; gap: 12px; border-radius: 14px;
        background: rgba(255,255,255,0.03);
        border-color: rgba(29,184,0,0.10);
    }
    .fleet-type-icon { width: 44px; height: 44px; border-radius: 11px; }
    .fleet-type-icon svg { width: 24px; height: 24px; }
    .fleet-type-info h3 { font-size: 0.82rem; }
    .fleet-type-cap { font-size: 0.72rem; }
    .fleet-type-desc { font-size: 0.73rem; }
    .fleet-nav-btn { width: 42px; height: 42px; }
    .fleet-carousel-label { display: flex; margin: 32px 0 28px; }
    .fleet-carousel-label-text { font-size: 0.64rem; padding: 10px 28px; letter-spacing: 0.20em; }
    .fleet-carousel-wrap { margin-top: 0; position: relative; }
    .fleet-carousel-wrap::before { display: none; }
    .fleet-drag-hint { display: block; text-align: center; font-size: 0.65rem; color: rgba(244,244,246,0.28); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 10px; margin-bottom: 0; }
    .fleet-carousel-wrap { margin-bottom: 0; }

    /* ── About ── */
    .about { min-height: unset; position: relative; padding: 48px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 0; }
    .about-image {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        z-index: 0;
        padding: 0;
        order: unset;
    }
    .about-content { order: 1; position: relative; z-index: 1; }
    .about-logo { max-width: 320px; margin: 0 auto; display: block; transform: none; opacity: 0.08; }
    .about-content .section-tag { display: flex; justify-content: center; text-align: center; width: 100%; }
    .about-content .section-title { text-align: center; }
    .about-text { text-align: center; font-size: 0.88rem; color: rgba(244,244,246,0.65); line-height: 1.78; }
    .about-features { align-items: flex-start; gap: 10px; width: 100%; padding-left: 32px; }
    .about-feature { font-size: 0.86rem; width: 100%; }
    .timeline { flex-wrap: nowrap; gap: 0; justify-content: space-between; padding-top: 4px; overflow: hidden; }
    .timeline-line { display: none; }
    .timeline-item { min-width: 0; flex: 1; padding: 0 4px; }
    .timeline-year { font-size: 0.62rem; }
    .timeline-label { font-size: 0.56rem; white-space: normal; text-align: center; }

    /* ── Contact ── */
    .contact-details-row { flex-direction: column; align-items: stretch; gap: 10px; }
    .contact-detail {
        max-width: 100%; min-width: unset; flex: unset;
        padding: 16px 18px; border-radius: 14px;
        background: rgba(255,255,255,0.03);
        border-color: rgba(29,184,0,0.12);
    }
    .contact-map-label { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px 18px; }
    .gmap-wrap { padding: 0; }
    .gmap-iframe { height: 260px; border-radius: 0 0 14px 14px; }
    .gmap-pins { padding: 10px 14px; flex-direction: column; gap: 6px; }
    .gmap-pin { font-size: 0.6rem; letter-spacing: 0.04em; white-space: nowrap; }

    /* ── Footer — gestionado por .footer-mobile ── */
    .footer { padding: 1px 0 0; }

    /* ── Cookie banner ── */
    .cookie-banner {
        flex-direction: row;
        padding: 14px 16px;
        padding-bottom: calc(14px + env(safe-area-inset-bottom));
        gap: 12px; font-size: 0.78rem;
    }
    .cookie-btn { padding: 10px 16px; font-size: 0.78rem; flex-shrink: 0; }
}

/* ============================================
   RESPONSIVE — 600px
   ============================================ */
@media (max-width: 600px) {
    .container { padding: 0 14px; }

    /* Hero */
    .hero-center { padding: calc(58px + 20px) 14px 22px; }
    .hero-title { margin-bottom: 20px; font-size: clamp(2.6rem, 11vw, 4rem); }

    /* Fleet carousel */
    .fleet-types-grid { gap: 8px; }

    /* Partners */
    .partners-item { padding: 0 20px; }
    .partners-item--pill { padding: 0 16px; }
    .partners-item-logo { height: 60px; }
    .partners-item-logo svg { height: 40px; }
    .partners-item-logo .repsol-logo { height: 56px; }
    .partners-fade { width: 50px; }

    /* Contact */
    .gmap-iframe { height: 230px; }
    .province-chip { font-size: 0.58rem; padding: 3px 9px; }
}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
    .container { padding: 0 14px; }

    /* Hero */
    .hero-center { padding: calc(80px + 24px) 14px 32px; }
    .hero-title { font-size: clamp(3.8rem, 17vw, 7rem); line-height: 0.88; margin-bottom: 28px; }
    .hero-eyebrow { font-size: 0.55rem; letter-spacing: 0.15em; padding: 6px 12px; margin-bottom: 14px; }
    .hero-fleet-btn { padding: 12px 18px 12px 13px; font-size: 0.73rem; gap: 9px; }
    .hero-fleet-btn-icon { width: 30px; height: 30px; }
    .hero-fleet-btn-icon svg { width: 13px; height: 13px; }
    .partners-item { padding: 0 18px; }
    .partners-item--pill { padding: 0 14px; }
    .partners-item-logo { height: 56px; }
    .partners-item-logo svg { height: 38px; }
    .partners-item-logo .repsol-logo { height: 52px; }

    /* Sections */
    .services { padding: 52px 0 44px; }
    .fleet { padding: 52px 0 12px; }
    .about { padding: 44px 0; }
    .contact { padding: 52px 0; }
    .section-header { margin-bottom: 24px; }
    .section-title { font-size: clamp(2rem, 10vw, 2.8rem); }
    .section-desc { font-size: 0.83rem; line-height: 1.7; }
    .section-tag { font-size: 0.55rem; letter-spacing: 0.18em; }

    /* Services — tarjetas compactas */
    .service-row { margin-bottom: 8px; border-radius: 12px; }
    .service-row-left { padding: 11px 12px; gap: 9px; }
    .service-row-title { font-size: 0.87rem; }
    .service-row-desc { font-size: 0.74rem; padding: 0 12px 9px; }
    .service-row-right { padding: 7px 12px 9px; }

    /* Fleet */
    .fleet-types-grid { gap: 8px; }
    .fleet-type-card { gap: 9px; padding: 14px 11px; border-radius: 12px; }
    .fleet-type-icon { width: 38px; height: 38px; border-radius: 9px; }
    .fleet-type-icon svg { width: 20px; height: 20px; }
    .fleet-carousel-label-text { font-size: 0.60rem; padding: 9px 22px; letter-spacing: 0.18em; }
    .fleet-carousel-wrap { margin-top: 0; }

    /* About */
    .about-logo { max-width: 340px; }
    .about-text { font-size: 0.85rem; }
    .about-features { gap: 8px; }
    .about-feature { font-size: 0.83rem; }
    .timeline-item { min-width: 0; }
    .timeline-year { font-size: 0.6rem; }
    .timeline-label { font-size: 0.54rem; }

    /* Contact */
    .contact-detail { padding: 14px 15px; gap: 13px; border-radius: 12px; }
    .contact-detail-icon { width: 36px; height: 36px; border-radius: 9px; }
    .contact-detail h4 { font-size: 0.55rem; }
    .contact-map { border-radius: 14px; }
    .gmap-iframe { height: 200px; }
    .contact-map-provinces { gap: 4px; }
    .province-chip { font-size: 0.54rem; padding: 3px 8px; }

    /* Partners ticker */
    .partners-track { animation-duration: 22s; }
    .partners-item { padding: 0 16px; }
    .partners-item--pill { padding: 0 12px; }
    .partners-item-logo { height: 52px; }
    .partners-item-logo svg { height: 34px; max-width: 160px; }
    .partners-item-logo .repsol-logo { height: 48px; max-width: 180px; }
    .partners-fade { width: 36px; }

    /* Legal modal */
    .legal-modal { padding: 10px; }
    .legal-modal-box { max-height: 93vh; border-radius: 18px; }
    #legalContent { padding: 0 16px 24px; }
    #legalContent h2 { font-size: 1.6rem; }

    /* Cookie */
    .cookie-banner {
        flex-direction: column;
        padding: 14px;
        padding-bottom: calc(14px + env(safe-area-inset-bottom));
        gap: 10px; font-size: 0.76rem;
        align-items: flex-start;
    }
    .cookie-btn { width: 100%; padding: 12px; font-size: 0.8rem; border-radius: 10px; text-align: center; }

    /* Footer móvil 480px */
    .footer-mobile-btn { font-size: 0.78rem; padding: 14px 10px; }
    .footer-mobile-nav a { font-size: 0.68rem; padding: 5px 8px; }

    /* Drawer */
    .nav-drawer { width: min(295px, 92vw); }
}

/* ============================================
   RESPONSIVE — 360px
   ============================================ */
@media (max-width: 360px) {
    .container { padding: 0 12px; }
    .hero-title { font-size: clamp(2.1rem, 13vw, 3rem); }
    .hero-fleet-btn { flex-wrap: wrap; justify-content: center; }
    .section-title { font-size: clamp(1.9rem, 12vw, 2.5rem); }
    .fleet-types-grid { grid-template-columns: 1fr; }
    .footer-mobile-nav a { font-size: 0.62rem; padding: 5px 6px; }
    .footer-mobile-tagline { display: none; }
    .province-chip { font-size: 0.48rem; padding: 3px 6px; }
    .timeline-item { min-width: 0; }
    .service-row-title { font-size: 0.85rem; }
}
