        /* --- General & Branding Styles --- */
        :root {
            --primary-color: #10CFC9; /* Teal from brandbook */
            --accent-orange: #FF5100; /* Orange from brandbook */
            --accent-yellow: #FFC844; /* Yellow from brandbook */
            --text-dark: #333;
            --background-light: #f9f9f9;
            --white: #FFFFFF;
        }
            /* Responsive para la sección #about */
            #about .container {
                padding: 20px;
                max-width: 100%;
                width: 100%;
                box-sizing: border-box;
            }
            #about h2 {
                word-break: break-word;
            }
            #about .section-subtitle {
                word-break: break-word;
            }
            @media (max-width: 900px) {
                #about {
                    padding: 24px 0;
                }
                #about .container {
                    padding: 0 10px;
                }
                #about h2 {
                    font-size: 1.7rem;
                }
                #about .section-subtitle {
                    font-size: 1rem;
                    margin: 10px auto 24px;
                    padding: 0 2vw;
                    max-width: 100%;
                }
            }
            @media (max-width: 600px) {
                #about {
                    padding: 12px 0;
                }
                #about .container {
                    padding: 0 5px;
                }
                #about h2 {
                    font-size: 1.1rem;
                }
                #about .section-subtitle {
                    font-size: 0.95rem;
                    margin: 5px auto 12px;
                    padding: 0 2vw;
                    max-width: 100%;
                }
            }
            /* --- Responsive Navigation --- */
            .menu-toggle {
                display: none;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 50px;
                height: 50px;
                cursor: pointer;
                background: var(--primary-color);
                border-radius: 8px;
                margin-left: 10px;
                z-index: 1100;
            }
            .menu-toggle span {
                display: block;
                width: 30px;
                height: 4px;
                margin: 5px 0;
                background: var(--white);
                border-radius: 2px;
                transition: 0.3s;
            }

            @media (max-width: 900px) {
                .nav-links {
                    position: fixed;
                    top: 0;
                    right: -100vw;
                    width: 70vw;
                    height: 100vh;
                    background: var(--white);
                    box-shadow: -2px 0 10px rgba(0,0,0,0.08);
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    transition: right 0.3s;
                    z-index: 1050;
                }
                .nav-links.open {
                    right: 0;
                }
                .nav-links a {
                    margin: 20px 0;
                    font-size: 1.3rem;
                }
                .menu-toggle {
                    display: flex;
                }
            }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Outfit", sans-serif;
            font-optical-sizing: auto;
            font-weight: 200;
            font-size: 1em;
            font-style: normal;
            margin: 0;
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* --- Layout & Sections --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        section {
            padding: 60px 0;
        }
        
        section:nth-child(even) {
            background-color: var(--background-light);
        }

        h1, h2, h3 {
            font-weight: 700;
            color: var(--primary-color);
            text-align: center;
        }
        
        h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
        }
        
        .section-subtitle {
            text-align: justify;
            max-width: 800px;
            margin: -20px auto 40px;
            font-size: 1.1rem;
        }

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

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header img {
            height: 70px;
        }
        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }
        .logo span {
            color: var(--accent-orange);
            font-size: 1.5rem;
        }

        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            margin: 0.3em 15px;
            font-weight: 700;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: var(--accent-orange);
        }

        /* --- Hero Section --- */
        .hero {
            background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../storage/jappi_food_fabrica.jpg'); /* Placeholder image of tequeños */
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
            padding: 150px 20px;
        }
        .hero h1 {
            font-size: 3.5rem;
            color: var(--white);
            margin-bottom: 20px;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        .cta-button {
            background-color: var(--accent-yellow);
            color: #FFFFFF;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
            font-family: "Outfit", sans-serif;
            font-size: 1rem;
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(255, 200, 68, 0.5);
        }
        #products {
            background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../storage/cocina.jpg'); 
            background-size: cover; /* Para que la imagen cubra todo el fondo */
            background-repeat: no-repeat; /* Para evitar que la imagen se repita */
            background-position: center center; /* Para centrar la imagen */
            background-attachment: fixed;
        }
        /* --- Products Section --- */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .product-card {
            background: var(--white);
            padding: 20px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        .product-card:hover {
            transform: translateY(-5px);
        }
        .product-card h3 {
            font-size: 1.5rem;
            margin-top: 15px;
        }
        .product-card p {
            text-align: justify;
        }
        .product-icon {
            font-size: 5rem;
            color: var(--accent-orange);
        }

        /* --- Differentiators Section --- */
        .differentiators-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(22%, 1fr));
            gap: 20px;
        }
        .differentiator-item {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        differentiator-item div p {
            text-align: justify;
        }
        .differentiator-icon {
            font-size: 4.5rem;
            color: var(--primary-color);
            text-align: center;
        }
        
        /* --- FAQ Section --- */
        .faq-item {
            border-bottom: 1px solid #ddd;
            margin-bottom: 10px;
        }
        #faq {
            padding: 7em;
        }
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.2rem;
            font-weight: 700;
            padding: 15px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
        }

        /* --- Footer --- */
        .footer {
            background-color: var(--primary-color);
            color: var(--white);
            text-align: center;
            padding: 60px 20px;
        }
        .footer a {
            color: var(--accent-yellow);
            text-decoration: none;
        }
         .footer h2 {
            color: var(--white);
            margin-bottom: 20px;
        }    
        .footer p {
            max-width: 800px;
            margin: 0 auto 30px auto;
        }

        /* --- Estilos del Formulario de Contacto --- */
        #contact-form {
            max-width: 800px;
            margin: 40px auto;
            text-align: left;
        }
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            width: 100%;
        }
        .form-group.full-width {
            grid-column: 1 / -1;
        }
        .form-group label {
            margin-bottom: 8px;
            font-weight: 700;
            color: var(--white);
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: "Outfit", sans-serif;
            font-size: 1rem;
            box-sizing: border-box; /* Asegura que el padding no afecte el ancho total */
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-yellow);
            box-shadow: 0 0 5px rgba(255, 200, 68, 0.5);
        }
        .form-submit {
            grid-column: 1 / -1;
            text-align: center;
            margin-top: 20px;
        }
        .contact-info-footer {
            margin-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.3);
            padding-top: 30px;
        }
        .contact-info-footer p {
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        
        /* Responsive para el formulario */
        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
        }

        /* --- NUEVO: Botón Flotante de WhatsApp --- */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 25px;
            right: 25px;
            padding: 3px;
            background-color: #25D366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 6px rgba(0,0,0,0.25);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }
        .whatsapp-float:hover {
            transform: scale(1.1);
        }

