/* Estilos generales */
        :root {
            --negro: #000000;
            --blanco: #FFFFFF;
            --hueso: #F5F5DC;
            --dorado: #D4AF37;
            --gris-oscuro: #333333;
            font-size: 14px;
            --transition: all 0.3s ease;
        }

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

        .btn, .btn-promo, .btn-rubro {
            transition: var(--transition);
            /* otros estilos comunes */
        }

        @media (max-width: 768px) {
        :root {
            font-size: 13px;
        }
        }
            
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--negro);
            background-color: var(--hueso);
            margin: 0;
            position: relative;
            min-height: 100vh;
        }

        /* Contenedor del fondo animado */
        .animated-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1; /* Para que quede detrás del contenido */
            overflow: hidden;
            }

        /* Degradado animado */
        .gradient-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(-45deg, #ffffff, #fffacd);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            opacity: 0.9;
        }


        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        /* Líneas abstractas */
        .abstract-lines-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .lines-column {
            position: absolute;
            top: 0;
            width: 350px; /* Ancho de las columnas de líneas */
            height: 100%;
        }

        .left-lines {
            left: 0;
            background: linear-gradient(90deg, rgba(0,0,0,0.1) 0%, transparent 100%);
        }

        .right-lines {
            right: 0;
            background: linear-gradient(270deg, rgba(0,0,0,0.1) 0%, transparent 100%);
        }

        /* Líneas individuales */
        .line {
            position: absolute;
            background: black;
            opacity: 0.3;
            mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
        }

        /* Responsive: en móviles hacer más estrecho */
        @media (max-width: 768px) {
        .lines-column {
            width: 50px;
        }
        }
        
        h1, h2, h3, h4, .logo {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 8px 16px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--negro);
            color: var(--blanco);
            text-decoration: none;
            border-radius: 0;
            font-weight: bold;
            transition: all 0.3s ease;
            border: 1px solid var(--negro);
            font-family: 'Playfair Display', serif;
        }
        
        .btn:hover {
            background-color: var(--hueso);
            color: var(--negro);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--negro);
            border-color: var(--negro);
        }
        
        .btn-secondary:hover {
            background-color: var(--negro);
            color: var(--hueso);
        }
        
        h2 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--negro);
            text-align: center;
            position: relative;
            letter-spacing: 1px;
        }
        
        h2::after {
            content: "";
            display: block;
            width: 100px;
            height: 2px;
            background-color: var(--negro);
            margin: 20px auto;
        }
        
/* ========================================================== Header  ======================================================== */
/* ========================================================== Header  ======================================================== */
/* ========================================================== Header  ======================================================== */
/* ========================================================== Header  ======================================================== */
/* ========================================================== Header  ======================================================== */

.header-desktop {
    background-color: var(--negro);
    color: var(--hueso);
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.header-top {
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--hueso);
    flex: 1;
    text-align: center;
}

.left-text {
    text-align: right;
    padding-right: 20px;
}

.right-text {
    text-align: left;
    padding-left: 20px;
}

