/* ==========================================================================
   RENTA GROUP CO — Landing Page Styles
   Mobile-First Responsive Design
   Color Palette: White (#FFFFFF), Royal Blue (#1A3A8F), Gold (#D4A825)
   ========================================================================== */

/* ---- CSS Custom Properties ---- */
:root {
    /* Brand Colors */
    /* Brand Colors */
    --blue-900: #0A1220;
    --blue-800: #132138;
    --blue-700: #1C3051;
    --blue-600: #26426E;
    --blue-500: #31538A;
    --blue-400: #4B70AE;
    --blue-300: #7995C5;
    --blue-200: #A8BBDC;
    --blue-100: #D6E1F0;
    --blue-50: #EBF1F8;

    --gold-700: #8C6A29;
    --gold-600: #A67E33;
    --gold-500: #BF933D;
    --gold-400: #CCAA64;
    --gold-300: #D9C18A;
    --gold-200: #E5D8B1;
    --gold-100: #F2EFD8;
    --gold-50: #F9F7EB;

    /* ... (Mantén tus colores gray, success, error y warning intactos) ... */

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.15);
    --shadow-gold: 0 4px 20px rgba(191,147,61,.3);
    --shadow-blue: 0 4px 20px rgba(28,48,81,.2);

    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-py: clamp(3rem, 8vw, 6rem);
    --container-px: clamp(1rem, 4vw, 2rem);
    --container-max: 1200px;

    /* Transitions */
    --ease-smooth: cubic-bezier(.4, 0, .2, 1);
    --transition-fast: 200ms var(--ease-smooth);
    --transition-base: 300ms var(--ease-smooth);
    --transition-slow: 500ms var(--ease-smooth);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--blue-700);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover { color: var(--gold-500); }

ul { list-style: none; }

/* Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--blue-700);
    color: var(--white);
    padding: .75rem 1.5rem;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus {
    top: 0;
}

:focus-visible {
    outline: 3px solid var(--gold-500);
    outline-offset: 2px;
}

::selection {
    background: var(--blue-700);
    color: var(--white);
}

/* ---- Utilities ---- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.gold-text {
    color: var(--gold-500);
}

.required { color: var(--error); }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .9rem;
    padding: .7rem 1.6rem;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.2) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform .6s ease;
}

.btn:hover::after {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
    color: var(--white);
    box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(28,48,81,.35); /* <-- Actualizado */
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--blue-900);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-700));
    color: var(--blue-900);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--blue-700);
    transform: translateY(-2px);
}

.btn-outline-white {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--blue-700);
    transform: translateY(-2px);
}

.btn-sm { font-size: .8rem; padding: .5rem 1.2rem; }
.btn-lg { font-size: 1rem; padding: .85rem 2rem; }
.btn-full { width: 100%; }

/* Animación de Latido Premium para los CTA principales */
.pulse-btn {
    animation: premium-pulse 2.5s infinite;
    /* Resplandor permanente sutil */
    box-shadow: 0 4px 15px rgba(191, 147, 61, 0.4) !important;
}

@keyframes premium-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(191, 147, 61, 0.6) !important;
    }
    70% {
        box-shadow: 0 0 0 15px rgba(191, 147, 61, 0) !important;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(191, 147, 61, 0) !important;
    }
}

/* ---- Section Header ---- */
.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: .75rem;
    position: relative;
    padding-left: 2rem;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 2px;
    background: var(--gold-500);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header .section-tag {
    padding-left: 0;
}
.section-header .section-tag::before {
    display: none;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--blue-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

#site-header.scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo Animado y Responsive */
.logo {
    position: relative;
    display: block;
    height: 40px; /* Ajusta esta altura según lo alto que sea tu logo */
    width: 180px; /* Ajusta este ancho referencial */
    z-index: 1001;
}

.logo img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    max-height: 100%;
    width: auto;
    transition: opacity 0.4s var(--ease-smooth), visibility 0.4s;
}

/* Estado inicial (arriba): Muestra el logo claro, oculta el oscuro */
.logo-light {
    opacity: 1;
    visibility: visible;
}

.logo-dark {
    opacity: 0;
    visibility: hidden;
}

/* Estado Scrolled: Fundido cruzado (Muestra el oscuro, oculta el claro) */
.scrolled .logo-light {
    opacity: 0;
    visibility: hidden;
}

.scrolled .logo-dark {
    opacity: 1;
    visibility: visible;
}

/* Logo en el Footer */
.footer-logo {
    height: 45px; /* Un poco más grande en el footer si lo deseas */
    margin-bottom: 1.25rem;
}

.footer-logo img.logo-footer-img {
    position: relative;
    top: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
}

/* Hamburger Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.scrolled .hamburger,
.scrolled .hamburger::before,
.scrolled .hamburger::after {
    background: var(--blue-900);
}

.hamburger { position: relative; }
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--blue-900);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
    background: var(--blue-900);
}

/* Nav Links - Mobile */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: .25rem;
    transition: right var(--transition-base);
    box-shadow: -10px 0 40px rgba(0,0,0,.15);
    overflow-y: auto;
    z-index: 1000;
}

.nav-links.open {
    right: 0;
}

.nav-links a {
    display: block;
    padding: .85rem 1rem;
    font-weight: 500;
    font-size: .95rem;
    color: var(--gray-700);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-links a:hover,
.nav-links a:focus {
    background: var(--blue-50);
    color: var(--blue-700);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600)) !important;
    color: var(--blue-900) !important;
    text-align: center;
    font-weight: 700 !important;
    margin-top: 1rem;
    border-radius: var(--radius-full) !important;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-700)) !important;
}

/* Mobile Nav Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}
.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
#hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem var(--container-px) 3rem;
    background:
        linear-gradient(135deg, rgba(10,18,32,.75) 0%, rgba(28,48,81,.60) 50%, rgba(10,18,32,.80) 100%),
        url('../img/op1.webp') center/cover no-repeat;
    
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(191,147,61,.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(28,48,81,.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(191,147,61,.15);
    border: 1px solid rgba(191,147,61,.3);
    color: var(--gold-300);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: .5rem 1.2rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero-badge i { font-size: .65rem; }

#hero-heading {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 7vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: clamp(.95rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.8);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: rgba(255,255,255,.7);
}

.trust-item i {
    color: var(--gold-400);
    font-size: .9rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.5);
    font-size: 1.2rem;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(10px); }
    60% { transform: translateX(-50%) translateY(5px); }
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
#stats-section {
    background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
    padding: 2rem 0;
    position: relative;
}

#stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--gold-500));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--gold-400);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--gold-400);
}

.stat-label {
    display: block;
    font-size: .8rem;
    color: rgba(255,255,255,.7);
    margin-top: .25rem;
    letter-spacing: .5px;
}

/* ==========================================================================
   FLEET SECTION
   ========================================================================== */
#fleet-section {
    padding: var(--section-py) 0;
    background: var(--gray-50);
}

/* Fleet Filters */
.fleet-filters {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

@media (max-width: 767px) {
    .fleet-filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        /* Ocultar barra de scroll en móviles para UX más limpio */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .fleet-filters::-webkit-scrollbar {
        display: none;
    }
}

.filter-btn {
    background: var(--white);
    border: 1px solid var(--gray-300);
    color: var(--gray-600);
    padding: .5rem 1.25rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--blue-400);
    color: var(--blue-700);
}

.filter-btn.active {
    background: var(--blue-700);
    border-color: var(--blue-700);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* Ocultar tarjetas con animación suave */
.fleet-card {
    transition: opacity 0.4s ease, transform 0.4s ease, display 0.4s allow-discrete;
}

.fleet-card.hide {
    opacity: 0;
    transform: scale(0.95);
    display: none;
}

/* ==========================================================================
   FLEET CAROUSEL (Mobile First Scroll Snap)
   ========================================================================== */
/* ==========================================================================
   FLEET CAROUSEL (Mobile First Scroll Snap)
   ========================================================================== */
.fleet-grid {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-500) var(--gray-100);
}

