* {
    margin: 0;
    padding: 0;
}

body {
    width: 80%;
    max-width: 1100px;
    margin: auto;
    font-family: Arial, Helvetica, sans-serif;
}

section {
    margin-bottom: 20px;
}

section.banner {
    width: 100%;
    margin: auto;
    margin-bottom: 20px;
}

section.banner img {
    width: 100%;
}

section.recommend {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: space-evenly; 
}

section.recommend div {
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

section.recommend article{
    width: 30%;
}

section.recommend article img {
    width: 100%;
}

section.destinos {
    margin-bottom: 200px;
}

section.destinos select {
    width: 100%;
    height: 2rem;
}

article {
    margin-bottom: 12px;
}

article main {
    width: 100%;
    border: 1px solid grey;
}

@media screen and (min-width: 900px) and (max-width: 1160px) {
    section.recommend article{
        width: 45% !important; 
    }

}

 @media screen and (max-width: 760px) {
    section.recommend article{
        width: 100%; 
    }

} 