.logo-container {
    flex: 0 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logo {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.future-logo {
    height: 60px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.future-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* NAVEGACIÓN DESKTOP */
.nav-desktop {
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(5px);
}

.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-list > li {
    position: relative;
    padding: 15px 25px;
}

.nav-list > li > a {
    color: var(--hueso);
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-list > li > a:hover {
    color: var(--dorado);
}

/* Item destacado */
.nav-list > li.highlighted > a {
    color: var(--dorado);
    font-weight: 700;
    position: relative;
}

.nav-list > li.highlighted > a::after {
    content: '!';
    color: var(--dorado);
    margin-left: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* ==================== HEADER MOBILE ==================== */
.header-mobile {
    display: none;
    background-color: var(--negro);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.header-container-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-title-mobile {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--hueso);
    letter-spacing: 1px;
}

/* Botón Hamburguesa */
.hamburger-btn {
    background: none;
    border: none;
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.hamburger-bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--hueso);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-btn.active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Menú Mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--negro);
    transition: left 0.3s ease;
    padding-top: 70px;
    overflow-y: auto;
    z-index: 999;
    border-right: 2px solid var(--dorado);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list > li {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-menu-list > li > a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--hueso);
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.mobile-menu-list > li.highlighted > a {
    color: var(--dorado);
    font-weight: 700;
}

.mobile-menu-list > li > a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    padding-left: 25px;
}

/* Logo en menú mobile */
.mobile-menu-logo {
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mobile-menu-logo img {
    max-width: 120px;
    height: auto;
}

.mobile-menu-logo .future-logo {
    height: 50px;
}

.mobile-menu-logo p {
    color: var(--hueso);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin: 5px 0 0;
}

/* Overlay para fondo cuando el menú está abierto */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 998;
    display: none;
}

.menu-overlay.active {
    display: block;
}

/* Bloquear scroll cuando el menú está abierto */
body.menu-open {
    overflow: hidden;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .header-text {
        font-size: 1.5rem;
    }
    
    .header-logo {
        height: 70px;
    }
    
    .future-logo {
        height: 50px;
    }
    
    .nav-list > li {
        padding: 15px 15px;
    }
    
    .nav-list > li > a {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .header-text {
        font-size: 1.3rem;
    }
    
    .left-text, .right-text {
        padding: 0 10px;
    }
}

@media (max-width: 868px) {
    .header-desktop {
        display: none;
    }
    
    .header-mobile {
        display: block;
    }
    
    .logo-container {
        padding: 0 10px;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .header-title-mobile {
        font-size: 1.5rem;
    }
    
    .mobile-menu {
        width: 85%;
    }
}

/* ====================================================== Whatsapp ===================================================================== */
/* ====================================================== Whatsapp ===================================================================== */
/* ====================================================== WhatsApp ===================================================================== */
/* ====================================================== WhatsApp ===================================================================== */
/* ====================================================== WhatsApp ===================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: green;
    color: var(--hueso);
    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;
    border: 1px solid var(--hueso);
}

/* ====================================================== Botón Flotante Ofertas ====================================================== */
/* ====================================================== Botón Flotante Ofertas ====================================================== */
/* ====================================================== Botón Flotante Ofertas ====================================================== */
/* ====================================================== Botón Flotante Ofertas ====================================================== */
/* ====================================================== Botón Flotante Ofertas ====================================================== */

.floating-offer-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--dorado);
    color: var(--negro);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    font-size: 0;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--negro);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    overflow: hidden;
}

.floating-offer-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.7);
    animation: none;
}

.floating-offer-btn::before {
    content: "MEJOR PRECIO ACÁ";
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 0.9rem;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 1;
    transition: all 0.3s ease;
}

.floating-offer-btn:hover::before {
    opacity: 0;
}

.floating-offer-btn::after {
    content: "MATISA";
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 0.8rem;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    opacity: 0;
    transition: all 0.3s ease;
}

.floating-offer-btn:hover::after {
    opacity: 1;
}

/* Animación de pulso */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Asegurarse que no se solape con el botón de WhatsApp en móviles */
@media (max-width: 768px) {
    .floating-offer-btn {
        bottom: 100px;
        left: 20px;
        width: 60px;
        height: 60px;
    }
    
    .floating-offer-btn::before {
        font-size: 0.8rem;
    }
    
    .floating-offer-btn::after {
        font-size: 0.7rem;
        width: 150px;
    }
}

/* ====================================================== Hero ===================================================================== */
/* ====================================================== Hero ===================================================================== */
/* ====================================================== Hero ===================================================================== */
/* ====================================================== Hero ===================================================================== */
/* ====================================================== Hero ===================================================================== */
/* Estilos generales del hero */

.hero {
    position: relative;
    width: 100%;
    height: 80vh; /* Ocupa 80% de la pantalla */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
    background-color: var(--negro, #000000);
}

/* Fondo con efecto de difuminado */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/frente.jpg);
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: fadeIn 1.5s ease-in-out;
    /* Efecto de difuminado en los bordes */
    mask-image: radial-gradient(
        ellipse at center,
        white 0%,
        white 70%,
        transparent 100%
    );
    -webkit-mask-image: radial-gradient(
        ellipse at center,
        white 0%,
        white 70%,
        transparent 100%
    );
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Overlay para mejorar legibilidad */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

