
    :root {
        --color-principal: #FF005A; /* Cambia este color a tu marca */
        --color-fondo: #ffffff;
        --color-texto: #333;
        --color-gris: #f4f4f4;
    }

    body {
        font-family: 'Segoe UI', Arial, sans-serif;
        background-color: var(--color-fondo);
        margin: 0;
        color: var(--color-texto);
    }

    /* ENCABEZADO */
    header {
        background-color: #772C4B;
        padding: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    header img {
        height: 50px;
        border-radius: 8px;
    }

    header h1 {
        font-size: 1.4rem;
        color: white;
        margin: 0;
        text-align: center;
    }

    /* NAVEGACIÓN */
    nav {
        display: flex;
        overflow-x: auto;
        background-color: var(--color-gris);
        padding: 8px;
        gap: 8px;
    }

    nav button {
        background-color: white;
        border: none;
        padding: 10px 16px;
        border-radius: 20px;
        font-size: 0.95rem;
        cursor: pointer;
        white-space: nowrap;
        transition: background 0.3s, transform 0.2s;
    }

    nav button:hover {
        background-color: #e0e0e0;
    }

    nav button.active {
        background-color: var(--color-principal);
        color: white;
        font-weight: bold;
    }

    /* SECCIONES DE MENÚ */
    .menu-section {
        display: none;
        animation: fadeIn 0.4s ease-in-out;
        padding: 15px;
    }

    .menu-section.active {
        display: block;
    }

    .item {
        background-color: white;
        border-radius: 12px;
        padding: 10px;
        margin-bottom: 15px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .item img {
        width: 90px;
        height: 90px;
        object-fit: cover;
        border-radius: 10px;
        background-color: #ddd;
    }

    .item-info {
        flex: 1;
    }

    .item-info h3 {
        margin: 0 0 5px 0;
        font-size: 1rem;
    }

    .item-info p {
        margin: 0;
        font-size: 0.85rem;
        color: #555;
    }

    /* FOOTER */
    footer {
        background-color: var(--color-gris);
        padding: 15px;
        text-align: center;
        font-size: 0.9rem;
    }

    footer a {
        margin: 0 10px;
        color: var(--color-principal);
        text-decoration: none;
        font-weight: bold;
    }

    footer a:hover {
        text-decoration: underline;
    }

    /* MODAL PARA IMAGEN */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ccc;
}

/* Que el cursor cambie al pasar sobre las imágenes del menú */
.menu-img {
    cursor: pointer;
    transition: transform 0.2s;
}
.menu-img:hover {
    transform: scale(1.05);
}


    /* ANIMACIÓN */
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* RESPONSIVE EXTRA */
    @media (min-width: 768px) {
        nav {
            justify-content: center;
        }
        .item img {
            width: 120px;
            height: 120px;
        }
        .item-info h3 {
            font-size: 1.1rem;
        }
    }