.productosSection {
    background-color: #565151;
    text-align: center;
    color: white;
    font-size: 1.2rem;
}

.tituloSection {
    text-transform: uppercase;
    height: 5vh;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content:center ;
}

.calidad {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center ;
}

.calidadAtributos {
    display: flex;  
    width: 80%;
    padding: 2rem;
    justify-content: space-between;
    align-items:flex-end
}

.icono {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
}

.iconoCalidad {
    width: 100%;
    filter: invert(0.5) sepia(1) 
}

.iconoCalidad:hover {
    filter: invert(1);
}

.textoCalidad {
    width: 100%;
    font-size: 1rem;
    padding: 0.5rem;
}

.listaProducto {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.producto {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.producto:nth-of-type(odd) {
    flex-direction: row-reverse;
}

.imagenProducto {
    min-width: 50%;
    object-fit: cover;
}

.descripcionProducto {
    min-width: 50%;
    padding: 1rem;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tituloProducto {
    color: #bca177;
    text-transform: uppercase;
    margin: 1rem;
}

.presentacion {
    color: #bca177;
    font-weight: 700;
}

.botonInfo {
    color: #bca177;
    border: 2px solid #bca177;
    margin: 2rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background-color: transparent;
}

.botonInfo:hover, .botonInfo-alfajor:hover  {
    color: white;
    border: 2px solid white;
    font-weight: 700;
}

.descripcionProducto-alfajor {
    background-color: #bca177;
}

.tituloProducto-alfajor, .presentacion-alfajor, .botonInfo-alfajor {
    color:#565151;
}

.botonInfo-alfajor { 
    border: 2px solid #565151;
}

/* diseño responsivo */
@media only screen and (max-width: 768px) {
    .calidadAtributos {
        width: 95%;
    }

    .textoCalidad {
        font-size: 0.8rem;
        text-align: center;
    }
    .producto, .producto:nth-of-type(odd) {
        flex-direction: column;
    }

    .imagenProducto, .descripcionProducto {
        width: 100%;
    }
}