/* Contenedor principal */
.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

/* Contenido principal */
.hero-content {
    max-width: 800px;
    margin-bottom: 40px;
}

.hero-badge {
    background-color: var(--dorado, #D4AF37);
    color: var(--negro, #000000);
    padding: 8px 16px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--blanco, #FFFFFF);
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--hueso, #F5F5DC);
    line-height: 1.6;
}

/* Propuesta de valor */
.value-proposition {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    max-width: 800px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.value-proposition h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dorado, #D4AF37);
}

.proposition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
}

.proposition-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.proposition-icon {
    color: var(--dorado, #D4AF37);
    font-size: 1.5rem;
    min-width: 30px;
}

.proposition-text {
    color: var(--blanco, #FFFFFF);
}

/* Botones de acción */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--dorado, #D4AF37);
    color: var(--negro, #000000);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--dorado, #D4AF37);
    border-color: var(--dorado, #D4AF37);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--blanco, #FFFFFF);
    border-color: var(--blanco, #FFFFFF);
}

.btn-secondary:hover {
    background-color: var(--blanco, #FFFFFF);
    color: var(--negro, #000000);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .proposition-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .value-proposition {
        padding: 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .proposition-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* ===================================== Estilos para Productos y Servicios ======================================= */
/* ===================================== Estilos para Productos y Servicios ======================================= */
/* ===================================== Estilos para Productos y Servicios ======================================= */
/* ===================================== Estilos para Productos y Servicios ======================================= */
/* ===================================== Estilos para Productos y Servicios ======================================= */

        .productos-servicios {
            padding-top: 80px;
            position: relative;
        }

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

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--negro);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--acento);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 20px auto 0;
        }

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

        .rubro-card {
            background: var(--blanco);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: var(--sombra);
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
        }

        .rubro-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--sombra-hover);
        }

        .rubro-header {
            padding: 25px 25px 15px;
            position: relative;
        }

        .rubro-icon {
            font-size: 2.8rem;
            color: var(--acento);
            margin-bottom: 15px;
            display: inline-block;
            width: 70px;
            height: 70px;
            line-height: 70px;
            text-align: center;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 50%;
        }

        .rubro-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--negro);
            margin-bottom: 15px;
        }

        .rubro-content {
            padding: 0 25px 25px;
            flex-grow: 1;
        }

        .rubro-aclaraciones {
            list-style: none;
            margin-bottom: 25px;
        }

        .rubro-aclaraciones li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
            font-size: 0.95rem;
        }

        .rubro-aclaraciones li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--acento);
            font-weight: bold;
        }

        .btn-rubro {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 25px;
            background-color: var(--gris-oscuro);
            color: var(--hueso);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            width: 100%;
        }

        .btn-rubro:hover {
            background-color: var(--dorado);
            color: var(--negro)
        }

        .btn-rubro i {
            margin-left: 8px;
            font-size: 0.9rem;
        }

        /* Modal mejorado para catálogo de marcas */
        .catalogo-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .catalogo-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .catalogo-container {
            background-color: var(--blanco);
            border-radius: 16px;
            width: 95%;
            max-width: 1100px;
            max-height: 90vh;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            transform: translateY(30px) scale(0.95);
            transition: transform 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .catalogo-overlay.active .catalogo-container {
            transform: translateY(0) scale(1);
        }

        .catalogo-header {
            padding: 20px 25px;
            border-bottom: 1px solid var(--gris-medio);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(to right, #f8f9fa, #ffffff);
        }

        .catalogo-header h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--negro);
            text-align: center;
            flex: 1;
        }

        .close-catalogo {
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #999;
            transition: color 0.2s;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .close-catalogo:hover {
            color: var(--acento);
            background-color: rgba(0, 0, 0, 0.05);
        }

        .catalogo-body {
            padding: 25px;
            overflow-y: auto;
            max-height: calc(90vh - 80px);
        }

        .categoria-container {
            margin-bottom: 35px;
        }

        .categoria-titulo {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--acento);
            color: var(--negro);
            text-align: center;
            position: relative;
        }

        .categoria-titulo::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--acento);
            border-radius: 3px;
        }

        .marcas-lista {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 20px;
            margin-bottom: 10px;
        }

        .item-marca {
            text-align: center;
            padding: 15px 10px;
            border-radius: 12px;
            background: var(--gris-claro);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .item-marca:hover {
            transform: translateY(-5px);
            box-shadow: var(--sombra-hover);
            background: var(--blanco);
        }

        .logo-marca {
            height: 60px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }

        .logo-marca img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .item-marca:hover .logo-marca img {
            transform: scale(1.05);
        }

        .nombre-marca {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--negro);
            line-height: 1.3;
            margin-top: auto;
        }

        /* Estilos para móviles con scroll horizontal */
        @media (max-width: 768px) {
            .marcas-lista {
                grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
                gap: 15px;
            }
            
            .catalogo-container {
                width: 100%;
                border-radius: 12px;
            }
            
            .catalogo-header {
                padding: 15px 20px;
            }
            
            .catalogo-header h3 {
                font-size: 1.4rem;
            }
            
            .catalogo-body {
                padding: 20px 15px;
            }
            
            .categoria-titulo {
                font-size: 1.2rem;
            }
            
            .item-marca {
                padding: 12px 8px;
            }
            
            .logo-marca {
                height: 50px;
            }
        }

        @media (max-width: 576px) {
            .catalogo-overlay {
                padding: 10px;
            }
            
            .marcas-lista {
                display: flex;
                overflow-x: auto;
                padding-bottom: 15px;
                scroll-snap-type: x mandatory;
                scrollbar-width: thin;
                -ms-overflow-style: none;
                grid-template-columns: unset;
                gap: 15px;
                margin-right: -15px;
                margin-left: -15px;
                padding-left: 15px;
                padding-right: 15px;
            }
            
            .marcas-lista::-webkit-scrollbar {
                height: 5px;
            }
            
            .marcas-lista::-webkit-scrollbar-thumb {
                background: #ccc;
                border-radius: 10px;
            }
            
            .item-marca {
                min-width: 110px;
                scroll-snap-align: start;
                flex-shrink: 0;
            }
            
            .categoria-titulo {
                text-align: left;
                padding-left: 15px;
            }
            
            .categoria-titulo::after {
                left: 15px;
                transform: none;
            }
        }

        /* Animación de carga para imágenes */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .item-marca {
            animation: fadeIn 0.4s ease forwards;
        }

        .item-marca:nth-child(2) { animation-delay: 0.05s; }
        .item-marca:nth-child(3) { animation-delay: 0.1s; }
        .item-marca:nth-child(4) { animation-delay: 0.15s; }
        .item-marca:nth-child(5) { animation-delay: 0.2s; }
        .item-marca:nth-child(6) { animation-delay: 0.25s; }

