  :root {
        --deep-navy: #000a14;
        --electric-blue: #0084ff;
        --sky-cyan: #00c3ff;
        --dark-matte: #02070e;
        --pure-white: #ffffff;
        --text-muted: #94a3b8;
    }

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

    body {
        font-family: 'Montserrat', sans-serif;
        background-color: var(--dark-matte);
        color: var(--pure-white);
        overflow-x: hidden;
    }

    /* --- Navegación --- */
    .navbar {
        background: linear-gradient(to bottom, rgba(0, 10, 20, 0.95), rgba(0, 10, 20, 0.85));
        height: 80px;
        display: flex;
        align-items: center;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        border-bottom: 1px solid rgba(0, 132, 255, 0.25);
        backdrop-filter: blur(10px);
    }

    .nav-container {
        width: 90%;
        max-width: 1440px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* --- Ajuste de Logo Flotante --- */
    .nav-logo-wrapper {
        position: relative;
        height: 80px;
        display: flex;
        align-items: center;
        z-index: 1010;
    }

    .nav-logo-wrapper a { display: block; line-height: 0; }

    .main-logo-img {
        height: 110px;
        width: auto;
        object-fit: contain;
        position: absolute;
        top: 50%;
        transform: translateY(-42%);
        transition: transform 0.3s ease, filter 0.3s ease;
        filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 4px rgba(0, 132, 255, 0.2));
    }

    .nav-logo-wrapper a:hover .main-logo-img {
        transform: translateY(-40%) scale(1.03);
        filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 8px rgba(0, 195, 255, 0.4));
    }

    .nav-logo-fallback { font-family: 'Archivo Black', sans-serif; font-size: 1.5rem; font-weight: 900; }
    .nav-logo-fallback span { color: var(--electric-blue); }

    .nav-links { display: flex; list-style: none; gap: 35px; align-items: center; }
    .nav-links a { text-decoration: none; color: var(--pure-white); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.3s; }
    .nav-links a.active, .nav-links a:hover { color: var(--sky-cyan); }
    .btn-nav { background: linear-gradient(135deg, var(--electric-blue), #0056b3); padding: 12px 24px; border-radius: 6px; color: white !important; font-weight: 800 !important; box-shadow: 0 4px 15px rgba(0, 132, 255, 0.3); }
    .menu-toggle { display: none; }

    /* ==========================================================================
       Estructura Core del Slider (Contenedor Principal)
       ========================================================================== */
    .hero-slider-wrapper {
        position: relative;
        width: 100%;
        height: 100vh;
        min-height: 650px;
        background-color: var(--dark-matte);
        overflow: hidden;
    }

    /* Diapositivas individuales indexadas */
    .slide {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        padding-top: 80px;
        background-no-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        opacity: 0;
        visibility: hidden;
        z-index: 1;
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
    }

    .slide.active {
        opacity: 1;
        visibility: visible;
        z-index: 5;
    }

    .hero-overlay {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: linear-gradient(to bottom, rgba(0,10,20,0.85) 0%, rgba(2,7,14,0.4) 50%, rgba(2,7,14,0.95) 100%);
        z-index: 2;
    }

    .hero-container {
        position: relative;
        z-index: 10;
        width: 90%;
        max-width: 1440px;
        margin: auto auto;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 50px;
        align-items: center;
    }

    .hero-logo-space{

    width:100%;

    height:40px;

}

/* Fleet Title - Desktop */
.fleet-desktop{
    display:block;
    font-family:'Archivo Black', sans-serif;
    font-size:3.2rem;
    font-weight:900;
    line-height:0.95;
    color:#ffffff;
    margin:10px 0 20px;
}

.fleet-tagline{
    color:#ff9900;
    font-size:1.1rem;
    font-weight:800;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:5px;
}

.fleet-mobile{
    display:none;
}

@media (max-width:768px){

    .fleet-desktop{
        display:none;
    }

    .fleet-mobile{
        display:block;
        font-size:42px;
        line-height:1;
    }


.express-offer{

        padding:30px 20px;
        width:100%;
        box-sizing:border-box;

    }
    
    .express-container{

        padding:30px 20px;

    }

}

    /* Info Text Side */
    .hero-info-side { display: flex; flex-direction: column; justify-content: center; text-align: left; }
    .tagline { color: var(--sky-cyan); font-weight: 900; letter-spacing: 4px; font-size:1.2rem; margin-bottom: 5px; }
.main-title { font-family: 'Archivo Black', sans-serif; font-size: 3.2rem; line-height: 0.95; color: var(--pure-white); margin-bottom: 15px; }
    .sub-headline { font-size: 1.1rem; font-weight: 700; color: var(--pure-white); line-height: 1.4; border-top: 2px solid var(--pure-white); padding-top: 15px; margin-bottom: 35px; max-width: 550px; }

    .value-props { display: flex; flex-direction: column; gap: 18px; }
    .prop-item { display: flex; align-items: center; gap: 15px; }
    .icon-shape { background: rgba(0, 132, 255, 0.15); border: 1px solid var(--electric-blue); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--sky-cyan); font-size: 1.3rem; }
    .prop-text { font-size: 0.9rem; font-weight: 800; line-height: 1.2; letter-spacing: 0.5px; }

    /* --- Banners de Servicios Inferiores --- */
    .services-banner { position: relative; z-index: 15; width: 100%; background: var(--electric-blue); }
    .banner-headline { background: #000000; color: var(--pure-white); text-align: center; padding: 8px 10px; font-weight: 900; font-size:0.85rem; letter-spacing: 1px; }
    .banner-grid { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
    .service-tab { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 18px 15px; background: var(--electric-blue); border-right: 1px solid rgba(255, 255, 255, 0.2); }
    .service-tab:last-child { border-right: none; }
    .service-tab.active { background: #004da3; }
    .service-tab .tab-num { font-size: 2.8rem; font-weight: 900; font-family: 'Archivo Black', sans-serif; line-height: 1; }
    .tab-content h4 { font-size:1rem; font-weight: 900; letter-spacing: 0.5px; }
    .tab-content p { font-size: 0.75rem; font-weight: 600; opacity: 0.85; }

    /* ==========================================================================
       Estilos de los Controles de Flechas Flotantes
       ========================================================================== */
    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(2, 7, 14, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: var(--pure-white);
        width: 55px;
        height: 55px;       
        border-radius: 50%;
        font-size: 1.3rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 50;
        backdrop-filter: blur(5px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .slider-arrow:hover {
        background: var(--electric-blue);
        border-color: var(--sky-cyan);
        box-shadow: 0 0 15px rgba(0, 132, 255, 0.5);
        color: white;
    }

    .prev-arrow { left: 25px; }
    .next-arrow { right: 25px; }

    /* Control de Puntos (Dots) */
    .slider-dots {
        position: absolute;
        bottom: 120px; /* Posicionado exactamente arriba del banner negro de los servicios */
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 50;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active, .dot:hover {
        background: var(--sky-cyan);
        transform: scale(1.2);
        box-shadow: 0 0 8px var(--sky-cyan);
    }

    /* ==========================================================================
       Media Queries Adaptativos Responsivos
       ========================================================================== */
    @media (max-width: 768px) {
        /* ... tus estilos anteriores de .navbar y .nav-container ... */

        /* 1. El Menú Desplegable: Oculto por defecto en móviles */
        .nav-links {
            display: none !important; /* Forzamos a que empiece cerrado siempre */
            flex-direction: column !important;
            position: absolute !important;
            top: 80px; 
            left: 0;
            width: 100%;
            background-color: rgba(3, 9, 20, 0.98) !important;
            backdrop-filter: blur(15px);
            border-bottom: 3px solid var(--electric-blue);
            padding: 20px 0 !important;
            margin: 0 !important;
            z-index: 9999;
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
        }

        /* 2. ESTA ES LA CLAVE: Cambiado .active por .show para que coincida con tu JS */
        .nav-links.show {
            display: flex !important; /* Al hacer click, JS mete 'show' y el menú se abre */
        }

        /* 3. Ajuste de los items */
        .nav-links li {
            width: 100%;
            text-align: center;
            margin: 12px 0 !important;
            padding: 0 20px;
        }

        .nav-links a {
            display: block;
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        .main-logo-img { height: 90px; transform: translateY(-45%); }
        .menu-toggle { display: block; font-size: 1.6rem; cursor: pointer; color: var(--sky-cyan); z-index: 1010; }
        .nav-links { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; width: 100%; background: rgba(0, 10, 20, 0.98); border-bottom: 2px solid var(--electric-blue); padding: 30px 0; gap: 25px; text-align: center; box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
        .nav-links.show { display: flex; }
        .nav-links li { width: 100%; }
        .btn-nav { display: inline-block; width: 80%; }
    }/* ==========================================================================
       Botones de Acción en el Hero (CTA)
       ========================================================================== */
    .hero-cta-buttons {
        display: flex;
        gap: 15px;
        margin-top: 35px;
        width: 100%;
    }
    
    .btn-cta-blue-solid {
    background: #007bff;
    color: white;
    padding: 15px 30px;
    display: inline-block;
    text-decoration: none;
}
    
    .hero-cta-buttons a {
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 14px 28px;
        border-radius: 6px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Botón Sólido Premium Naranja */
    .btn-cta-primary {
        background: linear-gradient(135deg, #ff9900, #cc7a00);
        color: #ffffff;
        box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
    }

    .btn-cta-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 153, 0, 0.5);
        filter: brightness(1.1);
    }

    /* Botón Outline Transparente */
    .btn-cta-outline {
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid #ffffff;
        color: #ffffff;
        backdrop-filter: blur(5px);
    }

    .btn-cta-outline:hover {
        background: #ffffff;
        color: #02070e; /* Invierte al color oscuro de tu marca */
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    }
    

    /* Adaptación Responsiva para Pantallas de Teléfonos */
    @media (max-width: 600px) {
         .hero-cta-buttons {
            flex-direction: column;
            gap: 12px;
            align-items: center;
        }
        
        .hero-cta-buttons a {
            width: 100%;
            max-width: 320px;
              /* Evita que el botón sea excesivamente ancho en móviles */
        }
    }
     /* ==========================================================================
       SECCIÓN HOW IT WORKS (CÓMO FUNCIONA)
       ========================================================================== */
    .how-it-works-section {
        background-color: #000000;
        padding: 80px 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .how-container {
        width: 90%;
        max-width: 1400px;
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    /* Encabezado de la Sección */
    .how-header {
        text-align: center;
    }

    .how-header h2 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-style: italic;
        font-size: 3rem;
        color: #ffffff;
        margin: 0 0 10px 0;
        letter-spacing: 1px;
    }

    .how-header p {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 1.1rem;
        color: #8a99ad;
        margin: 0;
    }

    /* Cuadrícula de Pasos */
    .how-steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .step-card {
        background: #020611;
        border: 1px solid rgba(0, 85, 255, 0.2);
        border-radius: 20px;
        padding: 40px 30px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .step-card:hover {
        transform: translateY(-5px);
        border-color: #0055ff;
    }

    /* Números Gigantes de Fondo */
    .step-number {
        position: absolute;
        top: 20px;
        right: 25px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-style: italic;
        font-size: 2.5rem;
        color: rgba(0, 140, 255, 0.1);
        line-height: 1;
    }

    /* Íconos circulares */
    .step-icon {
        width: 70px;
        height: 70px;
        background: rgba(0, 85, 255, 0.1);
        border: 2px solid #0055ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: #00bcff;
        margin-bottom: 25px;
        box-shadow: 0 0 15px rgba(0, 85, 255, 0.2);
    }

    .step-card h3 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-size: 1.35rem;
        color: #ffffff;
        margin: 0 0 15px 0;
    }

    .step-card p {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 0.95rem;
        color: #a0b2c6;
        line-height: 1.5;
        margin: 0;
    }

    .step-card p strong {
        color: #00bcff;
    }

    /* Caja de Imagen Inferior */
    .how-image-footer-box {
        width: 100%;
        height: 250px;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    }

    .how-footer-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
        .how-steps-grid {
            grid-template-columns: 1fr; /* Una columna en celulares */
            gap: 25px;
        }
        .step-card {
            padding: 35px 25px;
        }
        .how-image-footer-box {
            height: 180px;
        }
    }
    /* ==========================================================================
       SECCIÓN SELECCIÓN DE CONFIANZA (BEFORE/AFTER + WHY US)
       ========================================================================== */
    .trust-section {
        background-color: #000000;
        padding: 60px 0 80px 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .trust-container {
        width: 90%;
        max-width: 1400px;
        display: flex;
        flex-direction: column;
        gap: 70px;
    }

    .ba-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .ba-header h2 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-style: italic;
        font-size: 2.8rem;
        color: #ffffff;
        margin: 0 0 10px 0;
        letter-spacing: 1px;
    }

    .ba-header p {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 1.05rem;
        color: #8a99ad;
        margin: 0;
    }

    /* --- ESTILOS BEFORE & AFTER --- */
    .ba-display-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .ba-photo-card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
        height: 380px;
    }

    .ba-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Etiquetas flotantes sobre las fotos */
    .ba-badge {
        position: absolute;
        top: 20px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-size: 0.9rem;
        padding: 6px 16px;
        border-radius: 6px;
        letter-spacing: 1px;
        z-index: 5;
        box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    }

    .badge-before {
        left: 20px;
        background-color: #ea2323; /* Rojo para el antes */
        color: #ffffff;
    }

    .badge-after {
        right: 20px;
        background-color: #00cc44; /* Verde para el después */
        color: #ffffff;
    }

    /* Divisor horizontal elegante */
    .section-divider {
        border: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(0, 85, 255, 0.3), transparent);
        margin: 10px 0;
    }
    
    /* --- ESTILOS WHY CHOOSE US --- */
    .wcu-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .wcu-card {
        background: #020611;
        border: 1px solid rgba(0, 85, 255, 0.15);
        border-radius: 20px;
        padding: 35px 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .wcu-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0, 85, 255, 0.15);
    }

    .wcu-icon-box {
        width: 60px;
        height: 60px;
        border-radius: 14px;
        background: rgba(0, 85, 255, 0.1);
        border: 1px solid rgba(0, 85, 255, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: #00bcff;
        margin-bottom: 20px;
    }

    .wcu-card h3 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-size: 1.15rem;
        color: #ffffff;
        margin: 0 0 12px 0;
    }

    .wcu-card p {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 0.88rem;
        color: #a0b2c6;
        line-height: 1.5;
        margin: 0;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
        .ba-display-grid {
            grid-template-columns: 1fr; /* Las fotos del antes y después se apilan en celular */
        }
        .ba-photo-card {
            height: 260px;
        }
        .wcu-grid {
            grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablets */
        }
    }

    @media (max-width: 640px) {
        .wcu-grid {
            grid-template-columns: 1fr; /* 1 sola columna en celulares */
        }
        .ba-header h2 {
            font-size: 2.2rem;
        }
    }
    /* ==========================================================================
       SECCIÓN SELECCIÓN DE PRECIOS RESIDENCIAL (3 COLUMNAS)
       ========================================================================== */
    .pricing-packages {
        background-color: #000000;
        padding: 60px 0 100px 0;
        display: flex;
        justify-content: center;
    }

    .packages-container {
        width: 90%;
        max-width: 1400px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    /* Base de la Tarjeta */
    .package-card {
        background: #050b14;
        border-radius: 20px;
        padding: 30px 24px;
        display: flex;
        flex-direction: column;
        position: relative;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .featured-package{
    transform: scale(1.05);
    box-shadow:
        0 0 20px rgba(0,255,120,.20),
        0 0 50px rgba(0,255,120,.10);
    position: relative;
    z-index: 5;
}

    .package-card:hover {
        transform: translateY(-5px);
    }

    /* Cabeceras */
    .card-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
    }

    .card-icon-circle {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }

    .header-text h3 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-style: italic;
        font-size: 1.5rem;
        color: #ffffff;
        margin: 0;
    }

    .header-text span {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        color: #a0b2c6;
        text-transform: uppercase;
    }

   .badge-popular {
        background: #00cc44;
        color: #ffffff !important;
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 0.75rem !important;
        font-weight: 900;
        letter-spacing: 0.5px;
    }

    /* Matriz de Precios */
    .pricing-tier {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
        margin-bottom: 20px;
        gap: 10px;
    }

    .tier-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
    }

    .tier-item span {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.65rem;
        font-weight: 700;
        color: #8a99ad;
        margin-bottom: 5px;
    }

    .tier-item strong {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-size: 1.6rem;
    }

    /* Contenedores de Imágenes */
    .card-image-box {
        width: 100%;
        height: 160px;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 25px;
        position: relative;
    }

    .package-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Lista de Características */
    .package-features {
        list-style: none;
        margin: 0; padding: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .package-features li {
        font-family: 'Montserrat', sans-serif;
        color: #ffffff;
        font-size: 0.95rem;
        font-weight: 600;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        line-height: 1.3;
    }

    .package-features li i {
        font-size: 1.1rem;
        margin-top: 2px;
    }

    .package-features li small {
        color: #8a99ad;
        display: block;
        font-size: 0.8rem;
    }
    
    .package-subtitle{
    color:#00d26a;
    font-size:13px;
    font-weight:600;
    margin-top:5px;
}

    /* --------------------------------------------------------------------------
       IDENTIDADES DE COLOR ESPECÍFICAS (BORDES E ILUMINACIÓN)
       -------------------------------------------------------------------------- */

    /* Variante Azul: Premium Wash */
    .card-blue { border: 2px solid #0055ff; }
    .card-blue:hover { box-shadow: 0 15px 35px rgba(0, 85, 255, 0.3); }
    .card-blue .card-icon-circle { background: rgba(0, 85, 255, 0.15); border: 2px solid #0055ff; color: #3580ff; }
    .card-blue .tier-item strong { color: #008cff; }
    .card-blue .package-features li i { color: #008cff; }

    /* Variante Verde: Full Detail */
    .card-green { border: 2px solid #00cc44; }
    .card-green:hover { box-shadow: 0 15px 35px rgba(0, 204, 68, 0.3); }
    .card-green .card-icon-circle { background: rgba(0, 204, 68, 0.15); border: 2px solid #00cc44; color: #26e66c; }
    .card-green .tier-item strong { color: #00cc44; }
    .card-green .package-features li i { color: #00cc44; }

    /* Variante Naranja: Premium Detail */
    .card-orange { border: 2px solid #ff7700; }
    .card-orange:hover { box-shadow: 0 15px 35px rgba(255, 119, 0, 0.3); }
    .card-orange .card-icon-circle { background: rgba(255, 119, 0, 0.15); border: 2px solid #ff7700; color: #ff943d; }
    .card-orange .tier-item strong { color: #ff7700; }
    .card-orange .package-features li i { color: #ff7700; }

    /* RESPONSIVE PARA DISPOSITIVOS */
    @media (max-width: 1024px) {
        .packages-container {
            grid-template-columns: 1fr; /* Se apilan verticalmente en celulares */
            max-width: 480px;
        }
    }
    /* ==========================================================================
       SECCIÓN DE SERVICIOS EXTRAS (ESTILO HORIZONTAL PREMIUM)
       ========================================================================== */
    .extras-section {
        background-color: #000000;
        padding: 20px 0 60px 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .extras-container {
        width: 90%;
        max-width: 1400px;
        background: #020611; /* Fondo oscuro idéntico al flyer */
        border: 2px solid #0055ff; /* Borde azul de la cápsula */
        border-radius: 24px;
        display: flex;
        overflow: hidden;
        box-shadow: 0 0 25px rgba(0, 85, 255, 0.15);
    }

    /* Etiqueta vertical "EXTRAS" */
    .extras-badge-side {
        background: linear-gradient(180deg, #0044cc 0%, #0077ff 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 25px;
        border-right: 2px solid #0055ff;
    }

    .extras-badge-side span {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-style: italic;
        font-size: 1.8rem;
        color: #ffffff;
        writing-mode: vertical-lr; /* Hace que el texto se lea de abajo hacia arriba */
        transform: rotate(180deg);
        letter-spacing: 2px;
    }

    /* Contenedor de items */
    .extras-content-side {
        display: flex;
        flex: 1;
        justify-content: space-around;
        align-items: center;
        padding: 25px 40px;
        gap: 30px;
    }

    /* Cada uno de los 3 bloques internos */
    .extra-item {
        display: flex;
        align-items: center;
        gap: 20px;
        flex: 1;
        position: relative;
    }

    /* Línea divisoria vertical entre los elementos (excepto el último) */
    .extra-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -15px;
        top: 10%;
        height: 80%;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(0, 85, 255, 0.4), transparent);
    }

    /* Contenedor circular/estilizado para las imágenes miniaturas */
    .extra-img-box {
        width: 95px;
        height: 95px;
        border-radius: 50%;
        overflow: hidden;
        background: #000000;
        border: 1px solid rgba(0, 119, 255, 0.3);
        flex-shrink: 0;
    }

    .extra-thumb {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Textos y Precios */
    .extra-text-box h4 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-size: 1.1rem;
        color: #ffffff;
        margin: 0 0 6px 0;
        line-height: 1.2;
        letter-spacing: 0.5px;
    }   

    .extra-price {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-size: 1.8rem;
        color: #00bcff; /* Color sky-blue del precio del flyer */
        display: block;
    }

    /* RESPONSIVE PARA DISPOSITIVOS MÓVILES */
    @media (max-width: 1024px) {
        .extras-container {
            flex-direction: column; /* Cambia a vertical en celulares */
            border-radius: 20px;
        }
        .extras-badge-side {
            padding: 15px;
            border-right: none;
            border-bottom: 2px solid #0055ff;
            width: 100%;
            box-sizing: border-box;
        }
        .extras-badge-side span {
            writing-mode: horizontal-tb;
            transform: none;
            font-size: 1.5rem;
        }
        .extras-content-side {
            flex-direction: column;
            align-items: flex-start;
            padding: 30px;
            gap: 35px;
        }
        .extra-item {
            width: 100%;
        }
        .extra-item:not(:last-child)::after {
            display: none; /* Quitamos las líneas divisorias en móvil */
        }
    }
     /* ==========================================================================
       SECCIÓN WINDOW TINTING (ESTILO PREMIUM FLYER)
       ========================================================================== */
    .tinting-section {
        background-color: #000000;
        padding: 40px 0 80px 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .tinting-main-wrapper {
        width: 90%;
        max-width: 1400px;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .tinting-container {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr; /* División proporcional izquierda/derecha */
        gap: 40px;
        align-items: center;
    }

    /* --- BLOQUE IZQUIERDO --- */
    .tinting-info-block {
        background: #020611;
        border: 2px solid #0055ff;
        border-radius: 24px;
        padding: 35px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 25px rgba(0, 85, 255, 0.15);
        display: flex;
        flex-direction: column;
    }

    .tinting-text-header {
        margin-bottom: 15px;
        z-index: 5;
    }

    .tinting-now {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-style: italic;
        font-size: 1.4rem;
        color: #ffffff;
        letter-spacing: 0.5px;
    }

    .tinting-title {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-style: italic;
        font-size: 3.2rem;
        color: #008cff;
        line-height: 0.95;
        margin: 5px 0 0 0;
    }

    /* Contenedor de la Imagen */
    .tinting-image-container {
        width: 100%;
        height: 220px;
        margin: 10px 0 25px 0;
        overflow: hidden;
        border-radius: 12px;
    }

    .tinting-car-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Fila de Propiedades (Heat, Privacy, UV) */
    .tinting-props-row {
        display: flex;
        gap: 15px;
        width: 100%;
    }

    .tint-prop-card {
        flex: 1;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(0, 85, 255, 0.4);
        border-radius: 12px;
        padding: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .tint-prop-card i {
        font-size: 1.3rem;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
    }

    .icon-sun { color: #ffaa00; }
    .icon-lock { color: #ffffff; }
    .icon-shield { color: #26e66c; }

    .tint-prop-text {
        display: flex;
        flex-direction: column;
        font-family: 'Montserrat', sans-serif;
    }

    .tint-prop-text span {
        font-size: 0.75rem;
        color: #8a99ad;
        font-weight: 700;
    }

    .tint-prop-text strong {
        font-size: 0.85rem;
        color: #ffffff;
        font-weight: 900;
        letter-spacing: 0.5px;
    }

    /* --- BLOQUE DERECHO (CTA) --- */
    .tinting-cta-block {
        display: flex;
        flex-direction: column;
        padding-left: 20px;
    }

    .cta-heading {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-style: italic;
        font-size: 3.5rem;
        color: #ffffff;
        margin: 0;
        line-height: 1;
    }

    .cta-subheading {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-style: italic;
        font-size: 2.2rem;
        color: #008cff;
        margin: 0 0 30px 0;
    }

    .tinting-features-list {
        list-style: none;
        margin: 0; padding: 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .tinting-features-list li {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 1.2rem;
        color: #ffffff;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .tinting-features-list li i {
        color: #008cff;
        font-size: 1.3rem;
    }

    /* --- BARRA DE ADVERTENCIA INFERIOR --- */
    .tinting-disclaimer-bar {
        background: rgba(17, 10, 2, 0.6);
        border: 1px solid #ffaa00;
        border-radius: 12px;
        padding: 15px 25px;
        width: 100%;
        box-sizing: border-box;
    }

    .disclaimer-content {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .disclaimer-content i {
        color: #ffaa00;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .disclaimer-content p {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 0.95rem;
        color: #ffaa00;
        margin: 0;
        letter-spacing: 0.5px;
    }

    .disclaimer-content p span {
        color: #ffffff;
    }
    
    .tinting-description{
    margin-top:15px;
    margin-bottom:16px;
    font-size:16px;
    line-height:1.7;
    color:#d8d8d8;
    max-width:520px;
}

    /* RESPONSIVE PARA DISPOSITIVOS MÓVILES */
    @media (max-width: 1024px) {
        .tinting-container {
            grid-template-columns: 1fr; /* Apilado en una sola columna */
            gap: 35px;
        }
        .tinting-cta-block {
            padding-left: 0;
            align-items: center;
            text-align: center;
        }
        .tinting-features-list {
            align-items: flex-start;
        }
        .tinting-props-row {
            flex-direction: column; /* Tarjetas en fila pasan a columna en móvil */
        }
        .disclaimer-content {
            flex-direction: column;
            text-align: center;
        }
    }
    /* ==========================================================================
       FOOTER CORPORATIVO PREMIUM UNIFICADO
       ========================================================================== */
    .main-corporate-footer {
        background-color: #030814;
        border-top: 2px solid rgba(0, 85, 255, 0.3);
        padding: 70px 0 0 0;
        width: 100%;
        position: relative;
    }

    .footer-top-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto 50px auto;
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr 1.2fr;
    gap: 40px;
    align-items: start;
   }

    .footer-column {
        display: flex;
        flex-direction: column;
    }

    .footer-column h3 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-style: italic;
        font-size: 1.2rem;
        color: #ffffff;
        margin: 0 0 25px 0;
        letter-spacing: 1px;
        position: relative;
    }

    /* Línea decorativa debajo de los títulos de las columnas */
    .footer-column h3::after {
        content: '';
        position: absolute;
        bottom: -8px; left: 0;
        width: 40px; height: 3px;
        background-color: #008cff;
    }

    /* --- COLUMNA 1: BRANDING --- */
    .footer-logo-img {
        max-width: 220px;
        height: auto;
        margin-bottom: 20px;
        object-fit: contain;
    }

    .brand-statement {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 0.9rem;
        color: #8a99ad;
        line-height: 1.5;
        letter-spacing: 0.5px;
    }

    /* --- COLUMNA 2: LINKS RÁPIDOS --- */
    .quick-links ul {
        list-style: none;
        margin: 0; padding: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .quick-links ul li a {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 0.95rem;
        color: #a0b2c6;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .quick-links ul li a i {
        font-size: 0.75rem;
        color: #008cff;
    }

    .quick-links ul li a:hover {
        color: #ffffff;
        transform: translateX(5px);
    }

    /* --- COLUMNA 3: CONTACTO Y BOTÓN SQUARE --- */
    .footer-contact-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
    }

    .footer-contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 1rem;
        color: #ffffff;
    }

    .footer-contact-item i {
        color: #008cff;
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
    }

    .footer-contact-item a {
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-contact-item a:hover {
        color: #00bcff;
    }

    /* Botón de Reserva Square */
    .footer-btn-booking {
        background: linear-gradient(90deg, #0044cc 0%, #0077ff 100%);
        border: 1px solid #008cff;
        border-radius: 8px;
        padding: 14px 24px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-size: 0.95rem;
        color: #ffffff;
        text-decoration: none;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        box-shadow: 0 4px 15px rgba(0, 119, 255, 0.25);
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        max-width: 280px;
    }

    .footer-btn-booking:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 119, 255, 0.4);
    }

    /* --- FAJA INFERIOR (LEGAL / DISCLAIMER) --- */
    .footer-bottom-bar {
        background-color: #01040a;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 25px 0;
    }

    .footer-bottom-container {
        width: 90%;
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .copyright-text {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.80rem;
        color: #64748b;
        margin: 0;
    }

    .copyright-text strong {
        color: #8a99ad;
    }

    .footer-disclaimer-note {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 0.80rem;
        color: #eab308; /* Tono de advertencia amarillo ámbar */
        margin: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* --- AJUSTES RESPONSIVE --- */
    @media (max-width: 1024px) {
        .footer-top-container {
            grid-template-columns: 1fr; /* Colapsa todo a una sola fila en tablets y celulares */
            gap: 40px;
            text-align: center;
        }
        .footer-column {
            align-items: center;
        }
        .footer-column h3::after {
            left: 50%;
            transform: translateX(-50%); /* Centra la línea decorativa en móvil */
        }
        .quick-links ul li a {
            justify-content: center;
        }
        .footer-btn-booking {
            width: 100%;
            max-width: 100%;
        }
        .footer-bottom-container {
            flex-direction: column; /* Apilado vertical del copyright y disclaimer */
            text-align: center;
            gap: 12px;
        }
    }
    /* ==========================================================================
       BOTONES FIJOS FLOTANTES (STICKY ACTIONS)
       ========================================================================== */
    .sticky-actions-wrapper {
        position: fixed;
        bottom: 30px;
        right: 30px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 9999; /* Asegura que siempre quede por encima de todo el contenido */
        align-items: flex-end;
    }

    /* Base de los botones flotantes */
    .sticky-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    }

    .sticky-btn:hover {
        transform: translateY(-4px);
    }

    /* Estilos específicos de WhatsApp (Círculo) */
    .btn-whatsapp {
        width: 60px;
        height: 60px;
        background-color: #25D366;
        border-radius: 50%;
        font-size: 2rem;
        color: #ffffff;
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    }

    .btn-whatsapp:hover {
        background-color: #20ba5a;
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    }

    /* Estilos específicos de Square Appointments (Cápsula con Texto) */
    .btn-square {
        background: linear-gradient(90deg, #0044cc 0%, #0077ff 100%);
        border: 1px solid #008cff;
        border-radius: 50px;
        padding: 0 22px;
        height: 54px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-size: 0.95rem;
        color: #ffffff;
        gap: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 8px 20px rgba(0, 119, 255, 0.3);
    }

    .btn-square i {
        font-size: 1.1rem;
    }

    .btn-square:hover {
        box-shadow: 0 10px 25px rgba(0, 119, 255, 0.5);
    }
.coverage-section {
        background: #020710;
        padding: 50px 0;
        border-top: 1px solid rgba(255,255,255,0.02);
    }
    .coverage-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        text-align: center;
    }
    .coverage-header i {
        font-size: 2.5rem;
        color: #ff9900; /* Cámbialo a #00bcff si estás solo en la hoja de exterior */
        margin-bottom: 10px;
    }
    .coverage-header h2 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        color: #fff;
        margin: 0 0 5px 0;
    }
    .coverage-header p {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        color: #64748b;
        margin: 0 0 30px 0;
    }
    .cities-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        max-width: 900px;
        margin: 0 auto;
    }
    .cities-grid span {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 0.9rem;
        color: #cbd5e1;
        background: rgba(255,255,255,0.03);
        padding: 8px 18px;
        border-radius: 50px;
        border: 1px solid rgba(255,255,255,0.05);
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .cities-grid span i {
        color: #ff9900; /* Pin de ubicación resaltado */
        font-size: 0.8rem;
    }
    
    /* Contenedor e iconos de Redes Sociales */
    .footer-social-icons {
        display: flex;
        gap: 12px;
        margin-top: 15px;
    }

    .footer-social-icons a {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .footer-social-icons a:hover {
        background: #ff9900; /* Color corporativo de énfasis */
        color: #000000;
        border-color: #ff9900;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
    }
    
    
    /* OPTIMIZACIÓN COMPACTA PARA CELULARES */
    @media (max-width: 768px) {
        .sticky-actions-wrapper {
            bottom: 20px;
            right: 20px;
            gap: 10px;
        }
        
        .btn-whatsapp {
            width: 52px;
            height: 52px;
            font-size: 1.7rem;
        }
        
        .btn-square {
            height: 46px;
            padding: 0 16px;
            font-size: 0.85rem;
        }
        
        /* Si notas que el texto "Book Online" ocupa mucho espacio en pantallas mini, 
           esta regla lo oculta y deja solo el ícono en celulares muy pequeños */
        @media (max-width: 360px) {
            .btn-square span {
                display: none;
            }
            .btn-square {
                width: 52px;
                height: 52px;
                border-radius: 50%;
                padding: 0;
            }
        }
    }
  
    /* ==========================================================================
       REDES SOCIALES EN EL MENÚ SUPERIOR (NAVBAR)
       ========================================================================== */
    .nav-links {
        display: flex;
        align-items: center; /* Asegura alineación vertical perfecta de todos los elementos */
    }

    .nav-social-group {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 0 10px;
        margin-right: 5px;
    }

    .nav-social-group a {
        color: #cbd5e1; /* Color suave para no competir visualmente */
        font-size: 1.15rem;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Efecto hover elegante con un sutil destello naranja */
    .nav-social-group a:hover {
        color: #ff9900; 
        transform: translateY(-2px);
        text-shadow: 0 0 10px rgba(255, 153, 0, 0.4);
    }
    
@media (max-width: 768px) {
    .menu-toggle { display: block; font-size: 1.6rem; cursor: pointer; color: var(--sky-cyan); }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: rgba(2, 8, 19, 0.98);
        border-bottom: 3px solid var(--electric-blue);
        padding: 20px 0;
    }
    .nav-links.show { display: flex; }
    .nav-links li { width: 100%; text-align: center; margin: 12px 0; }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .res-main-title, .hero-info-side .main-title { font-size: 2.2rem; }
    .cities-grid { grid-template-columns: 1fr; }
    .res-utilities-bar { border-radius: 20px; }
}

/* PREMIUM SILVER PACKAGE */

.express-offer{

    max-width:700px;

    margin:70px auto;

    padding:60px;

    text-align:center;

    background:linear-gradient(180deg,#101722,#070b13);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 15px 45px rgba(0,0,0,.45);

}

.offer-badge{

    position:absolute;

    top:-15px;

    left:50%;

    transform:translateX(-50%);

    background:linear-gradient(90deg,#0d6efd,#39a0ff);

    color:white;

    padding:10px 22px;

    border-radius:40px;

    font-size:12px;

    font-weight:800;

    letter-spacing:1px;

    box-shadow:0 10px 25px rgba(13,110,253,.35);

}

.express-offer h2{
    color:#fff;
    font-size:36px;
    margin-top:15px;
    margin-bottom:10px;
}

.offer-price{
    font-size:32px;
    font-weight:700;
    color:#c0c0c0;
    margin-bottom:10px;
}

.offer-text{
    color:#ddd;
    max-width:600px;
    margin:0 auto 20px;
}

.express-btn{

    display:inline-block;

    margin-top:30px;

    padding:16px 38px;

    border-radius:50px;

    background:linear-gradient(90deg,#0d6efd,#3399ff);

    color:#fff;

    font-weight:800;

    letter-spacing:1px;

    text-decoration:none;

    transition:.35s;
}

.express-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(13,110,253,.35);
}

.offer-note{
    display:block;
    margin-top:15px;
    color:#aaa;
    font-size:14px;
}

.trust-bar{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
    padding:25px;
    margin:30px auto;
    border-top:1px solid rgba(255,255,255,.1);
    border-bottom:1px solid rgba(255,255,255,.1);
}

.trust-item{
    color:#fff;
    font-weight:600;
    font-size:15px;
    display:flex;
    align-items:center;
    gap:10px;
}

.trust-item span{
    color:#ddd;
}

/* tarjetas de los paquetes bajo express detail package*/

.featured-packages{
    padding:90px 20px;
}

.featured-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:50px;
}

.featured-card{
    background:#081426;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:35px;
    text-align:center;
    position:relative;
    transition:.3s ease;
}

.featured-card:hover{
    transform:translateY(-8px);
}

.featured-card-main{
    border:2px solid #1e6fff;
    box-shadow:0 0 25px rgba(30,111,255,.15);
}

.featured-badge{
    position:absolute;
    top:-12px;
    left:50%;
    transform:translateX(-50%);
    background:#1e6fff;
    color:#fff;
    padding:6px 14px;
    border-radius:20px;
    font-size:12px;
    font-weight:700;
}

.featured-icon{
    font-size:42px;
    color:#1e6fff;
    margin-bottom:20px;
}

.featured-card h3{
    color:#fff;
    margin-bottom:15px;
}

.featured-card p{
    color:#c5c5c5;
    line-height:1.6;
    margin-bottom:25px;
}

.featured-btn{

    display:inline-block;

    padding:14px 28px;

    border-radius:50px;

    color:white;

    text-decoration:none;

    font-weight:700;

    letter-spacing:.6px;

    transition:.35s;

    border:1px solid transparent;

}

.featured-btn:hover{

    transform:translateY(-3px);

}

.btn-blue{

    background:linear-gradient(90deg,#0d6efd,#4da3ff);

    box-shadow:0 8px 20px rgba(13,110,253,.25);

}

.btn-blue:hover{

    box-shadow:0 14px 30px rgba(13,110,253,.45);

}

.btn-green{

    background:linear-gradient(90deg,#1fa34a,#39d16c);

    box-shadow:0 8px 20px rgba(40,167,69,.25);

}

.btn-green:hover{

    box-shadow:0 14px 30px rgba(40,167,69,.45);

}

.btn-gold{

    background:transparent;

    color:#ffd76a;

    border:2px solid #d4a017;

    box-shadow:0 8px 20px rgba(212,160,23,.20);

}

.btn-gold:hover{

    background:linear-gradient(90deg,#d4a017,#ffd54f);

    color:#111;

    box-shadow:0 14px 30px rgba(255,193,7,.45);

}

.featured-title{
    text-align:center;
    margin-bottom:60px;
}

.featured-title h2{
    color:#fff;
    font-size:45px;
    margin-bottom:10px;
}

.featured-title p{
    color:#bdbdbd;
    font-size:18px;
}

.featured-title::after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    margin:22px auto 0;

    border-radius:50px;

    background:linear-gradient(90deg,#0d6efd,#48a8ff);

}

.package-tagline{

    display:inline-block;

    margin:10px 0 18px;

    padding:7px 15px;

    border-radius:30px;

    font-size:11px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    border:1px solid transparent;

}

.blue-tag{

    color:#6fb7ff;

    background:rgba(13,110,253,.15);

    border-color:rgba(13,110,253,.35);

}

.green-tag{

    color:#58d68d;

    background:rgba(40,167,69,.15);

    border-color:rgba(40,167,69,.35);

}

.gold-tag{

    color:#ffd76a;

    background:rgba(255,193,7,.15);

    border-color:rgba(255,193,7,.35);

}

.hours-item{
    display:flex;
    gap:12px;
    margin-bottom:18px;
    align-items:flex-start;
}

.hours-item i{
    color:#1e90ff;
    margin-top:3px;
}

.hours-item strong{
    display:block;
    color:#fff;
    font-size:15px;
}

.hours-item span{
    color:#bdbdbd;
    font-size:14px;
}

/* ==========================
   REAL RESULTS
========================== */

.real-results-section{
    background:#020814;
    padding:90px 20px;
}

.results-container{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    color:#fff;
    font-size:3rem;
    font-weight:900;
    margin-bottom:10px;
    text-transform:uppercase;
}

.section-title p{
    color:#94a3b8;
    font-size:1rem;
}

.result-case{
    margin-bottom:70px;
}

.result-case h3{
    color:#fff;
    text-align:center;
    font-size:1.8rem;
    margin-bottom:25px;
    font-weight:800;
}

.before-after-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.result-card{
    position:relative;
    overflow:hidden;
    border-radius:16px;
    border:1px solid rgba(255,255,255,0.08);
    background:#091423;
}

.result-card img{
    width:100%;
    height:400px;
    object-fit:cover;
    display:block;
}

.label{
    position:absolute;
    top:15px;
    left:15px;
    padding:8px 16px;
    border-radius:30px;
    font-size:0.8rem;
    font-weight:800;
    color:white;
    z-index:2;
}

.before{
    background:#ef4444;
}

.after{
    background:#22c55e;
}

.results-cta{
    text-align:center;
    margin-top:50px;
}

.results-btn{
    display:inline-block;
    background:linear-gradient(90deg,#005eff,#008cff);
    color:white;
    padding:16px 40px;
    border-radius:8px;
    font-weight:800;
    text-decoration:none;
    transition:0.3s;
}

.results-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,140,255,0.35);
}

/* Express wash mejoras */
.express-badge{
    display:inline-block;
    padding:8px 18px;
    margin-bottom:18px;

    background:linear-gradient(90deg,#0d6efd,#3ea6ff);

    color:#fff;
    font-size:.75rem;
    font-weight:700;
    letter-spacing:1px;
    border-radius:40px;

    text-transform:uppercase;

    box-shadow:0 8px 20px rgba(13,110,253,.35);
}

.express-price{
    margin:25px 0;
}

.starting-text{

    display:block;

    color:#bfc7d5;

    font-size:1rem;

    letter-spacing:1px;

    text-transform:uppercase;
}

.price{

    display:block;

    font-size:4.2rem;

    font-weight:900;

    color:#fff;

    line-height:1;

    text-shadow:0 0 25px rgba(13,110,253,.45);
}

.express-features{

    list-style:none;

    padding:0;

    margin:35px auto;

    max-width:420px;

    text-align:left;
}

.express-features li{

    color:white;

    padding:10px 0;

    border-bottom:1px solid rgba(255,255,255,.06);

    position:relative;

    padding-left:34px;

    font-size:15px;
}

.express-features li::before{

    content:"✔";

    position:absolute;

    left:0;

    color:#0d6efd;

    font-weight:bold;
}

.service-time{

    margin-top:30px;

    color:#8fb8ff;

    font-weight:600;

    letter-spacing:.5px;
}

.maintenance-note{

    margin-top:25px;

    color:#9da7b7;

    font-size:.9rem;

    font-style:italic;
}



.express-offer::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#0d6efd,#45a7ff);
}

.express-divider{

    width:80px;

    height:3px;

    margin:28px auto;

    border-radius:50px;

    background:linear-gradient(90deg,#0d6efd,#55b5ff);
}

/* ==========================================
   EXPRESS WASH 2.0
========================================== */

@media (max-width:768px){

    .express-features{

        max-width:100%;
        width:100%;

    }

}

.express-section{

    padding:80px 20px;

}

.express-container{

    max-width:1250px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

    background:linear-gradient(145deg,#09111d,#111b29);

    border-radius:25px;

    padding:60px;

    border:1px solid rgba(255,255,255,.08);

    overflow:hidden;

    position:relative;

}

.express-container::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#007bff,#41a5ff);

}

.express-tag{

    display:inline-block;

    background:#0d6efd;

    color:white;

    padding:8px 18px;

    border-radius:40px;

    font-size:.75rem;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

}

.express-content h2{

    color:white;

    font-size:56px;

    font-weight:900;

    margin-bottom:20px;

}

.starting{

    display:block;

    color:#9fb4d0;

    text-transform:uppercase;

    font-size:.95rem;

}

.price{

    display:block;

    font-size:84px;

    font-weight:900;

    color:white;

    line-height:1;

    margin-top:5px;

    text-shadow:
        0 0 25px rgba(13,110,253,.45);

}

.express-content h2{

    font-size:58px;

    font-weight:900;

    color:white;

    line-height:1;

    margin-bottom:20px;

    text-transform:uppercase;

}

.express-content p{

    color:#c5d0dd;

    line-height:1.8;

    margin-bottom:30px;

    max-width:520px;

}

.express-content ul{

    list-style:none;

    padding:0;

    margin:0 0 30px;

}

.express-content li{

    color:white;

    margin-bottom:16px;

    font-size:17px;

    position:relative;

    padding-left:30px;

}

.express-content li::before{

    content:"✔";

    color:#0d6efd;

    position:absolute;

    left:0;

}

.express-time{

    color:#6db5ff;

    margin-bottom:35px;

    font-weight:700;

}

.express-book{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 42px;

    border-radius:50px;

    background:linear-gradient(90deg,#006eff,#42a5ff);

    color:white;

    font-weight:800;

    text-decoration:none;

    letter-spacing:.8px;

    transition:.35s;

    box-shadow:
        0 12px 30px rgba(13,110,253,.35);

}

.express-book:hover{

    transform:translateY(-5px);

    box-shadow:
        0 20px 45px rgba(13,110,253,.45);

}

.express-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.express-image img{

    width:100%;

    max-width:600px;

    border-radius:20px;

    display:block;

    position:relative;

    z-index:2;

    transition:.45s ease;

    box-shadow:
        0 25px 60px rgba(0,0,0,.45);

}

/* agregando brillo */

.express-image::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(13,110,253,.35) 0%,
    rgba(13,110,253,.08) 50%,
    transparent 75%);

    filter:blur(20px);

    z-index:1;

}

.express-container:hover .express-image img{

    transform:
        scale(1.03)
        rotate(-1deg);

}

/* Express Service Area */

.express-service-area{

    margin-top:35px;

    padding:20px;

    border-radius:16px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

}

.express-service-area h4{

    color:#4da3ff;

    font-size:18px;

    margin-bottom:15px;

    font-weight:700;

}

.express-service-area p{

    margin:8px 0;

    color:#cfd8e3;

    line-height:1.6;

    font-size:15px;

}

.express-service-area strong{

    color:#ffffff;

}

.hero-market{

    display:inline-flex;

    align-items:center;

    gap:10px;

    align-self:flex-start;

    padding:12px 22px;

    margin:10px 0 16px;

    background:rgba(20,110,255,.22);

    border:1px solid rgba(120,200,255,.45);

    border-radius:999px;

    backdrop-filter:blur(12px);

    box-shadow:0 8px 20px rgba(0,90,255,.18);

}

.hero-market i{

    color:#63c7ff;

    font-size:15px;

}

.hero-market span{

    color:#8ecfff;

    font-size:14px;

    font-weight:500;

}

.hero-market strong{

    color:#ffffff;

    font-size:15px;

    font-weight:700;

}

.hero-clients{

    color:#8ecfff;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    opacity:.95;

    margin:14px 0 24px;

}

.hero-benefits{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

    margin:14px 0 18px;

}

.hero-topline{

    color:#5fb8ff;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;

}

/* ===========================
   EXPRESS WASH RESPONSIVE
=========================== */

@media (max-width:768px){

    .express-container{

        grid-template-columns:1fr;
        gap:30px;
        padding:25px;
        width:100%;
        max-width:100%;
        box-sizing:border-box;

    }

    .express-content{

        width:100%;

    }

    .express-content h2{

        font-size:42px;

    }

    .price{

        font-size:64px;

    }

    .express-image{

        width:100%;

    }

    .express-image img{

        width:100%;
        max-width:100%;
        height:auto;

    }

}

/* ==========================================
   HERO MOBILE IMPROVEMENTS
========================================== */

@media (max-width:768px){

    .hero-container{
        width:95%;
        grid-template-columns:1fr;
        gap:20px;
    }

    .hero-info-side{
        width:100%;
        max-width:100%;
        padding:0 10px;
        transform: translateY(-40px);
    }

    .main-title{
        font-size:2.5rem;
        line-height:1.05;
    }

    .sub-headline{
        max-width:100%;
        font-size:1rem;
        line-height:1.5;
        word-break:normal;
        overflow-wrap:normal;
    }

}