/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* ==========================================================================
   ====== 1. ESTILOS DEL NUEVO BANNER DE TELEVENTAS (IMAGEN) ======
   ========================================================================== */
.televentas-banner-section {
    max-width: 1200px;
    margin: 0 auto 40px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.televentas-link {
    display: block;
    width: 100%;
}

.televentas-banner-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(204, 0, 0, 0.2);
}

.televentas-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}


/* ==========================================================================
   ====== SECCIÓN DE SUCURSALES (DISEÑO MEJORADO) ======
   ========================================================================== */
   
/* --- Mejora Visual Sucursales --- */
        .branches-section {
            position: relative;
            padding: 80px 20px;
            background: 
                /* Patrón de puntos sutiles */
                radial-gradient(circle at 20% 80%, rgba(180, 30, 30, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(180, 30, 30, 0.03) 0%, transparent 50%),
                /* Textura de ruido sutil */
                url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"),
                /* Gradiente base */
                linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
            overflow: hidden;
        }

        /* Líneas decorativas de fondo */
        .branches-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(90deg, transparent 49.5%, rgba(180, 30, 30, 0.02) 49.5%, rgba(180, 30, 30, 0.02) 50.5%, transparent 50.5%),
                linear-gradient(0deg, transparent 49.5%, rgba(180, 30, 30, 0.02) 49.5%, rgba(180, 30, 30, 0.02) 50.5%, transparent 50.5%);
            background-size: 60px 60px;
            pointer-events: none;
        }

        /* Efecto de brillo superior */
        .branches-section::after {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(180, 30, 30, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

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

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

        .branches-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .branches-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, transparent, #c41e2a, transparent);
            border-radius: 2px;
        }

        .branches-desc {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 30px auto 0;
            line-height: 1.8;
            font-weight: 300;
        }

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

        .branch-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .branch-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #c41e2a, #e63946, #c41e2a);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .branch-card:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(196, 30, 42, 0.1);
            border-color: rgba(196, 30, 42, 0.3);
        }

        .branch-card:hover::before {
            opacity: 1;
        }

        .branch-card[open] {
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.5),
                0 0 50px rgba(196, 30, 42, 0.15);
        }

        .branch-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 28px 30px;
            cursor: pointer;
            list-style: none;
            position: relative;
            background: linear-gradient(135deg, #c41e2a 0%, #a01824 100%);
            transition: all 0.3s ease;
        }

        .branch-btn::-webkit-details-marker {
            display: none;
        }

        .branch-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .branch-btn:hover {
            background: linear-gradient(135deg, #d42535 0%, #b52030 100%);
        }

        .branch-name-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .branch-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .branch-icon svg {
            width: 22px;
            height: 22px;
            fill: #ffffff;
        }

        .branch-name {
            font-size: 1.15rem;
            font-weight: 600;
            color: #ffffff;
            letter-spacing: 0.5px;
        }

        .branch-address {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.75);
            font-weight: 400;
            margin-top: 3px;
        }

        .toggle-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 300;
            color: #ffffff;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .branch-card[open] .toggle-icon {
            transform: rotate(45deg);
            background: rgba(255, 255, 255, 0.2);
        }

        .branch-content {
            padding: 0;
            background: linear-gradient(180deg, rgba(20, 20, 20, 1) 0%, rgba(15, 15, 15, 1) 100%);
            animation: slideDown 0.4s ease-out;
        }

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

        .branch-info {
            padding: 25px 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .branch-info-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .branch-info-row:last-child {
            margin-bottom: 0;
        }

        .branch-info-icon {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, rgba(196, 30, 42, 0.2), rgba(196, 30, 42, 0.1));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .branch-info-icon svg {
            width: 16px;
            height: 16px;
            fill: #e63946;
        }

        .branch-info-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .branch-info-label {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2px;
        }

        .map-wrapper {
            position: relative;
            overflow: hidden;
        }

        .map-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 20px;
            background: linear-gradient(180deg, rgba(20, 20, 20, 1), transparent);
            z-index: 1;
            pointer-events: none;
        }

        .map-wrapper iframe {
            display: block;
            filter: grayscale(20%) contrast(1.1);
            transition: filter 0.3s ease;
        }

        .map-wrapper:hover iframe {
            filter: grayscale(0%) contrast(1);
        }

        .branch-footer {
            padding: 20px 30px;
            background: rgba(196, 30, 42, 0.05);
            border-top: 1px solid rgba(196, 30, 42, 0.1);
            display: flex;
            justify-content: center;
        }

        .branch-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            background: linear-gradient(135deg, #c41e2a, #a01824);
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            border-radius: 30px;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
        }

        .branch-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(196, 30, 42, 0.4);
        }

        .branch-cta svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        /* Decorative elements */
        .decoration {
            position: absolute;
            pointer-events: none;
        }

        .decoration-1 {
            top: 10%;
            left: 5%;
            width: 150px;
            height: 150px;
            border: 1px solid rgba(196, 30, 42, 0.1);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .decoration-2 {
            bottom: 10%;
            right: 5%;
            width: 100px;
            height: 100px;
            border: 1px solid rgba(196, 30, 42, 0.08);
            border-radius: 50%;
            animation: float 10s ease-in-out infinite reverse;
        }

        .decoration-3 {
            top: 50%;
            right: 10%;
            width: 8px;
            height: 8px;
            background: rgba(196, 30, 42, 0.3);
            border-radius: 50%;
            animation: pulse 3s ease-in-out infinite;
        }

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

        @keyframes pulse {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.5); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .branches-section {
                padding: 60px 15px;
            }

            .branches-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .branch-btn {
                padding: 22px 20px;
            }

            .branch-name {
                font-size: 1rem;
            }

            .branch-icon {
                width: 40px;
                height: 40px;
            }

            .decoration {
                display: none;
            }
        }




