
/* MEDIA 834PX ABERTURA */

@media screen and (max-width: 834px) {
    main .banner-verao{
        display: none;
    }
}

/* MEDIA 834PX FECHAMENTO */

/* MEDIA 768PX ABERTURA */

@media screen and (max-width: 768px) {
    main .banner-verao{
        display: none;
    }
}

/* MEDIA 768PX FECHAMENTO */

/* MEDIA 690PX ABERTURA */

@media screen and (max-width: 690px) {
    main .banner-verao{
        display: none;
    }
}

/* MEDIA 690PX FECHAMENTO */

/* MEDIA 430PX ABERTURA */

@media screen and (max-width: 690px) {
    main .banner-verao-desktop img{
        display: none;
    }
    main .banner-verao-mobile{
        display: block;
    }
    main .banner-verao{
        display: none;
    }
}

/* MEDIA 430PX FECHAMENTO */

main{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    
}
.container{
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    gap: 60px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.text{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.text h1{
    text-align: center;
    font-size: 30px;
    padding: 25px 0 0 0;
}
.pg-text{
    width: 90%;
}
.text p{
    width: auto;
    padding: 15px;
    text-align: justify;
}
.banner img{
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 5px rgb(226, 226, 226);
}
.banner-verao-mobile{
    display: none;
}
.grupo-de-cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.grupo-coluna{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.grupo-coluna button{
    margin-top: 15px;
    border: none;
    border-radius: 5px;
    border-bottom: 2px solid black;
    background-color: tomato;
    padding: 5px 10px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: white;
}
.grupo-coluna h1{
    text-align: center;
    padding: 25px;
}
.card-group{
    width: 250px;
    height: auto;
}

.sub-card-body{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.card-body p{
    font-size: 13px;
    font-weight: 400;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.card-body button{
    border: none;
    border-bottom: 2px solid rgb(0, 59, 68);
    border-radius: 5px;
    background-color: rgb(0, 123, 123);
    font-size: 14px;
    font-weight: 500;
    color: white;
    padding: 5px 10px;
}
.card-body button:hover{
    background-color: rgb(51, 146, 146);
    transition: 0.2s;
}
.banner-verao img{
    position: absolute;
    top: 500px;
    overflow: scroll;
    width: 100%;
    max-width: 300px;
    padding: 50px;
}

/* DESTINOS.HTML ABERTURA */



/* DESTINOS.HTML FECHAMENTO */

#main-contato{
    overflow: hidden;
}
form{
    background-image: url(../img/disney-background.jpg);
    background-size: cover;
    padding: 50px 100px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    margin: 40px 0;
}
form h2{
    color: white;
}
form .button-enviar{
    background-color: rgb(3, 70, 112);
    color: rgb(255, 255, 255);
    border: none;
    font-family: sans-serif;
}

textarea{
    resize: none;
}

.field{
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #DDD;
    border-radius: 5px;
    font-family: "Kanit",sans-serif;
    font-size: 16px;
}


