/* ===== ESTILOS GENERALES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --verde-oscuro: #1a472a;
    --verde-medio: #2e7d32;
    --verde-claro: #4caf50;
    --gris-oscuro: #111111;
    --gris-medio: #333333;
    --gris-claro: #f5f5f5;
    --blanco: #ffffff;
    --rojo: #c8102e;
    --sombra: rgba(0, 0, 0, 0.08);
    --sombra-fuerte: rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gris-medio);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative; /* Importante para el video */
}

/* ===== CONTENEDOR DE VIDEO DE FONDO ===== */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* Detrás de todo */
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Cubre toda el área */
}

/* Overlay oscuro para mejor legibilidad */
.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Ajusta la opacidad (0-1) */
    z-index: -1;
}

/* ===== HEADER ===== */
/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Logo como imagen */
.logo-img {
    height: 115px; /* Ajusta según tu logo */
    width: auto;
    object-fit: contain;
    margin: -32px;
    padding: 16px;
}

/* Logo como texto */
.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--verde-oscuro);
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1;
}

.logo-text .spa {
    font-size: 9px;
    color: var(--gris-medio);
    font-weight: 400;
    margin-top: 2px;
    letter-spacing: 0.8px;
}

/* ===== RESPONSIVE PARA LOGO ===== */
/* ===== MODIFICACIONES MÍNIMAS PARA MÓVIL ===== */
/* ===== IMAGEN DE CAMIÓN PARA MÓVIL ===== */
.camion-mobile {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 50vh;
    object-fit: cover;
    z-index: 1;
    opacity: 0.9;
}

/* ===== VERSIÓN MÓVIL ===== */
@media (max-width: 768px) {
    /* 1. MOSTRAR CAMIÓN EN MÓVIL */
    .camion-mobile {
        display: block;
    }
    
    /* 2. AJUSTAR VIDEO DE FONDO PARA MÓVIL */
    .video-background {
        height: 50vh; /* Solo ocupa la mitad superior */
    }
    
    .video-background video {
        object-fit: cover;
        object-position: center 30%; /* Enfocar mejor el contenido */
        transform: translate(-50%, -50%) scale(1.2); /* Zoom para llenar mejor */
    }
    
    /* 3. OVERLAY MÁS FUERTE PARA MEJOR LEGIBILIDAD */
    .video-background::after {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.1) 100%
        );
    }
    
    /* 4. AJUSTAR HERO PARA VER AMBOS (VIDEO + CAMIÓN) */
    .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-top: 120px;
        padding-bottom: 0;
    }
    
    .hero-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 3;
        padding-bottom: 40px;
        background-color: rgba(255, 255, 255, 0.85);
        border-radius: 12px;
        margin: 0 20px;
        padding: 30px;
    }
    
    /* 5. LOGO MÁS GRANDE (como ya tienes) */
    .logo-img {
        height: 120px !important;
        margin: -25px !important;
        padding: 10px !important;
    }
}

/* ===== VERSIÓN MÓVIL PEQUEÑA ===== */
@media (max-width: 480px) {
    .camion-mobile {
        height: 40vh;
    }
    
    .video-background {
        height: 40vh;
    }
    
    .hero-content {
        margin: 0 15px;
        padding: 25px;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .logo-img {
        height: 100px !important;
        margin: -20px !important;
    }
}
/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(#091a02);
    box-shadow: 0 2px 20px var(--sombra);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--verde-oscuro);
    letter-spacing: -0.5px;
}

.logo .spa {
    font-size: 9px;
    color: var(--gris-medio);
    font-weight: 400;
    margin-top: -2px;
    letter-spacing: 0.8px;
}

/* Menú de navegación - VERSIÓN MINIMALISTA AVANZADA */
.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--gris-oscuro);
    font-weight: 600;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s ease;
    position: relative;
    padding: 15px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Animación de puntos flotantes */
.nav-links a::before {
    content: '•';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    color: var(--verde-oscuro);
    font-size: 20px;
    transition: all 0.3s ease;
    opacity: 0;
}

.nav-links a:hover::before {
    transform: translateX(-50%) scale(1.5);
    opacity: 1;
    animation: float 2s ease-in-out infinite;
}

/* Línea expansiva */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, 
        transparent 0%, 
        var(--verde-oscuro) 50%, 
        transparent 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Efecto de texto en hover */
.nav-links a:hover {
    color: var(--verde-oscuro);
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(76, 175, 80, 0.4);
}

/* Animación flotante */
@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0) scale(1.5);
    }
    50% {
        transform: translateX(-50%) translateY(-5px) scale(1.8);
    }
}