/* ==========================================================================
   ====== 3. DISEÑO DEL FOOTER PROFESIONAL (CONFIGURABLE PARA PROD) ======
   ========================================================================== */
.footer-custom {
    background-color: #0a0a0a; /* Aún más oscuro para diferenciar de sucursales */
    color: #ffffff;
    padding: 60px 0 0;
    border-top: 3px solid #cc0000;
}

.footer-slogan {
    color: #999;
    font-size: 14px;
    margin-top: 15px;
    line-height: 1.6;
}

.contact-list {
    padding: 0;
}

.contact-list li {
    margin-bottom: 15px;
    color: #999;
    font-size: 14px;
    line-height: 1.5;
}

.contact-list strong {
    color: #ffffff;
}

.contact-list a {
    color: #cc0000;
    font-weight: 600;
}

.contact-list a:hover {
    color: #ff3333;
    text-decoration: underline;
}

/* Responsive para la nueva grilla de sucursales */
@media (max-width: 768px) {
    .branches-grid {
        grid-template-columns: 1fr; /* 1 sola columna en móviles */
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Top Bar */
/* Top Bar */
.top-bar {
    background-color: #cc0000;
    color: white;
    padding: 10px 0;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 0 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.top-bar-item svg {
    flex-shrink: 0;
}

/* Header */
.header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    height: 70px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 40px;
}

.main-nav a {
    font-weight: 500;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #cc0000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    color: white;
}

.whatsapp-label {
    font-size: 10px;
    font-weight: 500;
}

.whatsapp-number {
    font-size: 14px;
    font-weight: 700;
}

/* Secondary Nav - Red bar (empty) */
.secondary-nav {
    background-color: #cc0000;
    height: 8px;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.banner-separador {
    width: 100%;
    max-width: 1200px;
    margin: 25px auto;
}

.banner-separador img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}


/* Hero Banners - Grid Layout (2 left, 3 right) */
.hero-banners {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 0 10px;
}

.hero-grid-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Mantiene la proporción de tu imagen de referencia */
    gap: 12px;
}

.hero-col-left, .hero-col-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-banner-item {
    display: block;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background-color: #fff;
}


.hero-grid-new {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 10px;
    align-items: start; /* Alinea al inicio para que no se estiren */
}



.hero-left, .hero-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.hero-left .hero-banner-item {
    height: 195px;
}

.hero-right .hero-banner-item {
    height: 127px;
}

.hero-banner-item img {
    width: 100%;
    height: auto; /* Esto evita que la imagen se estire o corte */
    display: block;
    object-fit: contain; 
    transition: transform 0.3s ease;
}

.hero-banner-item:hover img {
    transform: scale(1.02);
}

/* Separator Banner */
.separator-banner {
    margin-bottom: 30px;
}

.separator-banner img {
    width: 100%;
    border-radius: 8px;
}

/* Promo Separator Banners */
.promo-separator {
    margin: 25px 0;
    padding: 25px 40px;
    border-radius: 10px;
    overflow: hidden;
}

.promo-separator-red {
    background: linear-gradient(135deg, #cc0000 0%, #a00000 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.3);
}

.promo-separator-white {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    color: #cc0000;
    border: 2px solid #cc0000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.promo-separator-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.promo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.promo-separator-red .promo-icon svg {
    stroke: white;
}

.promo-separator-white .promo-icon svg {
    stroke: #cc0000;
}

.promo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.promo-title {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.promo-subtitle {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 5px;
}

.promo-separator-white .promo-subtitle {
    color: #666;
}

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

/* Section Title */
.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #cc0000;
}

/* Categories Section */
.categories-section {
    margin-bottom: 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.category-card {
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.category-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Best Sellers Section */
.bestsellers-section {
    margin-bottom: 40px;
    background: #cc0000;
    padding: 30px;
    border-radius: 10px;
}

.bestsellers-section .section-title {
    color: white;
    border-left-color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.product-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-3px);
}

.product-image {
    margin-bottom: 10px;
}

.product-placeholder {
    width: 100%;
    height: 80px;
    background: #f5f5f5;
    border-radius: 5px;
}

.product-name {
    font-size: 11px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
    height: 30px;
    overflow: hidden;
}

.product-price {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.product-rating {
    color: #ffc107;
    font-size: 12px;
    margin-bottom: 10px;
}

.add-to-cart {
    display: block;
    color: #cc0000;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px;
    border: 1px solid #cc0000;
    border-radius: 3px;
    transition: background-color 0.3s, color 0.3s;
}

.add-to-cart:hover {
    background-color: #cc0000;
    color: white;
}

/* Offers Section */
.offers-section {
    margin-bottom: 40px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.offer-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.offer-image {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.offer-badge {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.offer-discount {
    font-size: 24px;
    font-weight: 900;
    color: #cc0000;
    margin-bottom: 5px;
}

.offer-text {
    font-size: 12px;
    color: #666;
}

/* Promo Banner */
.promo-banner {
    margin-bottom: 40px;
}

.promo-banner img {
    width: 100%;
    border-radius: 8px;
}

/* Televentas Section */
.televentas-section {
    margin-bottom: 40px;
    background: linear-gradient(135deg, #cc0000, #8b0000);
    border-radius: 10px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.televentas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>') repeat;
    opacity: 0.3;
}

.televentas-content {
    position: relative;
    z-index: 1;
    color: white;
}

.televentas-logo {
    height: 60px;
    margin: 0 auto 20px;
    filter: brightness(0) invert(1);
}

.televentas-content h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.televentas-content p {
    max-width: 500px;
    margin: 0 auto 25px;
    font-size: 14px;
    opacity: 0.9;
}

.btn-televentas {
    display: inline-block;
    background-color: #ffc107;
    color: #333;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-televentas:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

/* Brands Section */
.brands-section {
    margin-bottom: 40px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.brand-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.brand-card img {
    max-height: 80px;
    max-width: 150px;
    object-fit: contain;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #cc0000;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: #999;
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: white;
}

.footer-section p {
    color: #999;
    font-size: 14px;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #999;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #cc0000;
}

.footer-bottom {
    background-color: #111;
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 13px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

/* Scroll behavior for anchor links */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid-new {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .hero-left,
    .hero-right {
        flex-direction: row;
        gap: 10px;
    }
    
    .hero-left .hero-banner-item,
    .hero-right .hero-banner-item {
        height: 150px;
        flex: 1;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {




	.top-bar {
    display: none;
    visibility: hidden;
}

    
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    .main-nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
.hero-grid-main {
        grid-template-columns: 1fr; /* Una sola columna en móvil */
    }
    
    .hero-col-left, .hero-col-right {
        gap: 10px;
    }


/* Ajuste para los separadores */
.banner-separador {
    width: 100%;
    max-width: 1200px;
    margin: 25px auto;
}

.banner-separador img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-separator {
        padding: 20px 20px;
    }
    
    .promo-separator-content {
        gap: 15px;
    }
    
    .promo-title {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .promo-subtitle {
        font-size: 12px;
    }
    
    .promo-icon svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .televentas-content h2 {
        font-size: 24px;
    }
}