/* ======================================================= Marcas ======================================================= */
/* ======================================================= Marcas ======================================================= */
/* ======================================================= Marcas ======================================================= */
/* ======================================================= Marcas ======================================================= */
/* ======================================================= Marcas ======================================================= */

.marcas-section {
    overflow: hidden;
    padding: 40px;
}

.marcas-carousel {
    width: 100%;
    position: relative;
    margin: 40px auto;
}

.marca-item {
    width: 250px;
    height: 150px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marca-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.marca-item:hover img {
    filter: grayscale(0%);
}

.marcas-track {
    display: flex;
    width: calc(250px * 25 * 2); /* Ancho basado en cantidad de logos */
    animation: scroll 40s linear infinite;
}
   
/* ======================================================= Banner ========================================================= */
/* ======================================================= Banner ========================================================= */
/* ======================================================= Banner ========================================================= */
/* ======================================================= Banner ========================================================= */
/* ======================================================= Banner ========================================================= */


        .brands-banner {
            width: 100%;
            max-width: 2000px;
            margin: 0 auto;
            display: flex;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .brand-section {
            flex: 1;
            position: relative;
            padding: 25px 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }
        
        .brand-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 2;
            width: 100%;
        }
        
        .dual-logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        
        .brand-logo {
            max-height: 70px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .rowa-logo {
            max-height: 60px;
        }
        
        .brand-text-container {
            text-align: center;
            margin-top: 15px;
            z-index: 2;
        }
        
        .brand-text {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            color: white;
            font-size: 18px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            margin-bottom: 12px;
        }
        
        .catalog-btn {
            display: inline-block;
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(5px);
            color: white;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .catalog-btn:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Fondos y colores para cada marca */
        .rowa-section {
            background: linear-gradient(145deg, #db8989, rgb(255, 0, 0));
        }
        
        .multlock-section {
            background: linear-gradient(145deg, #0c51a8, #08367a);
        }
        
        .dogo-section {
            background: linear-gradient(145deg, #ffcc00, #ff9900);
        }
        
        /* Efectos hover */
        .brand-section:hover {
            flex-grow: 1.2;
        }
        
        .brand-section:hover .brand-logo {
            transform: scale(1.1);
        }
        
        /* Separadores diagonales para desktop */
        .brand-section:not(:first-child) {
            position: relative;
            overflow: hidden;
        }
        
        .brand-section:not(:first-child)::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%) rotate(15deg);
            width: 2px;
            height: 70%;
            background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5), transparent);
        }
        
        /* RESPONSIVE */
        @media (max-width: 992px) {
            .brands-banner {
                flex-direction: column;
                border-radius: 16px;
            }
            
            .brand-section {
                min-height: 220px;
                padding: 30px 20px;
            }
            
            .brand-section:not(:first-child)::before {
                display: none;
            }
            
            .brand-section:not(:last-child)::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 80%;
                height: 1px;
                background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), transparent);
            }
        }
        
        @media (max-width: 576px) {
            .brand-text {
                font-size: 16px;
            }
            
            .brand-logo {
                max-height: 50px;
            }
            
            .rowa-logo {
                max-height: 45px;
            }
            
            .catalog-btn {
                padding: 6px 12px;
                font-size: 13px;
            }
            
            .dual-logo-container {
                gap: 10px;
            }
        }