/* --- Estilos para Dispositivos Móviles --- */
@media (max-width: 768px) {

    /* --- Ajustes Generales de Espaciado --- */
    section {
        padding: 40px 20px; /* Reduce el espaciado lateral en las secciones */
    }

    /* --- Ajustes de Tipografía --- */
    h1 {
        font-size: 2.2rem; /* Reduce el tamaño del título principal */
    }

    h2 {
        font-size: 1.8rem; /* Reduce el tamaño de los subtítulos */
    }

    /* --- Menú de Navegación Móvil --- */
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-links {
        display: none; /* Oculta los enlaces por defecto */
        position: absolute;
        top: 70px; /* Ajustar según la altura de tu header */
        left: 0;
        background-color: #f8f9fa; /* Color de fondo para el menú desplegado */
        width: 100%;
        flex-direction: column; /* Apila los enlaces verticalmente */
        text-align: center;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .nav-links a {
        padding: 15px 0;
        border-bottom: 1px solid #ddd;
    }
    
    .nav-links.open {
        display: flex; /* Muestra el menú cuando se hace clic en el ícono */
    }

    /* --- Productos y Diferenciadores (La corrección más importante) --- */
    .products-grid,
    .differentiators-grid {
        /* Si usas Grid Layout */
        grid-template-columns: 1fr; /* Cambia a una sola columna */
        
        /* Si usas Flexbox */
        flex-direction: column;
        align-items: center;
        gap: 25px; /* Añade espacio entre los elementos apilados */
    }
    
    /* --- Formulario de Contacto --- */
    .form-grid {
        grid-template-columns: 1fr; /* El formulario ocupará una sola columna */
        gap: 15px;
    }
}