*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body{
    max-width: 500px;
    margin: auto;
}

main{
    background-color: #D9C6AD;
}

/* cab */

.con-cab{
    width: 100%;
    min-height: 30vh;
    background-image: url("img/fondo-cab.png");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    padding: 30px 20px;
    justify-content: space-around;
    align-items: flex-end;
}

.con-cab img{
    width: 50%;
}

.cab-1{
    max-width: 50%;
}

.con-cab h1{
    font-family: "Work Sans", serif;
    font-size: 1.6rem;
    color: #D9C6AD;
}

.con-cab h2{
    font-family: "Work Sans", serif;
    font-weight: 500;
    font-size: 1.4rem;
    color: #FFEA00;
    margin-top: 50px;
}

.con-cab h3{
    font-family: "Work Sans", serif;
    font-weight: 500;
    font-size: 1.4rem;
    color: #D9C6AD;
}

/* inf */

.con-inf{
    width: 100%;
    min-height: 40vh;
    padding: 20px 0px;
}

.con-inf a{
    font-family: "Work Sans", serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #361C0F;
    width: 100%;
    height: 8vh;
    text-decoration: none;
    color: #D9C6AD;
    text-align: center;
}

.con-inf a img{
    height: 50%;
    margin-right: 10px;
}

.con-inf p{
    font-family: "Noto Serif", serif;
    font-style: italic;
    padding: 30px 30px 0;
    text-align: justify;
}

/* men */

.con-men{
    background-color: #361C0F;
    margin: 20px;
    border-radius: 40px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.men-1{
    width: 50%;
}

.men-1 h2{
    font-family: "Work Sans", serif;
    color: #D9C6AD;
    margin-bottom: 10px;
}

.men-1 p{
    font-family: "Work Sans", serif;
    color: #D9C6AD;
}

.men-2{
    width: 50%;
}

.men-2 h2{
    font-family: "Work Sans", serif;
    font-size: 1.2rem;
    color: #FFEA00;
    text-align: center;
    margin-bottom: 10px;
}

.men-2 img{
    width: 100%;
}

.btn-men{
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 10px;
}

.btn-men a{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D9C6AD;
    width: 25%;
    height: 50%;
    border-radius: 10px;
    padding: 5px;
}

.btn-men a img{
    width: 100%;
}

/* ubi */

.ubi{
    width: 100%;
    background-color: #361C0F;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ubi img{
    height: 50%;
    margin-right: 10px;
}

.ubi h2{
    font-size: 1rem;
    color: white;
    font-family: "Work Sans", serif;
    font-weight: 400;
}

/* foo */

.con-foo{
    height: 10vh;
    width: 100%;
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.con-foo a{
    width: 40%;
    margin-left: 10px;
}

.con-foo a img{
    height: auto;
    width: 100%;
}

.con-foo h2{
    font-family: "Work Sans", serif;
    font-size: 0.9rem;
    font-weight: 400;
    margin-right: 10px;
}

@media (max-width: 385px){
    .con-men{
        flex-direction: column;
    }

    .men-1 h2{
        text-align: center;
    }

    .men-1 p{
        text-align: center;
        margin-bottom: 20px;
    }

    .btn-men a{
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #D9C6AD;
        width: 38%;
        height: 70%;
        border-radius: 10px;
        padding: 5px;
    }
    
    .btn-men a img{
        width: auto;
        height: 100%;
    }
}