/* ======================================================= Constructoras ========================================================= */
/* ======================================================= Constructoras ========================================================= */
/* ======================================================= Constructoras ========================================================= */
/* ======================================================= Constructoras ========================================================= */
/* ======================================================= Constructoras ========================================================= */

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

.constructoras h2 {
    font-size: 2.2rem;
    margin-top: 50px;
    color: var(--negro);
    position: relative;
    display: block; /* Cambiado de inline-block a block */
    text-align: center; /* Añadido para centrar el texto */
    width: 100%; /* Asegura que ocupe todo el ancho disponible */
}

.constructoras h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%); /* Centra el pseudo-elemento */
    width: 80px;
    height: 4px;
    background-color: var(--dorado);
}

.constructoras h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--dorado);
}

.grandes-clientes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.beneficios-columna {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.destacado {
    margin-bottom: 30px;
}

.cta-container {
    margin-top: 40px;
    text-align: center;
}

.btn-cta {
    display: inline-block;
    background-color: var(--dorado);
    color: var(--negro);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--dorado);
}

.btn-cta:hover {
    background-color: transparent;
    color: var(--dorado);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Estilo para el texto descriptivo de los formularios */
.formulario-descripcion {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.destacado h3 {
    font-size: 1.6rem;
    color: var(--negro);
    margin-bottom: 20px;
    text-align: left;
}

.destacado-texto {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

.beneficios-lista {
    display: grid;
    gap: 25px;
}

.beneficio-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
}

.beneficio-item i {
    color: var(--dorado);
    font-size: 1.8rem;
    margin-top: 5px;
    min-width: 30px;
}

.beneficio-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--negro);
}

