/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos generales */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(to left, #0064af, #00205c);
    background-size: 200% 200%;
    animation: girarDegradado 5s ease infinite;
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 900px;
}

.main-title {
    text-transform: capitalize;
    color: #ffffff; 
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;/* Sombra para que resalte más */
}

.main-title .resaltado {
    color: #f0f5fa; 
}
@keyframes girarDegradado {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Contenedor del menú */
.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    width: 80%; /* Ahora usa el ancho del wrapper */
    padding: 10px;
    background: rgba(255, 255, 255, 0.1); /* Fondo semi-transparente para modernidad */
    backdrop-filter: blur(10px); /* Efecto cristal */
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Estilos de los elementos */
.product-item {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: scale(1.05);
}

/* Imágenes responsivas */
.product-item img {
    max-width: 60%;
    height: auto;
    border-radius: 5px;
}

/* Responsividad */
@media (max-width: 600px) {
    .menu-container {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
}

.logo{
    width: 10%;
    position: absolute;
    left: 3%;
    top: 0px;
}