/* =======================================================
           VARIABLES Y ESTILOS BASE
           ======================================================= */
           @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

        :root {
            --color-primary: #540606;
            --color-secondary: #dda97cdd;
            --color-accent: #3498db;
            --color-light: #f5efef;
            --color-dark: #540606;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            --transition: all 0.3s ease;
            --transition-slow: all 0.6s ease;
            --container-padding: clamp(1rem, 5vw, 5%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            background: #ffffff;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.2;
            color: #333;
        }
        
        h1 {
            color: #f5efef;
        }

        p {
            margin-bottom: 1.5rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            line-height: 1.7;
            color: #ffffff;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--container-padding);
        }

        /* ======================================================= */
        /* HEADER MEJORADO - MENÚ TOGGLE PROFESIONAL */
        /* ======================================================= */

        .header-principal {
            background-image: linear-gradient(to right, #5a0202, #8a0303);
            box-shadow: none;
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 0.8rem var(--container-padding);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .header-principal.scrolled {
            padding: 0.5rem var(--container-padding);
            background-image: linear-gradient(to bottom, rgba(84, 6, 6, 0.95), rgba(84, 6, 6, 0.8));
            backdrop-filter: blur(10px);
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 50px;
            width: auto;
            transition: var(--transition);
            animation: pulse 2s infinite;
        }

        .header-principal.scrolled .logo img {
            height: 40px;
            animation: none;
        }

        /* Botón del menú hamburguesa MEJORADO */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 35px;
            height: 30px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
            position: relative;
        }

        .menu-toggle span {
            width: 100%;
            height: 4px;
            background-color: var(--color-light);
            border-radius: 5px;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            transform-origin: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
            background-color: var(--color-secondary);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-10px);
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
            background-color: var(--color-secondary);
        }

        /* Mostrar navegación normal en pantallas grandes */
        .barra-navegacion ul {
            display: flex;
            list-style: none;
            align-items: center;
            flex-wrap: wrap;
        }

        .barra-navegacion li {
            position: relative;
            margin: 0 0.8rem;
        }

        .barra-navegacion a {
            text-decoration: none;
            color: var(--color-light);
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
            white-space: nowrap;
        }

        .barra-navegacion a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--color-secondary);
            transition: var(--transition);
        }

        .barra-navegacion a:hover:after {
            width: 100%;
        }

        .dropdown {
            position: relative;
        }
        /* =============================================
   EFECTOS DE DESTELLO SOLAR Y ANIMACIONES DE LETRAS 
   (TRANSFERIDOS DESDE EL APARTADO DE INICIO)
============================================= */

/* DESTELLO HORIZONTAL EN HEADER (EFECTO SOLAR) */
.header-principal::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.04) 20%, 
        rgba(255, 215, 0, 0.5) 50%,
        rgba(255, 255, 255, 0.04) 80%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: sunFlash 3.5s infinite ease-in-out;
    pointer-events: none;
    z-index: 1;
}

@keyframes sunFlash {
    0% {
        left: -150%;
        opacity: 0.5;
    }
    50% {
        left: 150%;
        opacity: 0.7;
    }
    100% {
        left: 150%;
        opacity: 0.5;
    }
}

/* EFECTOS MEJORADOS EN ENLACES DE NAVEGACIÓN */
.barra-navegacion a {
    text-decoration: none;
    color: var(--color-light) !important;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    text-shadow: 0 0 3px rgba(255, 215, 0, 0.2);
}

.barra-navegacion a:hover {
    color: #FFD700 !important;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* SUBRAYADO SOLAR ANIMADO EN ENLACES */
.barra-navegacion a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #FFD700, #FF8C00, #FFD700);
    transition: var(--transition);
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.barra-navegacion a:hover::after {
    width: 100%;
}

/* EFECTO EN LOGO */
.logo img {
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.2));
    transition: filter 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

/* ANIMACIÓN DE PULSO PARA LOGO */
@keyframes pulseLogo {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.2));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
    }
}

.logo img {
    animation: pulseLogo 2s infinite;
}