.beneficio-item p {
    color: #666;
    line-height: 1.5;
}

.formularios-columna {
    display: grid;
    gap: 30px;
}

.formulario-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.formulario-container h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--negro);
    display: flex;
    align-items: center;
    gap: 10px;
}

.formulario-container h3 i {
    color: var(--dorado);
}

.formulario-grandes-clientes {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-weight: 600;
    color: #444;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--dorado);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

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

.btn-formulario {
    background-color: var(--negro);
    color: white;
    border: none;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-formulario:hover {
    background-color: var(--dorado);
    color: var(--negro);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .grandes-clientes-grid {
        grid-template-columns: 1fr;
    }
    
    .beneficios-columna,
    .formulario-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .btn-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .formulario-descripcion {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .constructoras {
        padding: 60px 15px;
    }
    
    .constructoras h2 {
        font-size: 1.8rem;
    }
    
    .beneficio-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .beneficio-item i {
        font-size: 1.5rem;
    }
}


/* ======================================================= Procesos ================================================================ */
/* ======================================================= Procesos ================================================================ */
/* ======================================================= Procesos ================================================================ */
/* ======================================================= Procesos ================================================================ */
/* ======================================================= Procesos ================================================================ */

        .proceso-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

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

        .proceso-container::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 50px;
            right: 50px;
            height: 3px;
            z-index: 0;
        }

        .proceso-paso {
            text-align: center;
            position: relative;
            z-index: 1;
            width: 20%;
            min-width: 200px;
            padding: 0 20px;
            margin-bottom: 40px;
        }

        .paso-numero {
            width: 60px;
            height: 60px;
            background: var(--blanco);
            color: var(--negro);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 20px;
            position: relative;
        }

        .paso-icon {
            font-size: 40px;
            color: var(--secundario);
            margin-bottom: 20px;
        }

        .proceso-paso h3 {
            font-size: 1.3rem;
            color: var(--secundario);
            margin-bottom: 15px;
        }

/* ======================================================= Contacto ================================================================ */
/* ======================================================= Contacto ================================================================ */
/* ======================================================= Contacto ================================================================ */
/* ======================================================= Contacto ================================================================ */
/* ======================================================= Contacto ================================================================ */

.contacto-destacado {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(50,50,50,0.5) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(210, 180, 140, 0.3);
    border-bottom: 1px solid rgba(210, 180, 140, 0.3);
    overflow: hidden;
    z-index: 10;
}

.contacto-destacado::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.imgur.com/pieE23H.jpeg') center/cover no-repeat;
    opacity: 0.15;
    z-index: -1;
}

.contacto-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.contacto-header {
    text-align: center;
    margin-bottom: 50px;
}

.titulo-destacado {
    font-size: 2.5rem;
    color: var(--dorado);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.subtitulo {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.formulario-flotante {
    background: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(210, 180, 140, 0.2);
    backdrop-filter: blur(5px);
}

.formulario-elegante {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group.duo-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    position: relative;
    height: 60px;
}

.input-group.textarea-group {
    height: auto;
}

.formulario-elegante input,
.formulario-elegante select,
.formulario-elegante textarea {
    width: 100%;
    padding: 20px 15px 10px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(210, 180, 140, 0.5);
    color: var(--dorado);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.formulario-elegante textarea {
    height: 120px;
    resize: none;
    padding-top: 25px;
}

.formulario-elegante input:focus,
.formulario-elegante select:focus,
.formulario-elegante textarea:focus {
    outline: none;
    border-bottom-color: var(--dorado);
}

.input-group label {
    position: absolute;
    top: 20px;
    left: 15px;
    color: rgba(210, 180, 140, 0.7);
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.input-group input:focus ~ label,
.input-group input:valid ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:valid ~ label,
.input-group select:focus ~ label,
.input-group select:valid ~ label {
    top: 5px;
    font-size: 0.8rem;
    color: var(--dorado);
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dorado);
    transition: width 0.3s ease;
}

.input-group input:focus ~ .focus-border,
.input-group textarea:focus ~ .focus-border,
.input-group select:focus ~ .focus-border {
    width: 100%;
}

.btn-enviar {
    background: linear-gradient(90deg, var(--dorado) 0%, #c9a66b 100%);
    color: var(--negro);
    border: none;
    padding: 16px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 180, 140, 0.3);
}

.btn-enviar:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(210, 180, 140, 0.4);
}

    /* Estilos para el modal */
    /* Estilos para el modal */
    /* Estilos para el modal */
    
    .modal-contacto {
        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;
    }

    .modal-contenido {
        background-color: white;
        padding: 30px;
        border-radius: 8px;
        max-width: 500px;
        width: 90%;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        animation: modalFadeIn 0.3s ease-out;
    }

    .modal-logo {
        max-width: 150px;
        margin-bottom: 20px;
    }

    .modal-header h3 {
        color: var(--negro);
        margin-bottom: 15px;
        font-size: 1.5rem;
    }

    .modal-body p {
        color: #555;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .modal-cerrar {
        background-color: var(--dorado);
        color: var(--negro);
        border: none;
        padding: 10px 25px;
        margin-top: 20px;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .modal-cerrar:hover {
        background-color: var(--negro);
        color: white;
    }

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

.btn-enviar i {
    transition: transform 0.3s ease;
}

.btn-enviar:hover i {
    transform: translateX(3px);
}

/* Estilo personalizado para el select */
.input-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='%23d2b48c'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .contacto-destacado {
        padding: 60px 20px;
    }
    
    .titulo-destacado {
        font-size: 2rem;
    }
    
    .form-group.duo-inputs {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .formulario-flotante {
        padding: 30px;
    }
}

/*============================================================ SOBRE NOSOTROS ============================================================= */
/*============================================================ SOBRE NOSOTROS ============================================================= */
/*============================================================ SOBRE NOSOTROS ============================================================= */
/*============================================================ SOBRE NOSOTROS ============================================================= */
/*============================================================ SOBRE NOSOTROS ============================================================= */

/* Estilos para la sección de historia */
.historia-section {
    position: relative;
    padding: 5rem 0;
    color: #333;
    overflow: hidden;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.historia-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 20px;
}

.historia-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background-color: var(--dorado);
}

.historia-titulo {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--negro);
    margin-bottom: 10px;
    font-weight: 700;
}

.historia-titulo span {
    color: var(--dorado);
    font-size: 1.8rem;
    vertical-align: middle;
    margin-left: 10px;
}

.historia-subtitulo {
    font-size: 1.3rem;
    color: #666;
    font-style: italic;
    letter-spacing: 1px;
}

/* Valores y misión */
.valores-mision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mision-box, .valores-box {
    background: white;
    padding: 30px;
    border-radius: 3px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--dorado);
}

.mision-box h2, .valores-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--negro);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mision-box h2 i {
    color: var(--dorado);
}

