/* Estilos generales */
:root {
    --azul-maral: #1d2d5c;
    --azul-claro: #1e4a9c;
    --blanco: #ffffff;
    --gris-claro: #f5f7fa;
    --gris: #6b7280;
    --gris-oscuro: #374151;
    --gris-medio: #9ca3af;
    --naranja: #ff6b00;
    --naranja-maral: #ff6b00;
    --texto-oscuro: #374151;
    --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;
}


/* --- 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: height 0.3s ease, box-shadow 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: color 0.2s ease;
            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: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
            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);
        }

        .btn:active {
            transform: scale(0.97);
            box-shadow: none;
        }
        
        /* 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: transform 0.3s ease, opacity 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 cubic-bezier(0.32, 0.72, 0, 1);
            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: background-color 0.2s ease, color 0.2s ease;
        }
        
        .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 Introducción --- */

.intro-split {
    background-color: var(--gris-claro); /* Color de respaldo */
    background-image: url('../assets/heroBackground.webp'); 
    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.78) 40%, rgba(13, 43, 98, 0.58));
    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.82) 40%, rgba(13, 43, 98, 0.65));
    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,
.hero-content h2 {
    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,
.hero-content h2 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,
    .hero-content h2 {
        font-size: 2rem;
    }

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

@media (max-width: 576px) {
    .hero-content h1,
    .hero-content h2 {
        font-size: 1.7rem;
    }
}

@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 --- */

.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: 1fr 1fr;
    grid-template-rows: auto auto;
    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;
}

@media (hover: hover) and (pointer: fine) {
    .enterprise-card:hover {
        transform: translateY(-5px);
    }
}

.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;
}

.enterprise-card--featured {
    grid-row: 1 / 3;
    background: var(--azul-maral);
    display: flex;
    flex-direction: column;
}

.enterprise-card--featured .enterprise-icon {
    color: #ff6b00;
    font-size: 3rem;
}

.enterprise-card--featured h3 {
    color: white;
    font-size: 1.8rem;
}

.enterprise-card--featured ul li {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
}

.enterprise-card--featured ul li::before {
    color: #ff6b00;
}

.enterprise-card--featured strong {
    color: white;
}

.enterprise-card--featured .enterprise-card-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.97rem;
    line-height: 1.55;
    margin-bottom: 20px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .enterprise-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .enterprise-card--featured {
        grid-row: auto;
    }
}

/* --- Presupuestador --- */

.presupuestador-section {
    background: linear-gradient(135deg, var(--azul-maral) 0%, #1a4082 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.presupuestador-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px
        );
    pointer-events: none;
}

.presupuestador-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.presupuestador-text {
    color: white;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.2);
    color: var(--naranja);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
    border: 2px solid var(--naranja);
}

.presupuestador-text h2 {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.presupuestador-text h2 .highlight {
    color: var(--naranja);
}

.presupuestador-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.caracteristicas-lista {
    margin-bottom: 40px;
}

.caracteristica-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.caracteristica-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.caracteristica-icon {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--naranja), #ff8533);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.caracteristica-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: bold;
}

.caracteristica-text p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

.btn-presupuesto {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, var(--naranja), #ff8533);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.btn-presupuesto:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.5);
}

.btn-presupuesto:active {
    transform: scale(0.97);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-presupuesto i {
    font-size: 1.3rem;
}

/* Preview del presupuestador */
.presupuestador-preview {
    position: relative;
}

.preview-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--naranja), #ff8533);
}

.preview-header {
    text-align: center;
    margin-bottom: 30px;
}

.preview-header h3 {
    color: var(--azul-maral);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.preview-header p {
    color: #666;
    font-size: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--azul-maral), #1a4082);
    border-radius: 12px;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--naranja);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.beneficios-preview {
    display: grid;
    gap: 12px;
}

.beneficio-preview-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid var(--naranja);
}

.beneficio-preview-item i {
    color: var(--naranja);
    font-size: 1.2rem;
}

