
/* MEDIA 834PX ABERTURA */

@media screen and (max-width: 834px) {
    section .img-desktop{
        display: none;
    }
    section .img-mobile{
        display: block;
    }
    section .nav-auto,section .nav-manual{
        margin-top: 33%;
    }
    section .banner-destino-mobile{
        display: block;
    }
    section .banner-destino-desktop{
        display: none;
    }
    section .banner-destino img{
        max-width: 90%;
    }
}



 /* INDEX.HTML ABERTURA */

.slider{
    margin-top: 130px;
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding: 0 !important;
    overflow: hidden;
}

.slider-content{
    margin-top: 100px;
    width: 400%;
    height: auto;
    display: flex;
}
.slider-content input, .img-mobile{
    display: none;
}
.slide-box{
    width: 25%;
    height: auto;
    position: relative;
    text-align: center;
    transition: 1s;
}
.slide-box img{
    width: 100%;
}
.nav-manual, .nav-auto{
    position: absolute;
    width: 100%;
    margin-top: 20%;
    display: flex;
    justify-content: center;
}
.nav-manual .manual-btn, .nav-auto div{
    border: 1px solid white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: .2s;
}
.nav-manual .manual-btn:not(:last-child), .nav-auto div:not(:last-child){
    margin-right: 10px;
}
.nav-manual .manual-btn:hover{
    background-color: white;
}

#radio1:checked ~ .nav-auto .auto-btn1, #radio2:checked ~ .nav-auto .auto-btn2, #radio3:checked ~ .nav-auto .auto-btn3 {
    background-color: white;
}

#radio1:checked ~ .primeiro{
    margin-left: 0%;
}
#radio2:checked ~ .primeiro{
    margin-left: -25%;
}
#radio3:checked ~ .primeiro{
    margin-left: -50%;
}
/* INDEX.HTML FECHAMENTO */

/* DESTINOS.HTML ABERTURA */

.banner-destino{
    margin-top: 130px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.banner-destino img{
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
}
.modal-content{
    margin-top: 100px;
    width: 50%;
    height: 50%;
}

.card-img-top{
    cursor: pointer;
}
.sub-card-body h6{
    font-size: 12px;
    font-family: "Inter",sans-serif;
    font-weight: 600;
}
.banner-destino-mobile{
    display: none;
}

/* DESTINOS.HTML FECHAMENTO */