.valores-box h2 i {
    color: var(--negro);
}

.mision-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.valores-lista {
    list-style: none;
    padding-left: 0;
}

.valores-lista li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.valores-lista li::before {
    content: '•';
    color: var(--dorado);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.valores-lista li strong {
    color: var(--negro);
}

.foto-actual {
    margin-top: 25px;
}

.foto-actual img {
    width: 100%;

    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .fotos-antiguas {
        grid-template-columns: 1fr 1fr;
    }
    
    .valores-mision {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .historia-titulo {
        font-size: 2.5rem;
    }
    
    .historia-titulo span {
        font-size: 1.4rem;
    }
    
    .fotos-antiguas {
        grid-template-columns: 1fr;
    }
    
    .historia-texto p {
        font-size: 1rem;
    }
    
    .mision-box, .valores-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .historia-titulo {
        font-size: 2rem;
    }
    
    .historia-header {
        margin-bottom: 2rem;
    }
    
    .historia-texto h2 {
        font-size: 1.5rem;
    }
}

/* ======================================================= Locales ================================================================ */
/* ======================================================= Locales ================================================================ */
/* ======================================================= Locales ================================================================ */
/* ======================================================= Locales ================================================================ */
/* ======================================================= Locales ================================================================ */
.locales-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--negro);  
}

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

