.first-section {
    display: flex;
    background-image: url(/assets/images/paisagem/destinosfundo.jpg);
    background-repeat: no-repeat;
    height: 70vh;
    width: 100vw;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
body{
    color: #00476c;
}
.div-section{
    display: flex;
    width: 100%;
    justify-content: center;
}
.text-content{
    margin-bottom: 40px;
}

.text-content h1{
    font-size: 48px;
    color: white;
    text-shadow: 0 3px 5px #000;

}
main h1{
    font-size: 48px;
    margin-top: 20px;
    text-align: center;
}


.destinos{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}
.destino{
     width: 80%;
     border-radius: 10px;
     padding: 24px;
     margin: 0 auto;
     height: 100%;
}
.title-destino{
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}
.destino p {
    font-size: 18px;
}
.destinos_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 820px;
    margin: 20px auto;
    gap: 20px;
}
.image-destino{
    height: 400px;
    width: 100%;
    object-fit: cover;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}
.item1{
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: center;; */
    grid-row: 1 / span 2;
}
@media (min-width: 1700px){
    .first-section{
       background-position-y: center; 
    }
} 
@media (max-width: 768px){
    .first-section{
        background-position-x: center; 
     }
     main{
        margin-bottom: 50px;
     }
    .destino{
        width: 100%;
    }
    .destino p {
        font-size: 16px;
    }
    .destinos_grid{
        display: flex;
        flex-direction: column;
        height: 600px;
    }
    .image-destino{
        height: 200px;
        width: 100%;
        object-fit: cover;
        box-shadow: 0px;
    }

}