/* Indicador numérico */
.nav-links a span {
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 10px;
    background: var(--rojo);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.nav-links a:hover span {
    opacity: 1;
    transform: scale(1);
}

/* Botón de menú hamburguesa (oculto en desktop) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--verde-oscuro);
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .logo h1 {
        font-size: 20px;
    }
    
    .logo .spa {
        font-size: 8px;
    }
    
    .nav-links {
        gap: 25px;
    }
    
    .nav-links a {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    /* Header ajustado para móvil */
    header {
        padding: 12px 0;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 18px;
    }
    
    .logo .spa {
        font-size: 7px;
    }
    
    /* Mostrar botón hamburguesa */
    .menu-toggle {
        display: block;
    }
    
    /* Ocultar menú normal, mostrar como menú desplegable */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--blanco);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 80px 0 40px;
        margin: 0;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 16px;
        width: 80%;
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    /* Overlay cuando el menú está abierto */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    /* Ajustar padding del hero para el header fijo */
    .hero {
        padding: 120px 0 60px; /* Más espacio arriba para el header */
    }
    
    .hero h2 {
        font-size: 32px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 0;
    }
    
    .header-container {
        padding: 0 10px;
    }
    
    .logo h1 {
        font-size: 16px;
    }
    
    .logo .spa {
        font-size: 6px;
    }
    
    .nav-links {
        width: 85%;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
}
/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Añade esta línea para centrar vertical y horizontalmente */
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    text-align: center; /* Centra todo el texto */
}

.hero-content {
    max-width: 800px; /* Un poco más ancho para mejor lectura */
    position: relative;
    z-index: 2;
    margin: 0 auto; /* Centra el contenedor */
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--rojo);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.hero h2 {
    font-size: 52px;
    font-weight: 700;
    color: var(--gris-oscuro);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero h2 .highlight {
    color: var(--verde-oscuro);
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    color: var(--gris-medio);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px; /* Limita el ancho del párrafo */
    margin-left: auto; /* Centra el párrafo */
    margin-right: auto; /* Centra el párrafo */
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--verde-oscuro);
    color: var(--blanco);
    padding: 18px 36px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--verde-oscuro);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto; /* Centra el botón */
}

.cta-button:hover {
    background-color: transparent;
    color: var(--verde-oscuro);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--sombra);
}
/* ===== SECTION HEADER ADICIONAL ===== */
/* Ajustes específicos para contenido en móvil */
@media (max-width: 768px) {
    /* Espaciado general mejorado */
    .hero, .servicios, .cobertura, .flota, .estadisticas, .contacto {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    /* Asegurar que el contenido no esté debajo del header */
    .hero {
        min-height: calc(100vh - 60px);
        padding-top: 80px;
    }
    
    /* Texto más legible */
    .hero h2 {
        margin-top: 20px;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    /* Ajustar botón CTA */
    .cta-button {
        padding: 16px 28px;
        font-size: 14px;
    }
    
    /* Ajustar secciones */
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    /* Aún más ajustes para pantallas pequeñas */
    .hero {
        padding: 70px 0 40px;
        min-height: calc(100vh - 50px);
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 15px;
    }
    
    /* Asegurar que todo el contenido sea visible */
    .container {
        padding: 0 15px;
    }
    
    /* Reducir márgenes */
    .section-header {
        margin-bottom: 40px;
    }
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin: 0 auto 80px auto; /* Centra el bloque completo */
    position: relative;
    z-index: 1;
    width: 85%; /* Ocupa el 85% del ancho disponible */
    max-width: 850px; /* Límite máximo */
    padding: 0 30px; /* Espacio interno */
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--gris-oscuro);
    margin-bottom: 25px; /* Un poco más de espacio */
    position: relative;
    display: inline-block;
    width: 100%; /* Asegura que ocupe todo el ancho */
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px; /* Bajamos un poco la línea */
    left: 50%;
    transform: translateX(-50%);
    width: 100px; /* Línea más larga */
    height: 4px; /* Línea un poco más gruesa */
    background-color: var(--verde-oscuro);
}

.section-header p {
    font-size: 18px;
    color: var(--gris-medio);
    line-height: 1.8;
    max-width: 750px;
    margin: 40px auto 0; /* Más margen superior */
    padding: 0 20px;
}
/* ===== SERVICIOS SECTION ===== */
.servicios {
    padding: 120px 0;
    background-color: var(--blanco);
    position: relative;
    z-index: 1;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.servicio-card {
    background-color: var(--blanco);
    padding: 50px 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--sombra);
    border: 1px solid transparent;
}

.servicio-card:hover {
    transform: translateY(-10px);
    border-color: var(--verde-oscuro);
    box-shadow: 0 20px 40px var(--sombra-fuerte);
}

.servicio-numero {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
}

.servicio-icon {
    font-size: 48px;
    color: var(--verde-oscuro);
    margin-bottom: 30px;
}

.servicio-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--gris-oscuro);
    margin-bottom: 20px;
    line-height: 1.3;
}

.servicio-card p {
    font-size: 16px;
    color: var(--gris-medio);
    line-height: 1.8;
}

/* ===== COBERTURA SECTION ===== */
.cobertura {
    padding: 120px 0;
    background-color: var(--blanco);
    position: relative;
    z-index: 1;
}

