
        :root {
            --primary-color: #2E7D32; /* Verde oscuro para el logo y texto */
            --secondary-color: #4CAF50; /* Verde más claro para el botón activo */
            --text-color: var(--primary-color);
            --light-color: #f4f4f4;
            --dark-color: #222;
            --font-main: Arial, sans-serif;
            --font-heading: 'Impact', 'Arial Black', sans-serif;
            --yellow-bg: #FFF577; /* Amarillo del banner de Mini Gusticos */
            --purple-bg: #5A4281; /* Morado del banner de Masmelos Bunnys */
            --pink-bg: #FF4081; /* Rosa intenso del fondo */
            --product-bg-1: #E93190; /* Rosa para Fresa */
            --product-bg-2: #FFD300; /* Amarillo para Banano */
            --product-bg-3: #00A9C1; /* Turquesa para Vainilla */
            --product-bg-4: #472512; /* Marrón para Chocolate */
            --product-bg-5: #F8ECBB; /* Beige para Fresa Nieve */
            --product-bg-6: #6A3A11; /* Marrón para Choco Fresa */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            color: var(--text-color);
            line-height: 1.6;
            background-color: white;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header */
        header {
            background-color: white;
            padding: 0.5rem 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Sombra sutil */
            display: flex;
            justify-content: center; /* Centra el contenido del header */
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo {
            height: 50px; /* Ajusta el tamaño según tu logo real */
            width: auto;
            margin-right: 1rem;
        }

        .nav-menu ul {
            list-style: none;
            display: flex;
            gap: 1rem;
            align-items: center; /* Alinea verticalmente los elementos del menú */
        }

        .nav-menu li a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: bold;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            padding: 8px 12px; /* Padding para que se vean como botones */
            border-radius: 5px;
        }

        .nav-menu li a:hover {
            color: var(--secondary-color);
        }

        /* Estilo especial para "Confitería" */
        .nav-menu li a[href="#confiteria"] {
            background-color: var(--secondary-color);
            color: white;
            padding: 8px 12px;
            border-radius: 5px;
        }

        .lang-switcher {
            display: flex;
            flex-direction: column;
            border: 1px solid var(--primary-color);
            border-radius: 3px;
            overflow: hidden;
        }

        .lang-switcher a {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.8rem;
            padding: 4px 8px;
            text-align: center;
        }

        .lang-switcher a:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        
         /* Footer de Conexión */
        .footer-conexion {
            background-color: #2E7D32; /* Verde oscuro del fondo */
            padding: 2rem 0;
            color: white;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap; /* Para que se apilen en móviles */
            gap: 2rem; /* Espacio entre el texto y los íconos */
        }
        
        .footer-text {
            text-align: left; /* Alinea el texto a la izquierda dentro de su contenedor */
        }
        
        .footer-text h3 {
            font-family: #2E7D32s;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .footer-text p {
            font-size: 1.2rem;
            font-weight: bold;
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
        }
        
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: white;
            color: #2E7D32; /* Color del ícono (verde oscuro) */
            font-size: 1.5rem; /* Tamaño del ícono */
            transition: transform 0.3s ease;
            text-decoration: none; /* Quitar subrayado del enlace */
        }
        
        .social-icon:hover {
            transform: scale(1.1); /* Efecto de zoom al hacer hover */
            color: #4CAF50; /* Cambiar color del ícono al hacer hover */
        }
        
        .social-icons img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
        }


    @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
                justify-content: space-around;
            }
            .nav-menu ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem;
            }
            .nav-menu li a {
                font-size: 0.8rem;
                padding: 6px 10px;
            }
            .lang-switcher {
                margin-top: 0.5rem;
            }
            
             .footer-content {
                flex-direction: column;
                gap: 1rem;
            }
            .footer-text {
                text-align: center; /* Centra el texto en móviles */
            }
            .footer-text h3 {
                font-size: 1.2rem;
            }
            .footer-text p {
                font-size: 1rem;
            }
            .social-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }



        @media (max-width: 480px) {
            .nav-menu li a {
                font-size: 0.7rem;
                padding: 5px 8px;
            }
            .lang-switcher a {
                font-size: 0.7rem;
                padding: 3px 6px;
            }
            .banner {
                width: 120px;
                height: 60px;
            }
            
            .hero-title {
                font-size: 1.5rem;
            }
            .hero-text {
                font-size: 0.8rem;
            }
            .footer-text h3 {
                font-size: 1rem;
            }
            .footer-text p {
                font-size: 0.9rem;
            }
            .social-icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }