/* Estilos generales */
:root {
    --azul-maral: #1d2d5c;
    --azul-claro: #1e4a9c;
    --blanco: #ffffff;
    --gris-claro: #f5f7fa;
    --gris: #6b7280;
    --gris-oscuro: #374151;
    --naranja: #ff6b00;
    --sombra: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

body {
    line-height: 1.6;
    color: var(--gris-oscuro);
    padding-top: 110px;
    font-family: 'League Spartan', sans-serif;
}


/* -------------------------------------- Sección Header ------------------------------------------------------- */
/* -------------------------------------- Sección Header ------------------------------------------------------- */
/* -------------------------------------- Sección Header ------------------------------------------------------- */
/* -------------------------------------- Sección Header ------------------------------------------------------- */
/* -------------------------------------- Sección Header ------------------------------------------------------- */

        header {
            background-color: var(--blanco);
            box-shadow: var(--sombra);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            height: 110px;
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            height: 100%;
        }
        
        .brand-section {
            display: flex;
            align-items: center;
            height: 100%;
        }
        
        .logo {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
        }
        
        /* Logo de ejemplo - reemplazar con tu imagen */
        .logo img {
            width: 100%;
            height: auto;
            object-fit: contain;
            content: url(../assets/logos/logo.png);
        }
        
        .brand-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .brand-main {
            font-weight: 900;
            font-size: 2rem;
            line-height: 1;
            color: var(--azul-maral);
            letter-spacing: -0.5px;
            margin-bottom: 2px;
        }
        
        .brand-sub {
            font-weight: 700;
            font-size: 1.2rem;
            line-height: 1.2;
            color: var(--azul-maral);
            margin-bottom: 2px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }
        
        nav ul li {
            margin-left: 20px;
            position: relative;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--gris-oscuro);
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
            padding: 8px 5px;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--azul-maral);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--azul-maral);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        nav ul li a.active {
            color: var(--azul-maral);
        }
        
        nav ul li a.active::after {
            width: 100%;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--azul-maral), var(--azul-claro));
            color: var(--blanco);
            padding: 10px 30px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .btn:hover {
            background: linear-gradient(135deg, #e05a00, #c24e00);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(224, 90, 0, 0.5);
        }
        
        /* Menú hamburguesa */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 25px; /* Aumentamos la altura */
            cursor: pointer;
            z-index: 1001;
        }

        .menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--azul-maral);
            border-radius: 2px;
            transition: all 0.3s ease;
            margin: 2px 0; /* Añadimos espacio entre líneas */
        }
        
        /* ========== MOBILE MENU ========== */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--blanco);
            z-index: 999;
            padding: 100px 20px 40px;
            transform: translateX(100%);
            transition: transform 0.4s ease-in-out;
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        .mobile-brand {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .mobile-logo {
            width: 150px;
            height: 150px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Logo de ejemplo - reemplazar con tu imagen */
        .mobile-logo img {
            width: 100%;
            height: auto;
            object-fit: contain;
            content: url('../assets/logos/logo.png');
        }
        
        .mobile-brand-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
        }
        
        .mobile-brand-text .brand-main {
            font-size: 2.5rem;
            margin-bottom: 5px;
        }
        
        .mobile-brand-text .brand-sub {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }
        
        .mobile-nav {
            display: flex;
            flex-direction: column;
            list-style: none;
        }
        
        .mobile-nav li {
            margin-bottom: 15px;
            text-align: center;
        }
        
        .mobile-nav li a {
            display: block;
            font-size: 1.3rem;
            padding: 12px;
            color: var(--azul-maral);
            text-decoration: none;
            font-weight: 600;
            border-radius: 6px;
            transition: all 0.3s;
        }
        
        .mobile-nav li a:hover {
            background-color: var(--gris-claro);
            color: var(--azul-maral);
        }
        
        .mobile-nav li a.active {
            color: var(--blanco);
            background-color: var(--azul-maral);
        }
        
        .mobile-nav .btn {
            margin-top: 20px;
            padding: 15px 30px;
            font-size: 1.2rem;
            color: var(--blanco);
            display: inline-block;
            width: auto;
            margin-left: auto;
            margin-right: auto;
        }
        
        .close-menu {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 2.5rem;
            background: none;
            border: none;
            color: var(--azul-maral);
            cursor: pointer;
            font-weight: 700;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* ========== RESPONSIVE ========== */
        @media (max-width: 992px) {
            .header-container {
                height: 90px;
            }
            
            .logo {
                width: 70px;
                height: 70px;
            }
            
            .brand-main {
                font-size: 1.7rem;
            }
            
            .brand-sub {
                font-size: 1.1rem;
            }
            
            nav ul li {
                margin-left: 15px;
            }
        }
        
        @media (max-width: 768px) {
            header {
                height: 90px;
            }
            
            .desktop-nav {
                display: none;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .brand-text {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
        }
        
        @media (max-width: 576px) {
            .mobile-brand-text .brand-main {
                font-size: 2rem;
            }
            
            .mobile-brand-text .brand-sub {
                font-size: 1.2rem;
            }
            
            .mobile-nav li a {
                font-size: 1.1rem;
            }
        }

/* -------------------------------------- Sección Introduccion ------------------------------------------------------- */
/* -------------------------------------- Sección Introduccion ------------------------------------------------------- */
/* -------------------------------------- Sección Introduccion ------------------------------------------------------- */
/* -------------------------------------- Sección Introduccion ------------------------------------------------------- */
/* -------------------------------------- Sección Introduccion ------------------------------------------------------- */

.intro-split {
    background-color: var(--gris-claro); /* Color de respaldo */
    background-image: url('../assets/heroBackground.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

.split-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.mayorista-hero {
    flex: 2 1 0; /* 2 partes de 3, aprox. 66.67% */
    background: linear-gradient(90deg, rgba(13, 43, 98, 0.9) 40%, rgba(13, 43, 98, 0.7)), 
                url('assets/hero-bg-corporate.jpg') center/cover no-repeat;
    color: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.minorista-hero {
    flex: 1 1 0; /* 1 parte de 3, aprox. 33.33% */
    background: linear-gradient(90deg, rgba(13, 43, 98, 0.9) 40%, rgba(13, 43, 98, 0.7)), 
                url('assets/hero-bg-corporate.jpg') center/cover no-repeat;
    color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-content {
    max-width: 100%;
}

.hero-content h1 {
    font-family: 'League Spartan', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-content h1 span {
    display: block;
    color: #ff6b00;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 45%;
}

.feature i {
    font-size: 1.5rem;
    color: #ff6b00;
}

.feature p {
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 992px) {
    .split-wrapper {
        flex-direction: column;
    }

    .minorista-hero,
    .mayorista-hero {
        flex: 1 1 100%;
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .mayorista-hero, .minorista-hero {
        flex: 1 1 100%; /* En mobile, ambas ocupan el ancho completo */
    }
}

@media (max-width: 576px) {
    .minorista-hero,
    .mayorista-hero {
        padding: 40px 20px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
}

/* -------------------------------------- Sección Empresas ------------------------------------------------------- */
/* -------------------------------------- Sección Empresas ------------------------------------------------------- */
/* -------------------------------------- Sección Empresas ------------------------------------------------------- */
/* -------------------------------------- Sección Empresas ------------------------------------------------------- */
/* -------------------------------------- Sección Empresas ------------------------------------------------------- */

.enterprise-section {
    background: linear-gradient(rgba(0, 91, 170, 0.05), rgba(0, 91, 170, 0.05));
    padding: 80px 0;
    position: relative;
}

.enterprise-section h2{
    text-align: center;
    color: var(--azul-maral);
}

.enterprise-section p{
    text-align: center;
}

.enterprise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: var(--azul-maral);
}

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

.enterprise-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s;
}

.enterprise-card:hover {
    transform: translateY(-10px);
}

.enterprise-icon {
    font-size: 2.5rem;
    color: var(--azul-maral);
    margin-bottom: 20px;
}

.enterprise-card h3 {
    color: var(--azul-maral);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.enterprise-card ul {
    list-style: none;
}

.enterprise-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.enterprise-card ul li::before {
    content: '•';
    color: var(--azul-maral);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.custom-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--naranja);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* -------------------------------------- Sección Pasos ------------------------------------------------------- */
/* -------------------------------------- Sección Pasos ------------------------------------------------------- */
/* -------------------------------------- Sección Pasos ------------------------------------------------------- */
/* -------------------------------------- Sección Pasos ------------------------------------------------------- */
/* -------------------------------------- Sección Pasos ------------------------------------------------------- */

.steps-section {
    background-color: var(--gris-claro);
    text-align: center;
    padding-bottom: 50px;
}

.steps-section h2 {
    color: var(--azul-maral);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--blanco);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--azul-maral);
    color: var(--blanco);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-card h3 {
    color: var(--azul-maral);
    margin-bottom: 15px;
}

.steps-cta {
    margin-top: 40px;
}


/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1581093450025-4d85e343a5e3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--blanco);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* -------------------------------------- Sección Contacto ------------------------------------------------------- */
/* -------------------------------------- Sección Contacto ------------------------------------------------------- */
/* -------------------------------------- Sección Contacto ------------------------------------------------------- */
/* -------------------------------------- Sección Contacto ------------------------------------------------------- */
/* -------------------------------------- Sección Contacto ------------------------------------------------------- */


        .contact-section {
            padding: 40px 0 80px;
            background-image: url(../assets/img/fondoFormulario.png);
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
            font-family: 'League Spartan' sans-serif;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .contact-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            align-items: center;
        }
        
        .contact-intro {
            text-align: left;
        }
        
        .contact-intro h2 {
            color: var(--blanco);
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-intro h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--azul-maral);
            border-radius: 2px;
        }
        
        .contact-intro p {
            font-size: 1.2rem;
            margin-bottom: 25px;
            color: var(--blanco);
        }
        
        .contact-features {
            display: flex;
            flex-direction: column;
            gap: 15px;
            text-align: left;
            margin-top: 30px;
        }
        
        .contact-features p {
            display: flex;
            align-items: flex-start;
            font-size: 1.1rem;
            color: var(--blanco);
        }
        
        .contact-features i {
            color: var(--azul-maral);
            margin-right: 12px;
            margin-top: 4px;
            font-size: 1.2rem;
        }
        
        .professional-form {
            background: var(--blanco);
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--sombra);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .professional-form:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        
        .form-group {
            margin-bottom: 25px;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--gris-oscuro);
            font-size: 1.05rem;
        }
        
        .form-group select,
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s;
            background-color: #fafafa;
        }
        
        .form-group select:focus,
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--azul-maral);
            box-shadow: 0 0 0 3px rgba(0, 91, 170, 0.1);
            outline: none;
            background-color: #fff;
        }
        
        .form-group select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23005BAA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 15px;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 140px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }
        
        .btn-block {
            background: var(--azul-maral);
            color: white;
            border: none;
            padding: 15px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            width: 100%;
            letter-spacing: 0.5px;
        }
        
        .btn-block:active {
            transform: translateY(0);
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .form-header h3 {
            color: var(--azul-maral);
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .form-header p {
            color: var(--gris-medio);
            font-size: 1.1rem;
        }
        
        /* Modal de Confirmación */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 3000;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }
        
        .confirmation-modal {
            background: white;
            border-radius: 15px;
            padding: 50px 40px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }
        
        .modal-overlay.active .confirmation-modal {
            transform: translateY(0);
        }
        
        .modal-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 25px;
            background-color: var(--azul-maral);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3.5rem;
            box-shadow: 0 5px 15px rgba(0, 91, 170, 0.3);
        }
        
        .confirmation-modal h3 {
            color: var(--azul-maral);
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .confirmation-modal p {
            color: var(--gris-oscuro);
            font-size: 1.2rem;
            margin-bottom: 35px;
            line-height: 1.7;
        }
        
        .close-modal {
            background: var(--azul-maral);
            color: white;
            border: none;
            padding: 14px 35px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: inline-block;
            letter-spacing: 0.5px;
        }
        
        .close-modal:hover {
            background: var(--azul-oscuro);
            transform: translateY(-2px);
        }
        
        /* Responsive */
        @media (max-width: 900px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .contact-intro {
                text-align: center;
            }
            
            .contact-intro h2::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .contact-features {
                align-items: center;
            }
            
            .desktop-nav {
                display: none;
            }
            
            .menu-toggle {
                display: block;
            }
        }
        
        @media (max-width: 600px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            
            .professional-form {
                padding: 30px 25px;
            }
            
            .contact-intro h2 {
                font-size: 2rem;
            }
            
            header {
                height: 90px;
            }
        }

/* -------------------------------------- Sección Clientes ------------------------------------------------------- */
/* -------------------------------------- Sección Clientes ------------------------------------------------------- */
/* -------------------------------------- Sección Clientes ------------------------------------------------------- */
/* -------------------------------------- Sección Clientes ------------------------------------------------------- */
/* -------------------------------------- Sección Clientes ------------------------------------------------------- */

        .clients-showcase {
            padding: 60px 0;
            background: var(--blanco);
            position: relative;
        }
        
        .clients-slider-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .clients-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .client-slide {
            min-width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            box-sizing: border-box;
        }
        
        .client-info {
            text-align: center;
            margin-bottom: 30px;
            max-width: 600px;
        }
        
        .client-logo {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .client-logo img {
            max-height: 100%;
            max-width: 200px;
            width: auto;
            object-fit: contain;
        }
        
        .client-name {
            font-family: 'League Spartan', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--azul-maral);
            margin-bottom: 10px;
        }
        
        .client-quote {
            font-style: italic;
            color: var(--gris);
            font-size: 1.1rem;
            line-height: 1.6;
            position: relative;
            padding: 0 20px;
        }
        
        .client-quote::before,
        .client-quote::after {
            content: '"';
            color: var(--azul-maral);
            opacity: 0.3;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .client-quote::before {
            margin-right: 5px;
        }
        
        .client-quote::after {
            margin-left: 5px;
        }
        
        .uniform-gallery {
            display: flex;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--sombra);
            height: 250px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }
        
        .gallery-item:hover::before {
            opacity: 1;
        }
        
        .gallery-item::after {
            content: '+';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            color: white;
            font-size: 3rem;
            font-weight: 300;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 2;
        }
        
        .gallery-item:hover::after {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
        
        /* Navegación del slider */
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .slider-dots {
            display: flex;
            gap: 10px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--gris-claro);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .dot.active {
            background-color: var(--azul-maral);
        }
        
        .slider-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
            box-sizing: border-box;
            transform: translateY(-50%);
            pointer-events: none;
        }
        
        .arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--blanco);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--sombra);
            transition: all 0.3s ease;
            pointer-events: auto;
            z-index: 10;
        }
        
        .arrow:hover {
            background-color: var(--azul-maral);
        }
        
        .arrow:hover i {
            color: var(--blanco);
        }
        
        .arrow i {
            font-size: 1.5rem;
            color: var(--azul-maral);
            transition: color 0.3s ease;
        }
        
        /* Modal para imágenes */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            max-width: 90%;
            max-height: 90%;
        }
        
        .modal-content img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 5px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        
        .close-modal {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 3rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .close-modal:hover {
            color: var(--naranja);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .client-logo {
                height: 80px;
            }
            
            .client-name {
                font-size: 1.6rem;
            }
            
            .client-quote {
                font-size: 1rem;
            }
            
            .gallery-item {
                height: 200px;
            }
        }
        
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
            
            .client-logo {
                height: 70px;
            }
            
            .client-name {
                font-size: 1.4rem;
            }
            
            .uniform-gallery {
                grid-template-columns: 1fr;
                max-width: 500px;
            }
            
            .gallery-item {
                height: 250px;
            }
            
            .arrow {
                width: 40px;
                height: 40px;
            }
        }
        
        @media (max-width: 576px) {
            .client-logo {
                height: 60px;
            }
            
            .client-name {
                font-size: 1.3rem;
            }
            
            .gallery-item {
                height: 200px;
            }
        }
/* -------------------------------------- Sección Productos ------------------------------------------------------- */
/* -------------------------------------- Sección Productos ------------------------------------------------------- */
/* -------------------------------------- Sección Productos ------------------------------------------------------- */
/* -------------------------------------- Sección Productos ------------------------------------------------------- */
/* -------------------------------------- Sección Productos ------------------------------------------------------- */

#featured {
    padding: 50px 0;
    background: #fff; /* Solo blanco */
}

#featured .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#featured h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1d2d5c; /* Azul oscuro */
}

.category-filters {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.category-btn {
    padding: 10px 20px;
    border: 1px solid #1d2d5c;
    background: #fff;
    color: #1d2d5c;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.category-btn.active, .category-btn:hover {
    background: #1d2d5c;
    color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
}

.product-card {
    width: 100%;
    max-width: 300px;
    background: #fff;
    border: 1px solid #1d2d5c; /* Borde azul oscuro */
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.product-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.product-info {
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-brand {
    font-size: 1.1rem;
    color: #1d2d5c;
}

.product-name {
    font-size: 1.2rem;
    color: #1d2d5c;
    font-weight: bold;
}

.product-price {
    margin: 10px 0;
    font-size: 1.2rem;
}

.original-price {
    text-decoration: line-through;
    color: #1d2d5c; /* Azul oscuro para tachado */
    opacity: 0.6;
    margin-right: 10px;
}

.current-price {
    color: #1d2d5c;
    font-weight: bold;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #1d2d5c;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.9rem;
    border-radius: 3px;
}

.shop-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #1d2d5c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.shop-btn:hover {
    background: #fff;
    color: #1d2d5c;
    border: 1px solid #1d2d5c;
}

/* Responsive para mobile */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr; /* Una columna en mobile para mejor visualización */
    }

    .product-card {
        width: 100%;
        max-width: 300px;
    }

    .category-filters {
        flex-wrap: wrap;
    }

    .category-btn {
        flex: 1 1 45%; /* Dos por fila en mobile pequeño */
        margin-bottom: 10px;
    }
}
/* -------------------------------------- Sección Marcas ------------------------------------------------------- */
/* -------------------------------------- Sección Marcas ------------------------------------------------------- */
/* -------------------------------------- Sección Marcas ------------------------------------------------------- */
/* -------------------------------------- Sección Marcas ------------------------------------------------------- */
/* -------------------------------------- Sección Marcas ------------------------------------------------------- */