.beneficio-preview-item span {
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Responsive */
@media (max-width: 992px) {
    .presupuestador-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .presupuestador-text h2 {
        font-size: 2.2rem;
    }

    .presupuestador-text {
        text-align: center;
    }

    .caracteristica-item:hover {
        transform: none;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .presupuestador-text h2 {
        font-size: 1.8rem;
    }

    .presupuestador-text p {
        font-size: 1.1rem;
    }

    .preview-card {
        padding: 25px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .btn-presupuesto {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 1.1rem;
    }
}

/* --- Sección Pasos + Cotizador --- */

.steps-section {
    padding-top: 50px;
    background: #1e3560;
    text-align: center;
    padding-bottom: 50px;
}

.steps-section h2 {
    color: #fff;
    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;
}

/* --- Cotizador rápido --- */
.cotizador-section { background: #1e3560; padding: 30px 0; }
.cotizador-inner { max-width: 780px; margin: 0 auto; padding: 0 20px; text-align: center; }
.cotizador-inner h2 { font-family: 'League Spartan', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.cotizador-inner > p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 40px; }
.cotizador-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.cotizador-form .field-full { grid-column: 1 / -1; }
.cotizador-label { display: block; text-align: left; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.cotizador-input,
.cotizador-select { width: 100%; padding: 14px 16px; border-radius: 8px; border: 1.5px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); color: #fff; font-family: 'League Spartan', sans-serif; font-size: 1rem; outline: none; transition: border-color 0.2s, background 0.2s; -webkit-appearance: none; appearance: none; }
.cotizador-input::placeholder { color: rgba(255,255,255,0.4); }
.cotizador-select option { background: #1e3560; color: #fff; }
.cotizador-input:focus,
.cotizador-select:focus { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.15); }
.cotizador-btn { width: 100%; padding: 16px; background: #25d366; color: #fff; border: none; border-radius: 8px; font-family: 'League Spartan', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.5px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: background 0.2s, transform 0.2s; }
.cotizador-btn:hover { background: #1ebe5d; transform: translateY(-2px); }
.cotizador-btn:active { transform: scale(0.97); }
.cotizador-nota { margin-top: 14px; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
@media (max-width: 600px) { .cotizador-form { grid-template-columns: 1fr; } .cotizador-inner h2 { font-size: 1.6rem; } }


/* 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 --- */


        .contact-section {
            padding: 40px 0 80px;
            background-image: url(../assets/img/fondoFormulario.webp);
            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: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
            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: scale(0.97);
        }
        
        .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 */
        .confirmation-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .confirmation-modal.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background-color: var(--blanco);
            border-radius: 12px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .confirmation-modal.active .modal-content {
            transform: translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.5rem;
            color: var(--gris-medio);
            cursor: pointer;
            transition: color 0.3s;
        }

        .modal-close:hover {
            color: var(--azul-maral);
        }

        .modal-logo {
            max-width: 120px;
            margin: 0 auto 20px;
            display: block;
        }

        .modal-title {
            color: var(--azul-maral);
            font-size: 1.8rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .modal-text {
            color: var(--gris-oscuro);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        /* Responsive para el modal */
        @media (max-width: 900px) {
            .modal-content {
                padding: 30px 25px;
            }
            
            .modal-title {
                font-size: 1.5rem;
            }
            
            .modal-text {
                font-size: 1rem;
            }
        }

        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .contact-intro {
                order: 1; /* La información va primero */
                text-align: center;
            }
            
            .professional-form {
                order: 2; /* El formulario va después */
                padding: 25px 20px;
            }
            
            .contact-intro h2::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .form-row {
                grid-template-columns: 1fr; /* Campos en una sola columna */
                gap: 0;
            }
            
            .contact-features p {
                justify-content: center;
                text-align: center;
            }
        }

        /* Para tablets más pequeñas */
        @media (max-width: 480px) {
            .contact-intro h2 {
                font-size: 2rem;
            }
            
            .contact-intro p {
                font-size: 1.1rem;
            }
            
            .professional-form {
                padding: 20px 15px;
            }
            
            .form-header h3 {
                font-size: 1.5rem;
            }
        }

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

        .clients-showcase {
            padding: 80px 0;
            background: var(--blanco);
            position: relative;
            overflow: hidden;
        }

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

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

        .section-title p {
            font-size: 1.2rem;
            color: var(--gris);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Contenedor de filas de logos */
        .logos-container {
            display: flex;
            flex-direction: column;
            gap: 60px;
            margin: 40px 0;
        }

        /* Fila de logos */
        .logo-row {
            display: flex;
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 15px 0;
        }

        /* Contenedor interno para el movimiento continuo */
        .logo-slide {
            display: flex;
            gap: 60px;
            flex-shrink: 0;
            will-change: transform;
        }

        /* MODIFICACIÓN PRINCIPAL: Asegurar que el contenedor sea lo suficientemente ancho */
        .logo-slide {
            min-width: calc(200% + 60px); /* Doble del ancho necesario + gap */
        }

        /* Animación para moverse a la derecha */
        .slide-right {
            animation: slideRight 40s linear infinite;
        }

        /* Animación para moverse a la izquierda */
        .slide-left {
            animation: slideLeft 35s linear infinite;
        }

        /* MODIFICACIÓN: Animaciones mejoradas para transición continua */
        @keyframes slideRight {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-50% - 30px)); /* Mitad del contenedor + mitad del gap */
            }
        }

        @keyframes slideLeft {
            0% {
                transform: translateX(calc(-50% - 30px)); /* Comienza desde la mitad */
            }
            100% {
                transform: translateX(0);
            }
        }

        /* Pausar animación al hacer hover */
        .logo-row:hover .logo-slide {
            animation-play-state: paused;
        }

        /* Estilos para cada item de logo */
        .logo-item {
            flex: 0 0 auto;
            width: 160px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, filter 0.3s ease;
            filter: grayscale(0.5) brightness(0.3) opacity(0.8);
        }

        @media (hover: hover) and (pointer: fine) {
            .logo-item:hover {
                transform: translateY(-5px) scale(1.05);
                filter: none;
            }
        }

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

        /* Efecto de degradado en los bordes para sugerir más contenido */
        .logo-row::before,
        .logo-row::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .logo-row::before {
            left: 0;
            background: linear-gradient(to right, white, transparent);
        }

        .logo-row::after {
            right: 0;
            background: linear-gradient(to left, white, transparent);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .logo-item {
                width: 140px;
                height: 90px;
            }
            
            .logo-slide {
                gap: 50px;
            }
            
            .logo-slide {
                min-width: calc(200% + 50px);
            }
        }

        @media (max-width: 768px) {
            .clients-showcase {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
            
            .logo-item {
                width: 120px;
                height: 80px;
            }
            
            .logos-container {
                gap: 40px;
            }
            
            .logo-slide {
                gap: 40px;
                min-width: calc(200% + 40px);
            }
        }

        @media (max-width: 576px) {
            .logo-item {
                width: 100px;
                height: 70px;
            }
            
            .logo-slide {
                gap: 30px;
                min-width: calc(200% + 30px);
            }
            
            .logo-row::before,
            .logo-row::after {
                width: 50px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
        }
        
/* --- Reseñas --- */

.reviews-section {
    padding: 80px 0;
    background: #f8fafc;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--azul-maral);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-author {
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.review-author strong {
    font-size: 0.95rem;
    color: #1a2744;
}

.review-author span {
    font-size: 0.78rem;
    color: #94a3b8;
}

.review-google-logo {
    height: 16px;
    width: auto;
    opacity: 0.8;
}

.review-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
    line-height: 1;
}

.review-text {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
    flex: 1;
}

.reviews-cta {
    text-align: center;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid #1a2744;
    border-radius: 8px;
    background: transparent;
    color: #1a2744;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'League Spartan', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

@media (hover: hover) and (pointer: fine) {
    .btn-outline-dark:hover {
        background: #1a2744;
        color: #fff;
    }
}

.btn-outline-dark:active {
    transform: scale(0.97);
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Sección Catálogo --- */

#catalog-preview {
    padding-top: 70px;
    background: #fff;
    text-align: center;
    overflow: hidden;
}

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

#catalog-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1d2d5c;
}

.catalog-description {
    font-size: 1.2rem;
    color: #1d2d5c;
    margin-bottom: 200px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.catalog-container {
    position: relative;
    margin: 60px auto;
    width: 90%;
    max-width: 1000px;
    perspective: 1500px;
}

.catalog-spread {
    position: relative;
    height: 0;
    padding-bottom: 15%; /* Proporción basada en 2000x1414 (70.7% de ancho vs alto) */
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog-left-page, .catalog-right-page, .catalog-overlay-page {
    position: absolute;
    width: 40%;
    height: auto;
    aspect-ratio: 2000/1414; /* Mantiene la proporción exacta de tu catálogo */
    border: 1px solid #1d2d5c;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(29, 45, 92, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.catalog-left-page {
    left: 5%;
    z-index: 2;
    transform: rotate(-4deg) translateY(10px);
}

.catalog-right-page {
    right: 5%;
    z-index: 2;
    transform: rotate(3deg) translateY(-8px);
}

.catalog-overlay-page {
    width: 36%;
    z-index: 3;
    transform: rotate(-1deg) translateY(-18px);
    box-shadow: 0 20px 40px rgba(29, 45, 92, 0.3);
}

.catalog-left-page img, .catalog-right-page img, .catalog-overlay-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.catalog-spread:hover .catalog-left-page {
    transform: rotate(-6deg) translateY(5px) translateX(-5px);
}

.catalog-spread:hover .catalog-right-page {
    transform: rotate(5deg) translateY(-12px) translateX(5px);
}

.catalog-spread:hover .catalog-overlay-page {
    transform: rotate(-2deg) translateY(-22px) translateX(8px);
}

.catalog-cta {
    margin-top: 50px;
    margin-bottom: 50px;
}

.catalog-btn {
    display: inline-block;
    padding: 18px 40px;
    background: #1d2d5c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.3rem;
    font-weight: bold;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 5px 20px rgba(29, 45, 92, 0.25);
    position: relative;
    overflow: hidden;
}

.catalog-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.catalog-btn:hover:before {
    left: 100%;
}

.catalog-btn:hover {
    background: #2a3d78;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 45, 92, 0.4);
}

.catalog-btn:active {
    transform: scale(0.97);
    box-shadow: 0 3px 10px rgba(29, 45, 92, 0.2);
}

.catalog-btn span {
    display: block;
    font-size: 0.95rem;
    font-weight: normal;
    margin-top: 5px;
    opacity: 0.9;
}

.contact-text {
    margin-top: 25px;
    color: #1d2d5c;
    font-size: 1.1rem;
}

.contact-text a {
    color: #1d2d5c;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #2a3d78;
}

/* Responsive para tablet */
@media (max-width: 992px) {
    .catalog-spread {
        padding-bottom: 45%; /* Ajuste de proporción para tablet */
    }
    
    .catalog-left-page, .catalog-right-page {
        width: 44%;
    }
    
    .catalog-overlay-page {
        width: 40%;
    }
}

/* Responsive para mobile */
@media (max-width: 768px) {
    #catalog-preview {
        padding: 50px 0;
    }
    
    #catalog-preview h2 {
        font-size: 2rem;
    }
    
    .catalog-description {
        font-size: 1rem;
        padding: 0 15px;
        margin-bottom: 150px    ;
    }
    
    .catalog-container {
        width: 95%;
    }
    
    .catalog-spread {
        padding-bottom: 40%; /* Ajuste para mobile */
        height: auto;
    }
    
    .catalog-left-page, .catalog-right-page {
        width: 70%;
        position: relative;
        margin-bottom: -40%;
    }
    
    .catalog-left-page {
        transform: rotate(-5deg);
        left: auto;
        margin-right: -55%;
    }
    
    .catalog-right-page {
        transform: rotate(4deg);
        right: auto;
        margin-left: -55%;
    }
    
    .catalog-overlay-page {
        width: 60%;
        transform: rotate(-2deg) translateY(-30%);
    }
    
    .catalog-spread:hover .catalog-left-page {
        transform: rotate(-7deg) translateX(-10px);
    }
    
    .catalog-spread:hover .catalog-right-page {
        transform: rotate(6deg) translateX(10px);
    }
    
    .catalog-spread:hover .catalog-overlay-page {
        transform: rotate(-3deg) translateY(-32%) translateX(5px);
    }
    
    .catalog-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* Para navegadores que no soportan aspect-ratio */
@supports not (aspect-ratio: 2000/1414) {
    .catalog-left-page, .catalog-right-page, .catalog-overlay-page {
        height: 280px; /* Altura de respaldo */
    }
    
    @media (max-width: 992px) {
        .catalog-left-page, .catalog-right-page, .catalog-overlay-page {
            height: 220px;
        }
    }
    
    @media (max-width: 768px) {
        .catalog-left-page, .catalog-right-page, .catalog-overlay-page {
            height: 180px;
        }
    }
}
/* --- Sección Marcas --- */

.brands-section { background: #1a2744; padding: 60px 0; margin: 0; }
.brands-section .section-label { text-align: center; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 36px; }
.brands-grid { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px; max-width: 960px; margin: 0 auto; }
.brand-item { flex: 0 0 190px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.92); border-radius: 10px; padding: 14px 20px; opacity: 0.75; transition: opacity 0.25s, background 0.25s; }
.brand-item:hover { opacity: 1; background: #fff; }
.brand-item img { height: 52px; width: auto; max-width: 130px; object-fit: contain; filter: grayscale(1); transition: filter 0.25s; }
.brand-item:hover img { filter: grayscale(0); }
@media (min-width: 1400px) { .brands-grid { max-width: 1400px; } .brand-item { flex: 0 0 170px; } }
@media (max-width: 600px) { .brand-item { flex: 0 0 calc(50% - 10px); padding: 10px 14px; } .brand-item img { height: 36px; } }

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


    .cta-empresas-section {
        background: linear-gradient(135deg, #1d2d5c 0%, #2a3f7a 100%);
        color: white;
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }
    
    .cta-empresas-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
        background-size: cover;
    }
    
    .cta-empresas-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
    }
    
    .cta-empresas-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }
    
    .cta-empresas-text {
        padding-right: 20px;
    }
    
    .cta-empresas-badge {
        display: inline-block;
        background-color: #ff6600;
        color: white;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 0.9rem;
        font-weight: 700;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    
    .cta-empresas-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .cta-empresas-description {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
    }
    
    .cta-empresas-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .cta-empresas-feature {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .cta-empresas-feature-icon {
        background-color: rgba(255, 255, 255, 0.2);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .cta-empresas-feature-text {
        font-size: 1rem;
    }
    
    .cta-empresas-buttons {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .cta-empresas-btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 30px;
        background-color: #ff6600;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 700;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    }
    
    .cta-empresas-btn-primary:hover {
        background-color: #e55c00;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    }

    .cta-empresas-btn-primary:active,
    .cta-empresas-btn-secondary:active {
        transform: scale(0.97);
    }
    
    .cta-empresas-btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 30px;
        background-color: transparent;
        color: white;
        text-decoration: none;
        border: 2px solid white;
        border-radius: 5px;
        font-weight: 700;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .cta-empresas-btn-secondary:hover {
        background-color: white;
        color: #1d2d5c;
    }
    
    .cta-empresas-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .cta-empresas-card {
        background-color: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        color: #333;
        max-width: 400px;
        text-align: center;
    }
    
    .cta-empresas-card-icon {
        background-color: #f8f9fa;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: #1d2d5c;
        font-size: 2rem;
    }
    
    .cta-empresas-card-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #1d2d5c;
    }
    
    .cta-empresas-card-text {
        margin-bottom: 25px;
        font-size: 1rem;
    }
    
    .cta-empresas-card-badge {
        display: inline-block;
        background-color: #f8f9fa;
        color: #1d2d5c;
        padding: 8px 15px;
        border-radius: 30px;
        font-size: 0.9rem;
        font-weight: 700;
    }

    .cta-empresas-number {
        font-family: 'League Spartan', sans-serif;
        font-size: 4.5rem;
        font-weight: 900;
        color: #1d2d5c;
        line-height: 1;
        margin-bottom: 2px;
    }

    .cta-empresas-number span {
        font-size: 2.5rem;
        vertical-align: super;
        color: #ff6b00;
    }

    .cta-empresas-number-label {
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #64748b;
        margin-bottom: 20px;
    }
    
    /* Responsividad CTA Empresas */
    @media (max-width: 1024px) {
        .cta-empresas-content {
            gap: 40px;
        }
        
        .cta-empresas-title {
            font-size: 2.2rem;
        }
    }
    
    @media (max-width: 768px) {
        .cta-empresas-section {
            padding: 60px 0;
        }
        
        .cta-empresas-content {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }
        
        .cta-empresas-text {
            padding-right: 0;
        }
        
        .cta-empresas-title {
            font-size: 2rem;
        }
        
        .cta-empresas-features {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .cta-empresas-feature {
            justify-content: center;
        }
        
        .cta-empresas-buttons {
            justify-content: center;
        }
    }
    
    @media (max-width: 480px) {
        .cta-empresas-section {
            padding: 50px 0;
        }
        
        .cta-empresas-container {
            padding: 0 15px;
        }
        
        .cta-empresas-title {
            font-size: 1.8rem;
        }
        
        .cta-empresas-description {
            font-size: 1.1rem;
        }
        
        .cta-empresas-btn-primary, 
        .cta-empresas-btn-secondary {
            padding: 12px 25px;
            font-size: 1rem;
            width: 100%;
            justify-content: center;
        }
        
        .cta-empresas-buttons {
            flex-direction: column;
        }
    }

/* --- Footer --- */

        #footer {
            border-top: solid 4px var(--naranja);
            background-color: var(--azul-maral);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 28px;
            font-family: 'League Spartan', sans-serif;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-main {
            display: grid;
            grid-template-columns: 1.4fr 2fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }
        
        .footer-brand {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .footer-logo {
            width: auto;
            height: 80px;
            margin-bottom: 15px;
        }
        
        .footer-brand-name {
            font-size: 2rem;
            font-weight: 700;
            margin: 0 0 10px;
            color: white;
        }

        .footer-brand p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 20px;
            max-width: 300px;
        }
        
        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .contact-icon {
            background-color: rgba(255, 107, 0, 0.15);
            color: var(--naranja);
            width: 34px;
            height: 34px;
            border-radius: 7px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 0.9rem;
        }
        
        .contact-details h3 {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 4px;
            font-weight: 700;
        }

        .contact-details p, .contact-details a {
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

        .contact-details a:hover {
            color: var(--naranja-maral);
        }
        
        .footer-location {
            position: relative;
        }
        
        .location-map {
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
            margin-bottom: 12px;
        }
        
        .location-map iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        .location-info {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .location-caption {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.45);
            margin-bottom: 8px;
        }

        .location-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.45);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .location-link:hover {
            color: var(--naranja);
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-nav a {
            color: rgba(255, 255, 255, 0.45);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

        .footer-nav a:hover {
            color: white;
        }
        
        .download-btn {
            display: inline-flex;
            align-items: center;
            padding: 9px 18px;
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            border-radius: 5px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .download-btn:hover {
            background: var(--naranja-maral);
            color: white;
            border-color: var(--naranja-maral);
        }
        
        .footer-copyright {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.35);
        }

        .footer-copyright a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-copyright a:hover {
            color: var(--naranja-maral);
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.75);
            border-radius: 50%;
            text-decoration: none;
            transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
        }

        .social-icon:hover {
            background-color: var(--naranja-maral);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Responsividad */
        @media (max-width: 1024px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            
            .footer-location {
                grid-column: span 2;
            }
            
            .location-map {
                height: 250px;
            }
        }
        
        @media (max-width: 768px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-location {
                grid-column: span 1;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-nav ul {
                justify-content: center;
            }
            
            .footer-social {
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            #footer {
                padding: 40px 0 20px;
            }
            
            .footer-container {
                padding: 0 15px;
            }
            
            .footer-main {
                gap: 25px;
            }
            
            .footer-brand-name {
                font-size: 1.8rem;
            }
            
            .location-map {
                height: 200px;
            }
            
            .footer-nav ul {
                flex-direction: column;
                gap: 10px;
            }
        }

/* --- FAQ Strip --- */

.faq-strip {
    padding: 56px 0;
    background: #f8fafc;
    border-top: 1px solid #e8eef5;
}

.faq-eyebrow {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 32px;
    font-family: 'League Spartan', sans-serif;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    max-width: 760px;
    margin: 0 auto;
    background: #dce5ef;
    border-radius: 10px;
    overflow: hidden;
}

.faq-item {
    background: #f8fafc;
    padding: 24px 28px;
}

.faq-q {
    font-family: 'League Spartan', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--azul-maral);
    margin-bottom: 6px;
}

.faq-a {
    font-size: 0.93rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-strip {
        padding: 40px 0;
    }
}

/* --- WhatsApp flotante --- */

.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: transform 0.25s ease, box-shadow 0.25s ease;
}

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

/* ==========================================
   ANIMACIONES
   ========================================== */

/* --- Sistema de entrada al hacer scroll --- */

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate-delay="1"] { transition-delay: 60ms; }
[data-animate-delay="2"] { transition-delay: 120ms; }
[data-animate-delay="3"] { transition-delay: 180ms; }
[data-animate-delay="4"] { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* --- Hero: entrada al cargar --- */

@keyframes heroEntrance {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mayorista-hero .hero-content h1   { animation: heroEntrance 0.6s ease-out 0.10s both; }
.mayorista-hero .hero-content p    { animation: heroEntrance 0.6s ease-out 0.22s both; }
.mayorista-hero .hero-cta          { animation: heroEntrance 0.6s ease-out 0.34s both; }
.mayorista-hero .hero-features     { animation: heroEntrance 0.6s ease-out 0.46s both; }
.minorista-hero .hero-content h2   { animation: heroEntrance 0.6s ease-out 0.20s both; }
.minorista-hero .hero-content p    { animation: heroEntrance 0.6s ease-out 0.32s both; }
.minorista-hero .hero-cta          { animation: heroEntrance 0.6s ease-out 0.44s both; }
.minorista-hero .hero-features     { animation: heroEntrance 0.6s ease-out 0.56s both; }

@media (prefers-reduced-motion: reduce) {
    .mayorista-hero .hero-content h1,
    .mayorista-hero .hero-content p,
    .mayorista-hero .hero-cta,
    .mayorista-hero .hero-features,
    .minorista-hero .hero-content h2,
    .minorista-hero .hero-content p,
    .minorista-hero .hero-cta,
    .minorista-hero .hero-features { animation: none; }
}

/* --- WhatsApp: pulse --- */

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 2px 10px rgba(0,0,0,0.2), 0 0 0 0 rgba(37,211,102,0.5); }
    60%       { box-shadow: 0 2px 10px rgba(0,0,0,0.2), 0 0 0 14px rgba(37,211,102,0); }
}

.whatsapp-float {
    animation: whatsapp-pulse 2.5s ease infinite;
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float { animation: none; }
}

/* --- Catálogo: breathing animation (solo desktop) --- */

@keyframes catalogFloat {
    0%, 100% { transform: rotate(-1deg) translateY(-18px); }
    50%       { transform: rotate(-0.5deg) translateY(-23px); }
}

@media (min-width: 769px) {
    .catalog-overlay-page {
        animation: catalogFloat 4s ease-in-out infinite;
    }

    .catalog-spread:hover .catalog-overlay-page {
        animation: none;
        transform: rotate(-2deg) translateY(-22px) translateX(8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .catalog-overlay-page { animation: none; }
}

/* --- Hero: phone CTA --- */

.hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.hero-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.hero-phone-cta i {
    color: #25d366;
    font-size: 0.9rem;
}

.hero-phone-cta:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

/* --- Cotizador: inline error --- */

.cotizador-error {
    display: none;
    color: #fca5a5;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

/* --- Formulario de contacto: inline error --- */

.form-submit-error {
    display: none;
    margin-top: 14px;
    padding: 12px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #991b1b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-submit-error a {
    color: #991b1b;
    font-weight: 700;
    text-decoration: underline;
}

/* --- Pasos: línea conectora --- */

.steps-grid {
    position: relative;
}

.steps-connector {
    display: none;
    position: absolute;
    top: 0;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 3px;
    background: rgba(255, 107, 0, 0.55);
    z-index: 0;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
    pointer-events: none;
    border-radius: 2px;
}

@media (min-width: 900px) {
    .steps-connector { display: block; }
}

.steps-grid.line-drawn .steps-connector {
    clip-path: inset(0 0 0 0);
}

.step-card {
    position: relative;
    z-index: 1;
}


/* --- Reseñas: carousel en mobile --- */

.reviews-carousel-wrapper {
    overflow: hidden;
}

.reviews-nav {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.reviews-nav-btn {
    background: var(--azul-maral);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.15s ease;
    line-height: 1;
}

.reviews-nav-btn:hover { background: var(--naranja); }
.reviews-nav-btn:active { transform: scale(0.93); }

.reviews-dots {
    display: flex;
    gap: 8px;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.review-dot.active {
    background: var(--azul-maral);
    transform: scale(1.35);
}

@media (max-width: 600px) {
    .reviews-grid {
        display: flex;
        transition: transform 0.35s ease-out;
        gap: 0;
    }

    .review-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .reviews-nav {
        display: flex;
    }
}

/* --- Página de confirmación --- */

.confirmation-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: var(--gris-claro); /* Color de respaldo */
    background-image: url('../assets/heroBackground.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.confirmation-container {
    max-width: 700px;
    width: 100%;
    background: white;
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.confirmation-logo {
    max-width: 140px;
    height: auto;
    margin: 0 auto 24px;
    display: block;
}

.confirmation-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25d366 !important;
    color: white !important;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s, transform 0.2s;
}

.btn-whatsapp:hover {
    background: #1ebe5d !important;
    color: white !important;
    transform: translateY(-2px);
}

.btn-whatsapp:active {
    transform: scale(0.97) !important;
}

.confirmation-title {
    color: var(--azul-maral);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.confirmation-text {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.btn-primary {
    background: var(--azul-maral);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
    cursor: pointer;
}

.btn-primary:hover {
    background: #00488a;
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: scale(0.97);
}

@media (max-width: 768px) {
    .confirmation-container {
        padding: 30px 20px;
    }
    
    .confirmation-title {
        font-size: 1.8rem;
    }
    
    .confirmation-text {
        font-size: 1.1rem;
    }
}