
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url('img/ImagenFondoTienda.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: #333;
}

.barra-superior {
    background-color: #0097a7;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 1.2rem;
}

.contenedor-logo {
    text-align: center;
    margin-top: 20px;
}

.contenedor-logo h1 {
    font-size: 2.5rem;
    color: #0cdac2;
}

.logo {
    width: 120px;
    height: auto;
    margin-top: 10px;
}

.cuadro-contenido {
    background-color: rgba(41, 133, 156, 0.226);
    margin: 30px auto; 
    padding: 20px;
    width: 80%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    animation: slideDown 1.2s ease-out;
}

.categoria {
    font-size: 1.8rem;
    color: #09e2f1;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #09e2f1;
    padding-bottom: 10px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
}

.menu-item {
    background-color: #e0f7fade;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;              
    flex-direction: column;     
    justify-content: center;    
    align-items: center;        
    min-height: 20px;    
}

.menu-item:hover {
    transform: translateY(-5px);
}

.precio {
    display: block;
    margin-top: 10px;
    font-size: 1.5rem;
    color: #0288d1;
    font-weight: bold;
}

.fotosmenu {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.fotosmenu img {
    width: 32%;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.fotosmenu img:hover {
    transform: scale(1.05);
}

.botones-contenedor {
    text-align: center;
    margin-top: 30px;
}

.boton-comprar, .boton-principal {
    background-color: #0288d1;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    margin: 10px;
    transition: background-color 0.3s ease;
    box-shadow: 2px 2px 2px #eef0f1;
}

.boton-comprar:hover, .boton-principal:hover {
    background-color: #01579b;
}


h1 {
    font-family: "Notable", sans-serif;
    }
em {
    font-family: "Lilita One", sans-serif;
    }