.fleet-grid::-webkit-scrollbar {
    height: 8px; /* Altura elegante y sutil */
}

.fleet-grid::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: var(--radius-full);
    margin: 0 1rem; /* Evita que la barra toque los bordes extremos */
}

.fleet-grid::-webkit-scrollbar-thumb {
    background: var(--gold-500);
    border-radius: var(--radius-full);
}

.fleet-grid::-webkit-scrollbar-thumb:hover {
    background: var(--gold-600);
}

.fleet-grid.grabbing {
    cursor: grabbing;
    cursor: -webkit-grabbing;
    scroll-snap-type: none; /* Desactiva el snap mientras se arrastra para mayor fluidez */
}

.fleet-card {
    flex: 0 0 85%;
    max-width: 320px;
    scroll-snap-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: opacity 0.4s ease, transform 0.4s ease;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.fleet-card.hide {
    display: none !important; 
    opacity: 0;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.fleet-card.featured {
    border-color: var(--gold-400);
    box-shadow: 0 4px 20px rgba(191,147,61,.15); /* <-- Actualizado */
}

.fleet-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1; 
    background-color: var(--gray-50); /* Color de fondo por si alguna imagen tarda en cargar */
}

.fleet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform var(--transition-slow);
}

.fleet-card:hover .fleet-card-image img {
    transform: scale(1.05);
}

.fleet-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--blue-700);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: .35rem .8rem;
    border-radius: var(--radius-full);
}

.fleet-badge.gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--blue-900);
}

.fleet-card-body {
    padding: 1.5rem;
}

.fleet-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: .5rem;
}

.fleet-card-body > p {
    font-size: .9rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.fleet-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
    margin-bottom: 1.25rem;
}

.fleet-features li {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: var(--gray-600);
}

.fleet-features li i {
    color: var(--blue-500);
    font-size: .75rem;
    width: 16px;
    text-align: center;
}

.fleet-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.fleet-price {
    display: flex;
    align-items: baseline;
    gap: .25rem;
}

.price-from {
    font-size: .7rem;
    color: var(--gray-400);
    text-transform: uppercase;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blue-900);
}

.price-period {
    font-size: .75rem;
    color: var(--gray-400);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
#services-section {
    padding: var(--section-py) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-200);
    background: var(--white);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-blue);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--blue-900);
    box-shadow: var(--shadow-gold);
    transform: scale(1.1);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: .5rem;
}

.service-card p {
    font-size: .88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */
#benefits-section {
    padding: var(--section-py) 0;
    background: var(--gray-50);
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.benefits-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--blue-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.benefits-content > p {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    font-size: 1.4rem;
    color: var(--gold-500);
    margin-top: .15rem;
}

.benefit-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue-900);
    margin-bottom: .25rem;
}

.benefit-item p {
    font-size: .88rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.benefits-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: none;
}

.benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.benefits-float-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: .75rem;
    box-shadow: var(--shadow-lg);
}

.float-card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-900);
    font-size: 1.2rem;
}

.benefits-float-card strong {
    display: block;
    color: var(--blue-900);
    font-size: 1rem;
}

.benefits-float-card span {
    font-size: .8rem;
    color: var(--gray-500);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
#testimonials-section {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--blue-50) 100%);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform .5s var(--ease-smooth);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 0 .5rem;
}

/* Wrap inner content */
.testimonial-card {
    display: flex;
    flex-direction: column;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    padding: 2rem 1.5rem;
    min-width: 100%;
}

.testimonial-stars {
    color: var(--gold-500);
    font-size: .9rem;
    margin-bottom: 1rem;
    display: flex;
    gap: .2rem;
}

