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

        html {
            overflow-x: hidden;
            width: 100%;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background: #ffffff;
            color: #555555;
            line-height: 1.6;
            overflow-x: hidden;
            width: 100%;
        }
        
        /* Línea LED */
        .linea-led {
            height: 2px;
            background: linear-gradient(90deg, transparent, #FFD700, #FFA500, #FFD700, transparent);
            margin: 40px auto;
            width: 80%;
            max-width: 600px;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
        }
        
        .linea-led-corta {
            width: 40%;
            max-width: 300px;
        }
        
        /* Menú fijo */
        .menu-fijo {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .menu-contenedor {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
        }
        
        .menu-item {
            color: #888888;
            text-decoration: none;
            font-size: 13px;
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .menu-item:hover {
            color: #FFD700;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.6),
                         0 0 40px rgba(255, 215, 0, 0.3);
        }
        
        /* Secciones */
        .seccion {
            min-height: 100vh;
            padding: 100px 20px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
	    position: relative;
        }
        
        /* Portada */
        .portada {
            text-align: center;
            padding-top: 120px;
        }
        
        .logo-principal {
            max-width: 350px;
            width: 80%;
            margin-bottom: 30px;
        }
        
        .eslogan {
            font-size: 24px;
            font-weight: 200;
            color: #666666;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        
        .sub-eslogan {
            font-size: 15px;
            color: #888888;
            font-weight: 300;
            max-width: 600px;
            line-height: 1.8;
        }
        
        /* Sobre nosotros */
        .sobre-nosotros {
            max-width: 800px;
            text-align: center;
            margin: 0 auto;  /* Esto lo centra horizontalmente */
            width: 100%;
        }
        
        .titulo-seccion {
            font-size: 20px;
            font-weight: 300;
            color: #666666;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 30px;
        }
        
        .texto-nosotros {
            font-size: 16px;
            color: #777777;
            font-weight: 300;
            line-height: 1.9;
            margin-bottom: 20px;
        }
        
        /* Productos */
        .productos-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            max-width: 1000px;
            width: 100%;
            margin-top: 40px;
        }
        
        .producto-card {
            text-align: center;
        }
        
        .producto-imagen {
            width: 100%;
            height: 350px;
            background: #f9f9f9;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            overflow: hidden;
            border-radius: 4px;
        }
        
        .producto-imagen img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .producto-imagen:hover img {
            transform: scale(1.05);
        }

        /* Producto 4: hover por imagen individual sin tocar el gap */
        .producto-imagen.doble-foto img {
            max-width: 100%;
            max-height: 100%;
            transition: transform 0.3s ease;
            transform-origin: center center;
        }

        .producto-imagen.doble-foto img:hover {
            transform: scale(1.04);
        }
        
        .producto-categoria {
            font-size: 11px;
            color: #999999;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        
        .producto-nombre {
            font-size: 22px;
            font-weight: 300;
            color: #444444;
            margin-bottom: 12px;
        }
        
        .producto-descripcion {
            font-size: 14px;
            color: #777777;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .producto-medidas {
            font-size: 13px;
            color: #888888;
            margin-bottom: 10px;
        }
        
        .producto-precio {
            font-size: 24px;
            color: #333333;
            font-weight: 400;
        }
        
        .producto-precio span {
            font-size: 13px;
            color: #999999;
        }
        
        /* Ver más */
        .ver-mas {
            text-align: center;
            margin: 60px 0;
        }
        
        .ver-mas-texto {
            font-size: 14px;
            color: #888888;
            margin-bottom: 25px;
            font-style: italic;
        }
        
        .redes-iconos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 50px;
            margin-bottom: 20px;
        }
        
        .red-item {
            text-align: center;
            color: #888888;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .red-item:hover {
            color: #FFD700;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
        }
        
        .red-icono {
            width: 24px;
            height: 24px;
            margin-bottom: 8px;
            fill: currentColor;
        }
        
        .red-nombre {
            font-size: 12px;
            letter-spacing: 1px;
        }
        
        /* Contacto */
        .contacto-seccion {
            text-align: center;
        }
        
        .contacto-items {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .contacto-item {
            color: #888888;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .contacto-item:hover {
            color: #FFD700;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
        }
        
        .contacto-valor {
            font-size: 15px;
            margin-top: 5px;
        }

        .contenedor-boton {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            text-align: right;
            padding-right: 20px;
        }

        .volver-inicio {
            display: inline-block;
            color: #999999;
            text-decoration: none;
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            cursor: pointer;
            margin-top: 20px;
        }

        .volver-inicio:hover {
             color: #FFD700;
             text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
        }

        .volver-inicio::before {
             content: "↑ ";
             font-size: 12px;
        }
        
        /* Footer */
        .footer {
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid #f0f0f0;
        }
        
        .logo-footer {
            width: 220px;
            opacity: 0.9;
            margin-bottom: 18px;
        }
        
        .footer-texto {
            font-size: 14px;
            color: #888888;
            line-height: 1.6;
        }
        
        /* Modal producto */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.85);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .modal-overlay.activo { display: flex; }

        .modal-contenido {
            background: #fff;
            max-width: 1000px;
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            flex-direction: row;
            position: relative;
            animation: modalEntrada 0.3s ease;
            max-height: 92vh;
        }

        @keyframes modalEntrada {
            from { opacity: 0; transform: scale(0.92); }
            to   { opacity: 1; transform: scale(1); }
        }

        .modal-cerrar {
            position: absolute;
            top: 10px; right: 14px;
            font-size: 28px;
            color: #aaa;
            cursor: pointer;
            background: none;
            border: none;
            line-height: 1;
            z-index: 10;
            transition: color 0.2s;
        }

        .modal-cerrar:hover { color: #FFD700; }

        /* Columna izquierda: fotos — ocupa 60% */
        .modal-fotos {
            flex: 0 0 60%;
            background: #f2f2f2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 24px;
            min-height: 500px;
        }

        .modal-fotos img {
            width: 100%;
            max-height: 45vh;
            object-fit: contain;
            cursor: zoom-in;
            border-radius: 4px;
            transition: transform 0.2s;
        }

        .modal-fotos img:hover { transform: scale(1.02); }

        /* Columna derecha: info — ocupa 40% */
        .modal-info {
            flex: 0 0 40%;
            padding: 36px 28px 24px;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }

        .modal-categoria {
            font-size: 11px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .modal-nombre {
            font-size: 20px;
            font-weight: 300;
            color: #444;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .modal-linea-led {
            height: 2px;
            background: linear-gradient(90deg, transparent, #FFD700, #FFA500, #FFD700, transparent);
            margin: 12px 0 16px;
            box-shadow: 0 0 6px rgba(255,215,0,0.4);
        }

        .modal-descripcion {
            font-size: 14px;
            color: #777;
            line-height: 1.8;
            margin-bottom: 12px;
            flex-grow: 1;
        }

        .modal-medidas {
            font-size: 13px;
            color: #999;
            margin-bottom: 16px;
        }

        .modal-precio {
            font-size: 32px;
            color: #333;
            font-weight: 400;
            margin-bottom: 18px;
        }

        .modal-precio span { font-size: 13px; color: #999; }

        .modal-whatsapp {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 11px 22px;
            color: #666;
            font-size: 13px;
            letter-spacing: 1px;
            margin-bottom: 24px;
            text-align: center;
        }

        .modal-whatsapp-icon {
            display: inline-block;
            line-height: 0;
        }

        .modal-whatsapp-icon img {
            width: 22px;
            height: 22px;
            opacity: 0.5;
            transition: opacity 0.2s;
        }

        .modal-whatsapp-icon:hover img { opacity: 1; }

        .modal-logo {
            width: 170px;
            opacity: 0.85;
            display: block;
            margin: 0 auto;
        }

        /* Modal zoom foto completa */
        .modal-zoom {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.96);
            z-index: 3000;
            justify-content: center;
            align-items: center;
        }

        .modal-zoom.activo { display: flex; }

        .modal-zoom img {
            max-width: 94vw;
            max-height: 94vh;
            object-fit: contain;
            border-radius: 4px;
        }

        .modal-zoom-cerrar {
            position: fixed;
            top: 14px; right: 20px;
            font-size: 38px;
            color: #fff;
            cursor: pointer;
            background: none;
            border: none;
            line-height: 1;
        }

        .producto-imagen { cursor: pointer; }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-contenedor {
                gap: 14px;
                row-gap: 10px;
                flex-wrap: wrap;
                padding: 0 16px;
            }
            
            .menu-item {
                font-size: 11px;
            }
            
            .productos-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .eslogan {
                font-size: 18px;
            }

            .redes-iconos {
                gap: 30px;
            }

            .contacto-items {
                gap: 30px;
            }

            .modal-overlay {
                padding: 0;
                align-items: flex-end;
            }

            .modal-contenido {
                flex-direction: column;
                max-height: 95vh;
                overflow-y: auto;
                border-radius: 12px 12px 0 0;
            }

            .modal-fotos {
                flex: none;
                width: 100%;
                min-height: 0;
                padding: 12px;
            }

            .modal-fotos img {
                max-height: 32vh;
            }

            .modal-info {
                flex: none;
                width: 100%;
                padding: 14px 18px 20px;
            }

            .modal-categoria { font-size: 10px; margin-bottom: 4px; }
            .modal-nombre { font-size: 17px; margin-bottom: 6px; }
            .modal-linea-led { margin: 6px 0 10px; }
            .modal-descripcion { font-size: 13px; line-height: 1.5; margin-bottom: 8px; }
            .modal-medidas { font-size: 12px; margin-bottom: 8px; }
            .modal-precio { font-size: 24px; margin-bottom: 10px; }
            .modal-whatsapp { padding: 6px 16px; margin-bottom: 10px; }
            .logo-footer, .modal-logo { width: 90px !important; }

            .menu-item-whatsapp { display: none; }

            .modal-zoom img {
                max-width: 90vw;
                max-height: 82vh;
            }
        }