        :root {
            --verde: #28A746FF;

            --verde-claro: #04FF00FF;
            --amarillo: #f4a261;
            --cafe: #e9c46a;
            --cafe-oscuro: #d4a373;
            --crema: #f8f1e5;
            /* --fondo: #f8b21b93; */
            --fondo: #eeeeeed0;
            --blanco: #ffffff;
            --texto-oscuro: #2b2d42;
            --texto-claro: #f8f9fa;
        }

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

        body {
            background-color: var(--fondo);
            color: var(--texto-oscuro);
            font-family: 'Raleway', sans-serif;
            line-height: 1.6;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        .heromenu {
            position: relative;
            /* background-image: url('../../assets/img/ensalada/principal.jpg'); */
            /* Fondo principal */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero-overlay-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 4rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: #3a5a40;
            /* Aquí agregamos un fondo adicional encima de la imagen del hero */
            /* background-image: url('../../assets/img/ensalada/principal.jpg'); */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* Para el logo */
        .logo {
            font-size: 3rem;
            margin-bottom: 1rem;
            /* color: var(--cafe); */
            color: var(--blanco);
            text-shadow: 2px 2px 4px var(--cafe-oscuro);
            z-index: 2;
        }







        /* Navegación estilo orgánico */
        .nav-tabs {
            display: flex;
            justify-content: center;
            margin: 2rem 0;
            flex-wrap: wrap;
            gap: 10px;
        }

        .nav-tab {
            padding: 0.8rem 1.8rem;
            background: rgba(233, 196, 106, 0.2);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.4s ease;
            font-weight: 600;
            border: 1px solid var(--cafe);
            color: var(--cafe);
            font-family: 'Raleway', sans-serif;
        }

        .nav-tab:hover,
        .nav-tab.active {
            background: var(--amarillo);
            color: var(--texto-oscuro);
            border-color: var(--amarillo);
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        /* Contenedor principal */
        .container {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        /* Barra de herramientas */
        .toolbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
            gap: 20px;
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(58, 90, 64, 0.1);
        }

        .search-box {
            position: relative;
            flex-grow: 1;
            max-width: 400px;
        }

        .search-box input {
            width: 100%;
            padding: 0.8rem 1rem 0.8rem 3rem;
            border-radius: 30px;
            border: 1px solid #ddd;
            font-size: 1rem;
            transition: all 0.3s;
            background: var(--crema);
            border-color: var(--cafe-oscuro);
        }

        .search-box input:focus {
            outline: none;
            border-color: var(--verde-claro);
            box-shadow: 0 0 0 3px rgba(88, 129, 87, 0.2);
        }

        .search-box i {
            position: absolute;
            left: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--cafe-oscuro);
        }

        .download-btn {
            background: linear-gradient(to right, var(--verde), var(--verde-claro));
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 30px;
            cursor: pointer;
            display: flex;
            align-items: center;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            font-family: 'Raleway', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            background: linear-gradient(to right, var(--verde-claro), var(--verde));
        }

        .download-btn i {
            margin-right: 10px;
            font-size: 1.1rem;
        }

        /* Grid de productos estilo naturaleza */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        /* Tarjeta de producto estilo orgánico */
        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(58, 90, 64, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            position: relative;
            border-top: 4px solid var(--cafe);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 25px rgba(58, 90, 64, 0.15);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--amarillo);
            color: var(--texto-oscuro);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 700;
            z-index: 2;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .product-image-container {
            height: 220px;
            position: relative;
            overflow: hidden;
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s;
        }

        .product-card:hover .product-image {
            transform: scale(1.1);
        }

        .product-info {
            padding: 1.8rem;
            position: relative;
        }

        .product-category {
            position: absolute;
            top: -15px;
            left: 20px;
            background: var(--verde);
            color: white;
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .product-name {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            color: var(--verde);
        }

        .product-description {
            color: var(--texto-oscuro);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1rem;
            border-top: 1px dashed var(--cafe-oscuro);
            padding-top: 1rem;
        }

        .product-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--amarillo);
        }

        .add-to-cart {
            background: var(--verde);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s;
            font-size: 1.2rem;
        }

        .add-to-cart:hover {
            background: var(--verde-claro);
            transform: rotate(15deg) scale(1.1);
        }

        /* Sección de categorías */
        .category-section {
            margin: 5rem 0;
        }

        .section-title {
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            color: var(--verde);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--amarillo);
            border-radius: 2px;
        }

        /* Footer estilo natural */
        .footer {
            background: var(--verde);
            color: var(--texto-claro);
            padding: 4rem 2rem;
            text-align: center;
            margin-top: 5rem;
        }

        .footer-logo {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--cafe);
        }

        .footer-slogan {
            max-width: 600px;
            margin: 0 auto 2rem;
            opacity: 0.9;
            font-size: 1.1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            margin: 2rem 0;
            gap: 15px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(233, 196, 106, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            color: var(--cafe);
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: var(--cafe);
            color: var(--verde);
            transform: translateY(-3px);
        }

        .copyright {
            opacity: 0.7;
            font-size: 0.9rem;
            margin-top: 2rem;
        }

        /* Efectos especiales */
        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        .pulse {
            animation: pulse 3s ease-in-out infinite;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }

            .toolbar {
                flex-direction: column;
                align-items: stretch;
            }

            .search-box {
                max-width: 100%;
            }

            .logo {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 3rem 1rem;
            }

            .logo {
                font-size: 2.2rem;
            }

            .slogan {
                font-size: 1.1rem;
            }

            .nav-tab {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }

            .section-title {
                font-size: 1.8rem;
            }
        }