.testimonial-card blockquote p {
    font-size: .95rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.author-avatar {
    font-size: 2.5rem;
    color: var(--blue-300);
    line-height: 1;
}

.testimonial-author strong {
    display: block;
    font-size: .9rem;
    color: var(--blue-900);
}

.testimonial-author span {
    font-size: .8rem;
    color: var(--gray-400);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-200);
    color: var(--blue-700);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: .85rem;
}

.slider-btn:hover {
    background: var(--blue-700);
    border-color: var(--blue-700);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: .5rem;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.slider-dots .dot.active {
    background: var(--gold-500);
    width: 28px;
    border-radius: 5px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
#faq-section {
    padding: var(--section-py) 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item[open] {
    border-color: var(--blue-300);
    background: var(--blue-50);
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    font-size: .95rem;
    color: var(--blue-900);
    list-style: none;
    transition: color var(--transition-fast);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
    color: var(--blue-600);
}

.faq-icon {
    font-size: .8rem;
    color: var(--blue-400);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    color: var(--gold-500);
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
#contact-section {
    padding: var(--section-py) 0;
    background: var(--gray-50);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--blue-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.contact-info > p {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-detail-item i {
    width: 40px;
    height: 40px;
    background: var(--blue-100);
    color: var(--blue-700);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
}

.contact-detail-item strong {
    display: block;
    font-size: .85rem;
    color: var(--blue-900);
    margin-bottom: .1rem;
}

.contact-detail-item span,
.contact-detail-item a {
    font-size: .88rem;
    color: var(--gray-500);
}

.contact-social {
    display: flex;
    gap: .75rem;
}

.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue-700);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: all var(--transition-fast);
}

.contact-social a:hover {
    background: var(--gold-500);
    color: var(--blue-900);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.contact-form h3 i {
    color: var(--gold-500);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: .25rem;
}

.form-group label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--gray-800);
    padding: .7rem 1rem;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-md);
    background: var(--gray-50);
    transition: all var(--transition-fast);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(28,48,81,.1); /* <-- Actualizado */
}

.form-group input.error,
.form-group select.error {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-error {
    font-size: .75rem;
    color: var(--error);
    margin-top: .25rem;
    min-height: 1rem;
    display: block;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: .5rem;
    margin-bottom: 1rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--blue-700);
}

.form-checkbox label {
    font-size: .82rem;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 0;
}

.form-checkbox a {
    color: var(--blue-600);
    text-decoration: underline;
}

/* Animación de pulso cuando se selecciona un vehículo desde la flota */
@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(191, 147, 61, 0.7); border-color: var(--gold-500); background: var(--gold-50); }
    70% { box-shadow: 0 0 0 12px rgba(191, 147, 61, 0); border-color: var(--gold-500); background: var(--white); }
    100% { box-shadow: 0 0 0 0 rgba(191, 147, 61, 0); border-color: var(--gray-300); }
}

.form-group select.highlight-pulse {
    animation: pulse-gold 1.5s ease-out;
    border-color: var(--gold-500);
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-success i {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--blue-900);
    margin-bottom: .5rem;
}

.form-success p {
    color: var(--gray-500);
    font-size: .95rem;
}

/* intlTelInput Overrides */
.iti {
    width: 100%;
}

.iti__flag-container {
    z-index: 5;
}

.iti input {
    width: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
    background: var(--gray-100);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

/* ==========================================================================
   LOCATION SECTION
   ========================================================================== */
#location-section {
    padding: 0 0 var(--section-py) 0; /* Solo padding inferior para que fluya natural debajo del contacto */
    background: var(--gray-50);
}