.brands-section {
    background-color: var(--gris-claro);
    padding: 4rem 0;
    margin: 3rem 0;
    text-align: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.brands-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 1rem 0;
    width: calc(160px * 12);
    animation: scroll 30s linear infinite;
}

.brand-item {
    flex: 0 0 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brands-carousel::before,
.brands-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.brands-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--gris-claro), transparent);
}

.brands-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--gris-claro), transparent);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-160px * 6)); }
}

/* -------------------------------------- Sección Local ------------------------------------------------------- */
/* -------------------------------------- Sección Local ------------------------------------------------------- */
/* -------------------------------------- Sección Local ------------------------------------------------------- */
/* -------------------------------------- Sección Local ------------------------------------------------------- */
/* -------------------------------------- Sección Local ------------------------------------------------------- */

/* -------------------------------------- Sección Local ------------------------------------------------------- */

.local-section {
    padding: 80px 0;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.local-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
}

.local-photo {
    grid-column: 1;
    grid-row: 1 / span 2;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.local-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #1d2d5c, transparent);
    color: white;
    padding: 30px 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.photo-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.photo-overlay p {
    font-size: 1.1rem;
}

.local-map {
    grid-column: 2;
    grid-row: 1;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.local-info {
    grid-column: 2;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    background: #f8f9fa; /* Light gray for contrast, but keeping it subtle with white background */
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1d2d5c;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #1d2d5c;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.info-card h3 i {
    margin-right: 10px;
    font-size: 0.9rem;
    color: #ff6600; /* Orange for highlights */
}

.info-card p {
    line-height: 1.6;
    color: #333;
}

.info-card a {
    color: #1d2d5c;
    text-decoration: none;
    transition: color 0.2s;
}

.info-card a:hover {
    color: #ff6600;
}

.local-badge {
    grid-column: span 2;
    background: #1d2d5c;
    color: white;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-top: 10px;
}

.local-badge i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #ff6600; /* Orange highlight */
}

/* Responsividad */
@media (max-width: 1024px) {
    .local-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .local-photo {
        grid-column: 1;
        grid-row: 1;
    }

    .local-map {
        grid-column: 1;
        grid-row: 2;
        height: 250px;
    }

    .local-info {
        grid-column: 1;
        grid-row: 3;
    }
}

@media (max-width: 768px) {
    .local-section {
        padding: 60px 0;
    }

    .local-grid {
        gap: 20px;
    }

    .local-photo img {
        min-height: 300px;
    }

    .photo-overlay {
        padding: 20px;
    }

    .photo-overlay h3 {
        font-size: 1.5rem;
    }

    .local-map {
        height: 200px;
    }

    .local-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .local-badge {
        grid-column: span 1;
        font-size: 0.9rem;
    }

    .info-card {
        padding: 15px;
    }

    .info-card h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .photo-overlay {
        padding: 15px;
    }

    .photo-overlay h3 {
        font-size: 1.3rem;
    }

    .photo-overlay p {
        font-size: 1rem;
    }
}

/* -------------------------------------- Sección Ventajas ------------------------------------------------------- */
/* -------------------------------------- Sección Ventajas ------------------------------------------------------- */
/* -------------------------------------- Sección Ventajas ------------------------------------------------------- */
/* -------------------------------------- Sección Ventajas ------------------------------------------------------- */
/* -------------------------------------- Sección Ventajas ------------------------------------------------------- */

.advantages {
    padding: 60px 0;
    text-align: center;
}

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

.advantage-card {
    padding: 30px 20px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.advantage-icon {
    font-size: 2.5rem;
    color: var(--azul-maral);
    margin-bottom: 20px;
}

.advantage-card h3 {
    margin-bottom: 15px;
}

/* -------------------------------------- Sección Footer ------------------------------------------------------- */
/* -------------------------------------- Sección Footer ------------------------------------------------------- */
/* -------------------------------------- Sección Footer ------------------------------------------------------- */
/* -------------------------------------- Sección Footer ------------------------------------------------------- */
/* -------------------------------------- Sección Footer ------------------------------------------------------- */

#footer {
    border-top: solid 5px var(--azul-maral);
    background-color: var(--gris-claro); /* Fondo blanco */
    color: #1d2d5c; /* Texto en azul oscuro */
    padding: 40px 0;
    text-align: center;
    font-family: 'League Spartan', sans-serif; /* Fuente aplicada a todo el footer */
}

.footer-banner {
    width: 100%;
    margin-bottom: 20px;
}

.banner-logo {
    width: auto; 
    height: auto; 
    max-height: 100px;
    object-fit: cover; 
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: #1d2d5c;
}

.footer-brand h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 1px 0 0;
    color: #1d2d5c;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-icons a {
    padding: 1px 20px;
    color: #1d2d5c;
    font-size: 2rem; /* Tamaño grande para iconos */
    transition: color 0.3s ease;
}

.footer-icons a:hover {
    color: #fff;
    background-color: #1d2d5c;
    border-radius: 50%;
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-nav li {
    margin: 0;
}

.footer-nav a {
    color: #1d2d5c;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.download-btn {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    color: var(--azul-maral);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s ease;
    font-size: 1rem;
}

.download-btn:hover {
    background: var(--azul-maral);
    color: white;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #1d2d5c;
    padding-top: 10px;
}

/* Responsividad */
@media (max-width: 768px) {
    .footer-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .banner-logo {
        max-height: 100px; /* Ajuste para mobile */
    }
}

/* -------------------------------------- Whatsapp ------------------------------------------------------- */
/* -------------------------------------- Whatsapp ------------------------------------------------------- */
/* -------------------------------------- Whatsapp ------------------------------------------------------- */
/* -------------------------------------- Whatsapp ------------------------------------------------------- */
/* -------------------------------------- Whatsapp ------------------------------------------------------- */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}