:root{
    --blanco:#ffffff;
    --negro:#000000;
    --rosita:#D98C9B;
    --cafesito:#F7F2EC;
    --moradito:#6E4A5C;
}
html{
    font-size:62.5%;
    box-sizing:border-box;
}
*, *:before, *:after{
    box-sizing:inherit;
}
*{
    margin:0;
    padding:0;
    font-family:Arial;
}
body{
    background:var(--blanco);
}
.header{
    max-width:1440px;
    width:100%;
    height:auto;
    background:var(--rosita);
    margin:auto;
    display:flex;
    flex-direction:column;
    justify-content:space-around;
    align-items:center;
    padding:20px 0;
    gap:15px;
}
.logotipo img{
    width:162px;
    height:70px;
}
.buscador{
    width:300px;
    height:40px;
    background:var(--blanco);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 10px;
}
.buscador input{
    width:90%;
    border:none;
    outline:none;
    font-size:14px;
}
.buscador img{
    width:20px;
    height:20px;
}
.iconos{
    display:flex;
    gap:20px;
}
.iconos img{
    width:25px;
    height:25px;
}
@media(min-width:768px){
    .header{
        flex-direction:row;
        height:80px;
    }
}
nav{
    max-width:1440px;
    width:100%;
    height:auto;
    background:var(--blanco);
    margin:auto;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:20px;
    padding:20px 0;
}
.nav a{
    text-decoration:none;
    color:var(--negro);
    font-weight:bold;
}
.nav a:hover{
    color:var(--rosita);
}
@media(min-width:768px){
    nav{
        flex-direction:row;
        height:50px;
        gap:70px;
    }
}
.hero{
    max-width:1440px;
    width:100%;
    height:200px;
    margin:auto;
}
.hero img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
@media(min-width:768px){
    .hero{
        height:400px;
    }
}
.productos{
    max-width:1440px;
    width:100%;
    background:var(--cafesito);
    margin:auto;
    display:grid;
    grid-template-columns:1fr;
    justify-content:center;
    justify-items:center;
    gap:50px;
    padding:50px 0;
}
.card{
    background:var(--blanco);
    padding:15px;
    width:90%;
    max-width:350px;
}
.card img{
    width:100%;
    height:200px;
    object-fit:cover;
}
.card h3{
    margin-top:15px;
    font-size:20px;
}
.card p{
    margin-top:10px;
    font-size:16px;
    line-height:25px;
}
.card span{
    display:block;
    margin-top:10px;
    font-size:18px;
    font-weight:bold;
}
@media(min-width:768px){
    .productos{
        grid-template-columns:1fr 1fr 1fr;
    }
}
.banner{
    max-width:1440px;
    width:100%;
    height:50px;
    background:var(--rosita);
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
}
.footer{
    max-width:1440px;
    width:100%;
    height:auto;
    background:var(--moradito);
    margin:auto;
    color:var(--blanco);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    gap:30px;
    padding:30px;
}
.footer-redes{
    display:flex;
    gap:15px;
    margin-top:10px;
}
.footer-redes img{
    width:25px;
    height:25px;
}
.footer-text{
    line-height:30px;
}
@media(min-width:768px){
    .footer{
        flex-direction:row;
        justify-content:space-around;
        align-items:center;
        height:170px;
    }
}
.contacto{
    max-width:1440px;
    width:100%;
    background:var(--cafesito);
    margin:auto;
    padding:50px 100px;
}
.contacto h2{
    text-align:center;
    margin-bottom:30px;
}
.contacto p{
    text-align:center;
    margin-bottom:40px;
}
.contacto form{
    display:flex;
    flex-direction:column;
}
fieldset{
    border:none;
    display:flex;
    flex-direction:column;
}
legend{
    font-size:25px;
    font-weight:bold;
    margin-bottom:20px;
}
.contacto label{
    margin-top:20px;
    margin-bottom:10px;
    font-weight:bold;
}
.contacto input{
    height:45px;
    border:none;
    padding-left:10px;
    margin-bottom:15px;
}
.contacto textarea{
    height:150px;
    border:none;
    resize:none;
    padding:10px;
    margin-bottom:20px;
}
.contacto button{
    width:150px;
    height:40px;
    margin:auto;
    margin-top:30px;
    border:none;
    background:var(--rosita);
    color:var(--blanco);
    font-weight:bold;
    cursor:pointer;
    border-radius:1rem;
}