.cobertura-content-centered {
    max-width: 800px;
    margin: 0 auto;
}

.cobertura-text-centered {
    background-color: var(--gris-claro);
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cobertura-text-centered::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--verde-oscuro), var(--verde-medio));
}

.cobertura-text-centered h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gris-oscuro);
    margin-bottom: 25px;
    line-height: 1.2;
    text-align: center;
}

.cobertura-text-centered p {
    font-size: 18px;
    color: var(--gris-medio);
    margin-bottom: 25px;
    line-height: 1.7;
    text-align: center;
}

.ruta-container-centered {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.ruta-item-centered {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 30px;
    background-color: var(--blanco);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ruta-item-centered:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ruta-icon-centered {
    background-color: var(--verde-oscuro);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.ruta-info-centered {
    flex: 1;
}

.ruta-info-centered h4 {
    font-size: 20px;
    color: var(--verde-oscuro);
    margin-bottom: 8px;
}

.ruta-info-centered p {
    font-size: 15px;
    color: var(--gris-medio);
    margin: 0;
    text-align: left;
}

/* ===== FLOTA SECTION ===== */
.flota {
    padding: 120px 0;
    background-color: var(--gris-claro);
    position: relative;
    z-index: 1;
}

.flota-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.flota-item {
    text-align: center;
    padding: 50px 30px;
    background-color: var(--blanco);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--sombra);
    border: 2px solid transparent;
}

.flota-item:hover {
    transform: translateY(-10px);
    border-color: var(--verde-oscuro);
    box-shadow: 0 15px 35px var(--sombra-fuerte);
}

.flota-icon {
    font-size: 48px;
    color: var(--verde-oscuro);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.flota-item:hover .flota-icon {
    transform: scale(1.2);
}

.flota-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gris-oscuro);
    margin-bottom: 15px;
}

.flota-item p {
    font-size: 15px;
    color: var(--gris-medio);
    line-height: 1.6;
}

/* ===== ESTADÍSTICAS ===== */
.estadisticas {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--verde-oscuro) 0%, var(--verde-medio) 100%);
    color: var(--blanco);
    position: relative;
    z-index: 1;
}

.estadisticas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.estadistica-item h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--blanco);
}

.estadistica-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CONTACTO ===== */
.contacto {
    padding: 120px 0;
    background-color: var(--blanco);
    position: relative;
    z-index: 1;
}

.contacto-info-completa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contacto-tarjeta {
    background-color: var(--gris-claro);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contacto-tarjeta:hover {
    transform: translateY(-10px);
    border-color: var(--verde-oscuro);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contacto-icono-grande {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--verde-oscuro), var(--verde-medio));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    transition: transform 0.3s ease;
}

.contacto-tarjeta:hover .contacto-icono-grande {
    transform: rotate(15deg) scale(1.1);
}

.contacto-tarjeta h3 {
    font-size: 22px;
    color: var(--gris-oscuro);
    margin-bottom: 15px;
}

.contacto-tarjeta p {
    color: var(--gris-medio);
    line-height: 1.6;
    font-size: 15px;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--gris-oscuro);
    color: var(--blanco);
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-columna h4 {
    font-size: 18px;
    color: var(--blanco);
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-columna h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--verde-oscuro);
}

.footer-columna p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-columna ul {
    list-style: none;
}

.footer-columna li {
    margin-bottom: 12px;
}

.footer-columna a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-columna a:hover {
    color: var(--blanco);
}

.redes-sociales {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.redes-sociales a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--blanco);
    transition: all 0.3s ease;
}

.redes-sociales a:hover {
    background-color: var(--verde-oscuro);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 14px;
}

.copyright p {
    margin-bottom: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-image {
        width: 50%;
    }
    
    .hero h2 {
        font-size: 42px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .cobertura-text-centered {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 400px;
        margin-top: 50px;
        top: 0;
        transform: none;
    }
    
    .hero {
        padding: 160px 0 80px;
        text-align: center;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        margin: 0 auto 40px;
    }
    
    .servicios-grid,
    .contacto-info-completa {
        grid-template-columns: 1fr;
    }
    
    .cobertura-text-centered {
        padding: 40px 30px;
    }
    
    .cobertura-text-centered h3 {
        font-size: 28px;
    }
    
    .ruta-item-centered {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .ruta-info-centered p {
        text-align: center;
    }
    
    .flota-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .estadisticas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .servicio-card {
        padding: 40px 25px;
    }
    
    .servicio-icon {
        font-size: 40px;
    }
    
    .servicio-card h3 {
        font-size: 20px;
    }
    
    .flota-grid {
        grid-template-columns: 1fr;
    }
    
    .estadisticas-grid {
        grid-template-columns: 1fr;
    }
    
    .estadistica-item h3 {
        font-size: 36px;
    }
    
    .contacto-tarjeta {
        padding: 30px 20px;
    }
    
    .contacto-icono-grande {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .cta-button {
        padding: 16px 28px;
        font-size: 14px;
    }
}