.map-wrapper {
    position: relative;
    width: 100%;
    /* Ratio ideal para móviles: más cuadrado */
    aspect-ratio: 4 / 3; 
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    /* Transform previene un bug de Safari donde los bordes redondeados se pierden en iframes */
    transform: translateZ(0); 
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    /* Filtro elegante: levemente desaturado hasta que el usuario hace hover */
    filter: grayscale(30%) contrast(1.1); 
    transition: filter var(--transition-base);
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* Ajuste panorámico para Tablets y PC */
@media (min-width: 768px) {
    .map-wrapper {
        aspect-ratio: 21 / 9; /* Se vuelve más panorámico y elegante en pantallas grandes */
        max-height: 450px;
    }
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
#cta-banner {
    padding: var(--section-py) 0;
    background:
        linear-gradient(135deg, rgba(10,18,32,.95) 0%, rgba(28,48,81,.9) 100%),
        url('../img/op1.webp') center/cover no-repeat;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
#site-footer {
    background: var(--blue-900);
    color: rgba(255,255,255,.7);
    padding: 3rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: .88rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: .6rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gold-500);
    color: var(--blue-900);
}

.footer-links-col h4 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-links-col a {
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    transition: all var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--gold-400);
    padding-left: .25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: center;
    text-align: center;
    font-size: .82rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,.5);
    font-size: .82rem;
}

.footer-bottom-links a:hover {
    color: var(--gold-400);
}

/* ==========================================================================
   WHATSAPP WIDGET
   ========================================================================== */
.wa-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
}

.wa-fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    position: relative;
    z-index: 2;
    transition: all var(--transition-base);
}

.wa-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,.5);
}

.wa-fab-icon,
.wa-fab-close {
    position: absolute;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-fab-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

.wa-fab.active .wa-fab-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

.wa-fab.active .wa-fab-close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.wa-fab-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: waPulse 2s infinite;
}

.wa-fab.active .wa-fab-pulse { animation: none; opacity: 0; }

@keyframes waPulse {
    0% { transform: scale(1); opacity: .6; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Chat Panel */
.wa-panel {
    position: absolute;
    bottom: calc(100% + .75rem);
    right: 0;
    width: 340px;
    max-width: calc(100vw - 2rem);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(0,0,0,.2);
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(.95);
    transition: all var(--transition-base);
}

.wa-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-panel-header {
    background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.wa-header-info {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.wa-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    font-size: 1.1rem;
    position: relative;
    flex-shrink: 0;
}

.wa-online {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    background: #25D366;
    border-radius: 50%;
    border: 2px solid var(--blue-700);
}

.wa-header-info strong {
    display: block;
    color: var(--white);
    font-size: .9rem;
}

.wa-header-info span {
    font-size: .72rem;
    color: rgba(255,255,255,.7);
}

.wa-close-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,.7);
    font-size: 1rem;
    cursor: pointer;
    padding: .25rem;
    transition: color var(--transition-fast);
}
.wa-close-btn:hover { color: var(--white); }

.wa-panel-body {
    padding: 1.25rem;
    max-height: 420px;
    overflow-y: auto;
    background: #ECE5DD;
}

.wa-bubble {
    background: var(--white);
    border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
    padding: .8rem 1rem;
    margin-bottom: 1rem;
    font-size: .85rem;
    color: var(--gray-700);
    box-shadow: 0 1px 2px rgba(0,0,0,.08);
    position: relative;
}

.wa-bubble p { margin-bottom: .3rem; }
.wa-bubble p:last-of-type { margin-bottom: 0; }

.wa-time {
    display: block;
    text-align: right;
    font-size: .65rem;
    color: var(--gray-400);
    margin-top: .4rem;
}

/* WA Form */
.wa-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

.wa-form-group {
    margin-bottom: .75rem;
}

.wa-form-group label {
    font-size: .75rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: .3rem;
    display: block;
}

.wa-form-group input,
.wa-form-group select,
.wa-form-group textarea {
    font-family: var(--font-body);
    font-size: .85rem;
    color: var(--gray-800);
    padding: .6rem .8rem;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    width: 100%;
    transition: all var(--transition-fast);
    appearance: auto; 
}

.wa-form-group input:focus,
.wa-form-group select:focus,
.wa-form-group textarea:focus {
    outline: none;
    border-color: #25D366;
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(37,211,102,.1);
}

.wa-form-group textarea {
    resize: vertical;
    min-height: 50px;
}

.wa-form-group .form-error {
    font-size: .7rem;
}

.wa-form-group input.error {
    border-color: var(--error);
}

.wa-submit-btn {
    width: 100%;
    padding: .7rem;
    border: none;
    border-radius: var(--radius-sm);
    background: #25D366;
    color: var(--white);
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: all var(--transition-fast);
}

.wa-submit-btn:hover {
    background: #1DA851;
    transform: translateY(-1px);
}

.wa-success {
    text-align: center;
    padding: 1.5rem;
}

.wa-success i {
    font-size: 2rem;
    color: #25D366;
    margin-bottom: .5rem;
}

.wa-success p {
    font-size: .9rem;
    color: var(--gray-600);
    font-weight: 600;
}

/* WA intlTelInput in widget */
.wa-form-group .iti {
    width: 100%;
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue-700);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-500);
    color: var(--blue-900);
    transform: translateY(-3px);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS — Tablet (768px+)
   ========================================================================== */
