*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}
.portada_web{
    /* background-image: linear-gradient(145deg,#1f92df, #51c1f1); */
    background-color: #1f92df; 
    width: 100%;
    height: 800px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 5%;
}
.texto_portada{
    width: 50%;
    color: #fff;
    display: flex;
    flex-direction: column;
}
.texto_portada span{
    font-size: 50px;
    font-weight: 600;
}
.precio_portada{
    background-color: #fafafa;
    color: #1f92df;
    width: max-content;
    padding: 0px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.texto_portada p{
    font-size: 20px;
    font-weight: 300;
}
.texto_portada a{
    font-size: 23px;
    font-weight: 600;
    padding: 8px 25px;
    text-decoration: none;
    color: #1f92df;
    background-color: #fff;
    border-radius: 25px;
    transition: 0.2s ease-in-out;
    width: max-content;
    margin-top: 20px;
}
.texto_portada a:hover{
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.productos_agua{
    display: flex;
    align-items: center;
    justify-content: center;
}
.contenedor_producto_agua{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px;
    background-color: #e4f1f7;
    width: 400px;
    height: max-content;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}
.contenedor_producto_agua.semijoya{
    background-color: #f3eceb;
}
.contenedor_producto_agua:hover{
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.300);
}
.contenedor_producto_agua img{
    width: 400px;
    height: 400px;
    object-fit: contain;
    transform: scale(1);
}
.contenedor_producto_agua span{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    background-color: #78aa31;
    color: #fafafa;
    width: 100%;
    text-align: center;
    padding: 5px 0px;
}
.contenedor_producto_agua.semijoya span{
    background-color: #FFB400;
}

@media screen and (max-width:1250px){
    .portada_web{
        height: 800px;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        padding: 5%;
    }
    .portada_web img{
        width: 400px;
        height: 500px;
    }
    .texto_portada{
        width: 50%;
    }
    .texto_portada span{
        font-size: 40px;
    }
    .texto_portada p{
        font-size: 15px;
    }
    .texto_portada a{
        font-size: 19px;
    }
    .productos_agua a{
        width: calc(100%/3);
        margin: 10px;
    }
    .contenedor_producto_agua{
        width: 100%;
        height: max-content;
    }
    .contenedor_producto_agua img{
        width: 400px;
        height: 400px;
        object-fit: contain;
    }
    .contenedor_producto_agua span{
        font-size: 18px;
    }
}
@media screen and (max-width:1200px){
    .contenedor_producto_agua img{
        width: 100%;
        height: 400px;
    }
}
@media screen and (max-width:853px){
    .contenedor_producto_agua{
        margin: 2px;
    }
    .contenedor_producto_agua img{
        width: 100%;
        height: 250px;
    }
    .portada_web{
        height: 800px;
        padding: 5%;
    }
    .portada_web img{
        width: 400px;
        height: 500px;
        object-fit: contain;
    }
    .texto_portada{
        width: 100%;
    }
    .texto_portada span{
        font-size: 40px;
    }
    .texto_portada p{
        font-size: 15px;
    }
    .texto_portada a{
        font-size: 19px;
    }
}

@media screen and (max-width:620px){
    .productos_agua{
        flex-direction: column;
        padding: 10px;
    }
    .productos_agua a{
        width: 100%;
    }
    .contenedor_producto_agua{
        width: 100%;
        margin: 10px 0px;
    }
}
@media screen and (max-width:400px){
    .portada_web{
        height: 800px;
        padding: 5%;
    }
    .portada_web img{
        width: 300px;
        height: 400px;
        object-fit: contain;
    }
}