#tituloProductoCaliente {
    text-align: center;
}

#menuBebidasCalientes {
    width: 80%;
    margin: auto;
    text-align: left;
}

.contenedorBebidasCalientes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: auto;
}

.bebidaCaliente {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 48%;
    margin-bottom: 20px;
    border-radius: 5%;
    background-color: #f5e5cc;
    padding: 10px;
    text-align: center;
    color: black;
    transition: all 0.3s ease;
}

.bebidaCaliente:hover {
    box-shadow: 0px 0px 20px rgba(100, 50, 0, 0.4);
    transform: scale(1.02);
}

.bebidaCaliente img {
    border-radius: 5%;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.infoProducto {
    margin-top: 10px;
    text-align: left;
}

.infoProducto h2 {
    font-size: 1.8rem;
    font-weight: bold;
}

.infoProducto p {
    font-size: 1rem;
    font-weight: bold;
    text-align: left;
}

.ingredientes {
    font-weight: normal;
    margin: 5px 0;
}

.costo {
    color: green;
    font-weight: bold;
    margin: 5px 0;
}

@media (min-width: 768px) {
    .bebidaCaliente {
        width: 30%;
    }
}

@media (max-width: 767px) {
    .bebidaCaliente {
        width: 100%;
    }
}