.local-card {
    background-color: var(--blanco);
    border: 1px solid var(--negro);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.local-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.local-imagen {
    height: 200px;
    overflow: hidden;
}

.local-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.local-card:hover .local-imagen img {
    transform: scale(1.03);
}

.local-info {
    padding: 20px;
}

.local-info h3 {
    color: var(--negro);
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.contacto-info p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contacto-info i {
    width: 20px;
    color: var(--negro);
    font-size: 0.9rem;
}

.local-map {
    margin-top: 15px;
    border-radius: 5px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .locales-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .local-imagen {
        height: 180px;
    }
}

@media (min-width: 1200px) {
    .locales-container {
        grid-template-columns: repeat(4, 1fr);
    }
}
    
/* ======================================================= Footer ==================================================================== */
/* ======================================================= Footer ==================================================================== */
/* ======================================================= Footer ==================================================================== */
/* ======================================================= Footer ==================================================================== */
/* ======================================================= Footer ==================================================================== */
    footer {
        background-color: var(--negro);
        color: var(--hueso);
        padding: 30px 0 30px;
        text-align: center;
        border-top: 1px solid var(--hueso);
    }
    
    .footer-logo {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 30px;
        font-family: 'Playfair Display', serif;
    }
    
    .footer-links {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }
    
    .footer-links a {
        color: var(--hueso);
        margin: 0 10px;
        text-decoration: none;
        font-family: 'Playfair Display', serif;
        position: relative;
    }
    
    .footer-links a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        bottom: -5px;
        left: 0;
        background-color: var(--hueso);
        transition: width 0.3s;
    }
    
    .footer-links a:hover::after {
        width: 100%;
    }
    
    .social-icons {
        margin-bottom: 40px;
    }
    
    .social-icons a {
        color: var(--hueso);
        font-size: 1.8rem;
        margin: 0 15px;
        transition: color 0.3s;
    }
    
    .social-icons a:hover {
        color: var(--dorado);
    }
    
    .copyright {
        font-size: 0.9rem;
        color: var(--hueso);
        opacity: 0.7;
    }

    .custom-link {
        color: inherit;         /* hereda el color del texto normal */
        text-decoration: underline;
    }

    .custom-link:visited,
    .custom-link:hover,
    .custom-link:active {
        color: inherit; /* mantiene el color del texto normal */
    }
    
    /* Animaciones */
            @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-250px * 25)); /* Mover mitad del ancho total */
        }
    }
    
    /* Responsive */
    @media (max-width: 992px) {
        .ventajas-grid,
        .productos-grid,
        .promociones-grid,
        .beneficios,
        .contacto-grid {
            grid-template-columns: 1fr 1fr;
        }
        
        .header-container {
            flex-direction: column;
            text-align: center;
        }
        
        .logo {
            margin-bottom: 15px;
            justify-content: center;
        }
        
        nav ul {
            margin-top: 20px;
            justify-content: center;
        }
        
        nav ul li {
            margin: 0 10px;
        }
    }
    
    @media (max-width: 768px) {
        .ventajas-grid,
        .productos-grid,
        .promociones-grid,
        .beneficios,
        .contacto-grid {
            grid-template-columns: 1fr;
        }
        
        .hero h1 {
            font-size: 2.2rem;
        }
        
        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .btn {
            margin-bottom: 15px;
            width: 80%;
        }
    }

    @media (max-width: 768px) {
        .marca-item {
            width: 180px;
            height: 100px;
            padding: 0 15px;
        }
        
        .marcas-track {
            width: calc(180px * 25 * 2);
            animation: scroll 50s linear infinite;
        }
        
        @keyframes scroll {
            100% {
                transform: translateX(calc(-180px * 25));
            }
        }
    }