@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fleet-card {
        flex: 0 0 45%; /* Muestra 2 tarjetas a la vez */
        scroll-snap-align: start;
    }

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

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form {
        padding: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS — Desktop (1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
    html {
        scroll-padding-top: 80px;
    }

    /* Aumentar tamaño de los Logos en PC */
    .logo {
        height: 60px; /* Aumenta la altura del logo principal */
        width: 240px; /* Le da espacio suficiente para que la imagen no se corte */
    }

    .footer-logo {
        height: 80px; /* El logo del footer puede ser aún más grande para destacar */
        width: 300px;
    }

    .nav-container {
        height: 90px; /* Aumentamos la altura del header para que el nuevo logo respire bien */
    }

    /* Nav - Desktop */
    .nav-toggle { display: none; }

    .nav-links {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
        gap: 0;
        overflow: visible;
        margin: 0 auto;
    }

    .nav-links a {
        padding: .5rem .8rem;
        font-size: .85rem;
        color: rgba(255,255,255,.85);
        border-radius: var(--radius-full);
    }

    .scrolled .nav-links a {
        color: var(--gray-700);
    }

    .nav-links a:hover,
    .nav-links a:focus {
        background: rgba(255,255,255,.15);
        color: var(--white);
    }

    .scrolled .nav-links a:hover,
    .scrolled .nav-links a:focus {
        background: var(--blue-50);
        color: var(--blue-700);
    }

    .nav-cta {
        margin-top: 0 !important;
        margin-left: .5rem;
    }

    /* Fleet */
    .fleet-card {
        flex: 0 0 31%; /* Muestra 3 tarjetas a la vez */
        max-width: 380px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Benefits */
    .benefits-layout {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .benefits-image {
        display: block;
        min-height: 550px;
    }

    /* Testimonials - show 2 at a time */
    .testimonial-card {
        flex: 0 0 50%;
        min-width: 50%;
    }

    /* Contact */
    .contact-layout {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: flex-start;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS — Large Desktop (1280px+)
   ========================================================================== */
@media (min-width: 1280px) {
    .nav-links a {
        padding: .5rem 1rem;
        font-size: .88rem;
    }
}

/* ==========================================================================
   PREFERS REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html { scroll-behavior: auto; }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    #site-header,
    .wa-widget,
    .back-to-top,
    .hero-scroll-indicator,
    .slider-controls {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    a { text-decoration: underline; }
}

/* ==========================================================================
   LOADING ANIMATION
   ========================================================================== */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--blue-900);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255,255,255,.2);
    border-top-color: var(--gold-500);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