/* MEJORA DROPDOWN CON EFECTOS SOLARES */
.catalogo-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(84, 6, 6, 0.95);
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    border-radius: 4px;
    padding: 0.5rem 0;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.catalogo-dropdown a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--color-light);
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-shadow: 0 0 2px rgba(255, 215, 0, 0.1);
}

.catalogo-dropdown a:hover {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), transparent);
    color: #FFD700 !important;
    padding-left: 2rem;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.dropdown:hover .catalogo-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* EFECTO BRILLO EN BOTÓN HAMBURGUESA */
.menu-toggle span {
    box-shadow: 0 0 3px rgba(255, 215, 0, 0.3);
}

.menu-toggle.active span {
    background-color: #FFD700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

        /* ======================================================= */
        /* MENÚ DESPLEGABLE */
        /* ======================================================= */
        .catalogo-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(84, 6, 6, 0.95);
            min-width: 200px;
            box-shadow: var(--shadow);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 100;
            border-radius: 4px;
            padding: 0.5rem 0;
        }

        .catalogo-dropdown a {
            display: block;
            padding: 0.8rem 1.5rem;
            color: var(--color-light);
            transition: var(--transition);
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
        }

        .catalogo-dropdown a:hover {
            background: var(--color-primary);
            color: var(--color-secondary);
            padding-left: 2rem;
        }

        /* ======================================================= */
        /* BOTONES FLOTANTES */
        /* ======================================================= */
        .whatsapp-flotante {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: var(--transition);
            animation: bounce 2s infinite;
        }

        .whatsapp-flotante:hover {
            transform: scale(1.1);
            animation: none;
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-flotante img {
            width: 35px;
            height: 35px;
        }

        .back-to-top {
            position: fixed;
            bottom: 90px;
            right: 25px;
            width: 50px;
            height: 50px;
            background: var(--color-secondary);
            color: var(--color-primary);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            background: var(--color-light);
        }

        /* ======================================================= */
        /* SECCIÓN DE STOCK */
        /* ======================================================= */

        .stock-hero {
            position: relative;
            color: white;
            text-align: center;
            display: flex;
           
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 120px 20px 70px;
            overflow: hidden;
        }

        .stock-hero .video-fondo {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .stock-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .contenido-stock {
            position: relative;
            z-index: 2;
            max-width: 900px;
        }

        .stock-hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 25px;
            font-weight: 800;
            text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.7);
            animation: titleFloat 6s ease-in-out infinite, textShine 4s ease-in-out infinite;
            color: black;
        }

        .stock-hero p {
            font-family: 'Montserrat', sans-serif;
            max-width: 800px;
            margin: 0 auto 40px;
            font-size: 1.3rem;
            font-weight: 400;
            animation: subtitlePulse 5s ease-in-out infinite;
            color: rgb(0, 0, 0);
        }

        .grid-stock {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 35px;
            padding: 50px 20px;
            max-width: 1300px;
            margin: 0 auto;
            background: #ffffff;
        }

        .producto-card {
            background: #f8f9fa;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(221, 169, 124, 0.15);
            display: flex;
            flex-direction: column;
        }

        .producto-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
            border-color: rgba(221, 169, 124, 0.4);
        }

        .Producto-imagen {
            width: 100%;
            height: 450px;
            object-fit: cover;
            transition: var(--transition-slow);
        }

        .producto-card:hover .Producto-imagen {
            transform: scale(1.12);
        }

        .producto-info {
            padding: 28px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .producto-nombre {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #333;
            font-weight: 800;
            line-height: 1.3;
        }

        .producto-descripcion {
            color: #666;
            margin-bottom: 22px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 400;
            flex-grow: 1;
            line-height: 1.6;
        }

        .producto-especificaciones {
            margin-bottom: 22px;
        }

        .especificacion {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            padding-bottom: 8px;
            border-bottom: 1px dashed rgba(221, 169, 124, 0.25);
            color: #333;
        }

        .especificacion .valor {
            font-weight: 700;
            color: var(--color-secondary);
        }

        .producto-precio {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.7rem;
            font-weight: 900;
            color: var(--color-secondary);
            margin: 25px 0;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
            letter-spacing: 0.5px;
        }

        .btn-contactar {
            display: block;
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--color-secondary) 0%, #e6b267 100%);
            color: var(--color-primary);
            text-align: center;
            border: none;
            border-radius: 10px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(221, 169, 124, 0.35);
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }

        .btn-contactar:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(221, 169, 124, 0.45);
        }

        /* ======================================================= */
        /* FOOTER */
        /* ======================================================= */
        .mapa-ubicacion-footer {
            width: 100%;
            margin-top: 1.5rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }
        
        .mapa-ubicacion-footer iframe {
            width: 100%;
            height: 200px;
            display: block;
        }
        
        .footer-principal {
            background-color: #ede9e9;
            padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
            font-size: 0.9rem;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: clamp(1.5rem, 3vw, 2rem);
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-columna {
            flex: 1 1 200px;
            margin-bottom: 1rem;
        }

        .footer-info .logo {
            height: 60px;
            margin-bottom: 0.5rem;
        }

        .footer-info p {
            font-family: 'Montserrat', sans-serif;
            font-weight: 300;
            color: black;
        }

        .footer-columna h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: var(--color-secondary);
            margin-bottom: 1rem;
            text-transform: uppercase;
            font-weight: 600;
        }

        .footer-columna ul {
            list-style: none;
            padding: 0;
        }

        .footer-columna ul li {
            margin-bottom: 0.5rem;
        }

        .footer-columna ul li a {
            color: black;
            text-decoration: none;
            transition: color 0.3s ease;
            font-family: 'Montserrat', sans-serif;
        }

        .footer-columna ul li a:hover {
            color: var(--color-secondary);
        }

        .footer-contacto p {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            font-family: 'Montserrat', sans-serif;
            color:black
        }

        .footer-contacto i {
            color: var(--color-secondary);
            margin-right: 0.8rem;
            font-size: 1.1rem;
        }

        .social-icons a {
            color: var(--color-light);
            font-size: 1.5rem;
            margin-right: 1rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-icons a:hover {
            color: var(--color-secondary);
            transform: scale(1.1);
        }

        .footer-bottom {
            flex-basis: 100%;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1rem;
            margin-top: 1rem;
        }

        .footer-bottom p {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* ======================================================= */
        /* ESTILOS PARA LIBRO DE RECLAMACIONES */
        /* ======================================================= */

        .libro-reclamaciones {
            color: #fffefbc0 !important;
            font-weight: 700 !important;
            position: relative;
            font-family: 'Montserrat', sans-serif;
        }

        .libro-reclamaciones::before {
            content: "";
            background-image: url('../img/libro-reclamaciones.png');
            background-size: contain;
            background-repeat: no-repeat;
            display: inline-block;
            width: 150px;
            height: 150px;
            margin-right: 8px;
            vertical-align: middle;
        }

        .libro-reclamaciones:hover {
            color: #ecc44ec0 !important;
            transform: translateX(5px);
        }

        .libro-reclamaciones::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            transition: width 0.3s ease;
        }

        .libro-reclamaciones:hover::after {
            width: 100%;
        }

        /* ======================================================= */
        /* ANIMACIONES */
        /* ======================================================= */

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-20px);
            }
            60% {
                transform: translateY(-10px);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes titleFloat {
            0%, 100% {
                transform: translateY(0) scale(1);
                text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            }
            50% {
                transform: translateY(-12px) scale(1.03);
                text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.8), 0 0 20px rgba(221, 169, 124, 0.6);
            }
        }

        @keyframes textShine {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.95;
                text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 255, 255, 0.4);
            }
        }

        @keyframes subtitlePulse {
            0%, 100% {
                opacity: 0.9;
                transform: translateY(0);
            }
            50% {
                opacity: 1;
                transform: translateY(-5px);
                text-shadow: 0 0 15px rgba(255, 255, 255, 0.3), 0 0 30px rgba(221, 169, 124, 0.5);
            }
        }

        @keyframes attention {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* ======================================================= */
        /* RESPONSIVE DESIGN - MENÚ TOGGLE MEJORADO */
        /* ======================================================= */

        @media (max-width: 768px) {
            /* Botón del menú hamburguesa */
            .menu-toggle {
                display: flex;
            }
            
            /* Navegación para móviles - CENTRADA */
            .barra-navegacion {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: linear-gradient(to bottom, #380101, #5f0000);
                transition: right 0.3s ease;
                z-index: 999;
                overflow-y: auto;
                padding: 80px 20px 20px;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
                display: flex;
                justify-content: center;
                align-items: center;
            }
            
            .barra-navegacion.visible {
                right: 0;
            }
            
            .barra-navegacion ul {
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 100%;
                text-align: center;
            }
            
            .barra-navegacion li {
                margin: 15px 0;
                width: 100%;
            }
            
            .barra-navegacion a {
                display: block;
                padding: 15px 0;
                font-size: 20px;
                font-weight: 600;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                width: 100%;
                font-family: 'Montserrat', sans-serif;
            }
            
            .barra-navegacion a:after {
                display: none;
            }
            
            /* Dropdown en móviles */
            .catalogo-dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                background: rgba(84, 6, 6, 0.7);
                margin-top: 10px;
                padding-left: 0;
                box-shadow: none;
                width: 100%;
                text-align: center;
            }
            
            .catalogo-dropdown.visible {
                display: block;
            }
            
            .catalogo-dropdown a {
                padding: 12px 0;
                font-size: 18px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                font-family: 'Montserrat', sans-serif;
            }
            
            /* Ajustes para el menú de usuario */
            .barra-navegacion .dropdown .catalogo-dropdown {
                position: static;
                display: none;
                background: rgba(84, 6, 6, 0.7);
                margin-top: 10px;
                padding-left: 0;
                box-shadow: none;
                width: 100%;
                text-align: center;
            }
            
            .barra-navegacion .dropdown .catalogo-dropdown.visible {
                display: block;
            }
            
            /* Header y Navegación */
            .header-principal {
                padding: 0.8rem 3%;
            }
            
            .grid-stock {
                grid-template-columns: 1fr;
                padding: 30px 15px;
                gap: 25px;
            }
            
            .stock-hero h1 {
                font-size: 2.2rem;
            }
            
            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .footer-columna {
                margin-bottom: 2rem;
            }
            
            .footer-columna ul {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .footer-contacto p {
                justify-content: center;
            }
            
            .social-icons {
                display: flex;
                justify-content: center;
            }
            
            .social-icons a {
                animation: none;
            }
        }

        /* Para pantallas más grandes, asegurar que el dropdown funcione con hover */
        @media (min-width: 769px) {
            .catalogo-dropdown {
                position: absolute;
                top: 100%;
                left: 0;
                background: rgba(84, 6, 6, 0.95);
                min-width: 200px;
                box-shadow: var(--shadow);
                opacity: 0;
                visibility: hidden;
                transform: translateY(10px);
                transition: var(--transition);
                z-index: 100;
                border-radius: 4px;
                padding: 0.5rem 0;
                display: block !important;
            }
            
            .dropdown:hover .catalogo-dropdown {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            
            /* Asegurar que la navegación sea visible */
            .barra-navegacion {
                display: block !important;
            }
        }

        @media (max-width: 576px) {
            .header-principal {
                padding: 0.8rem 1rem;
            }
            
            .logo img {
                height: 35px;
            }
            
            .whatsapp-flotante {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
            
            .whatsapp-flotante img {
                width: 30px;
                height: 30px;
            }
            
            .back-to-top {
                bottom: 85px;
            }
            
            .footer-columna {
                padding: 0;
            }
            
            .mapa-ubicacion-footer iframe {
                height: 150px;
            }
        }
        /* =============================================
   PARTÍCULAS DE VERANO PARA HEADER
============================================= */
.summer-particles-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.summer-particles-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, 
        rgba(255, 215, 0, 0.1) 0%, 
        transparent 50%);
    animation: particleGlow 4s ease-in-out infinite alternate;
}

@keyframes particleGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* =============================================
   RESPONSIVE: AJUSTES PARA MÓVILES
============================================= */
@media (max-width: 768px) {
    .header-principal::after {
        animation-duration: 5s;
        opacity: 0.4;
    }
    
    .summer-particles-header {
        display: none; /* Ocultar en móviles para rendimiento */
    }
    
    .barra-navegacion a {
        text-shadow: 0 0 2px rgba(255, 215, 0, 0.1);
    }
    
    .barra-navegacion a:hover {
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
}