main{
    background-color: var(--bg1);
}

.banner{
    width: 100%;
    position: relative;
    align-items: center;
}
.banner-slider{
    width: 100%;
}
.banner-slider .banner-slide{
    width: 100%;
    position: relative;
}
.banner-slider .banner-slide picture,
.banner-slider .banner-slide picture img{
    width: 100%;
    height: fit-content;
    object-fit: contain;
    display: flex;
    position: relative;
}
.banner-slider .banner-slide picture::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
}
.banner-slider .banner-slide .absolute-container{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.banner-slider .banner-slide .absolute-container .container{
    display: flex;
}
.banner-slider .banner-slide .absolute-container .container .texto{
    max-width: 539px;
    width: 100%;
    gap: 25px;
}
.banner-slider .banner-slide .container{
    position: relative;
    height: 100%;
}
.banner-slider .banner-slide .container .img-1{
    width: 31%;
    object-fit: contain;
    position: absolute;
    left: 10%;
    top: 30%;
}
.banner-slider .banner-slide .container .img-2{
    width: 8%;
    object-fit: contain;
    position: absolute;
    right: 0;
    top: 7%;
}
.banner-slider.slick-dotted.slick-slider{
    margin-bottom: 0;
}
.banner-slider .slick-dots{
    bottom: 30px;
}
.banner-slider .slick-dots li button:before{
    font-size: 80px;
    color: #eee!important;
}
.banner-slider .slick-dots li.slick-active button:before{
    color: #fff!important;
}


.sobre{
    width: 100%;
    padding: 50px 0;
    position: relative;
    margin: 100px 0 0;
    background-color: var(--bg1);
}
.sobre::before{
    content: "";
    width: 50px;
    height: 100%;
    background-color: #E8E5D1;
    position: absolute;
    top: 0;
    left: 0;
}
.sobre::after{
    content: "";
    width: 100px;
    height: 100%;
    background-color: #E8E5D1;
    position: absolute;
    top: 0;
    right: 0;
}
.sobre .container{
    gap: 50px;
    justify-content: space-between;
    padding: 0 30px;
    position: relative;
    z-index: 5;
}
.sobre .texto{
    max-width: 690px;
    width: 100%;
    gap: 30px;
}
.sobre .texto h2 span{
    color: var(--cor-1);
}
.sobre .texto p{
    color: var(--cor-2);
}
.sobre .img{
    max-width: 550px;
    width: 100%;
    height: fit-content;
}
.sobre .img img{
    width: 100%;
    height: auto;
}


.salas{
    width: 100%;
    padding: 50px 0;
    gap: 50px;
}
.salas .titulo{
    width: 100%;
    padding: 0 30px;
}
.salas .titulo .sub{
    width: 90px;
    height: 5px;
    background-color: var(--cor-1);
    margin-bottom: 30px;
}
.salas .titulo h2 span{
    color: var(--cor-1);
}
.salas .salas-div {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-left: calc((100% - 1500px) / 2);
    box-sizing: border-box;
}
.salas .salas-div .arrow {
    position: absolute;
    z-index: 20;
    top: 50%;
    transform: translateY(-50%);
}
.salas .salas-div .arrow i {
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: 0.2s;
}
.salas .salas-div .salas-prev {
    left: calc((100% - 1460px) / 2);
}
.salas .salas-div .salas-next {
    right: 50px;
}
.salas .salas-div .salas-prev:disabled,
.salas .salas-div .salas-next:disabled {
    opacity: 0.4;
    cursor: default;
}
.salas .salas-div .salas-slider {
    display: flex;
    gap: 20px;
    transition: transform 450ms cubic-bezier(.2,.8,.2,1);
    will-change: transform;
    align-items: center;
    padding-bottom: 10px;
    box-sizing: content-box;
}
:root {
    --slide-base: 350px;
    --slide-height: 600px;
    --expand-mult: 2;
    --gap: 20px;
    --transition-time: 450ms;
    --transition-ease: cubic-bezier(.2,.8,.2,1);
}
.salas .salas-div .salas-slider .box {
    flex: 0 0 var(--slide-base);
    height: var(--slide-height);
    position: relative;
    box-sizing: border-box;
    border-radius: 25px;
    overflow: visible; 
    transition: flex-basis var(--transition-time) var(--transition-ease), 
                box-shadow var(--transition-time) var(--transition-ease);
}
.salas .salas-div .salas-slider .box.ativo {
    flex-basis: calc(var(--slide-base) * var(--expand-mult));
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.salas .salas-div .salas-slider .box .img {
    max-width: 380px;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}
.salas .salas-div .salas-slider .box .img::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.22);
    border-radius: 25px;
    z-index: 1;
}
.salas .salas-div .salas-slider .box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.salas .salas-div .salas-slider .box .img .txt {
    position: absolute;
    z-index: 3;
    top: 18px;
    left: 20px;
    padding-right: 10px;
    border-radius: 6px;
    color: #fff;
}
.salas .salas-div .salas-slider .box .img .txt h4,
.salas .salas-div .salas-slider .box .img .txt h5 {
    margin: 0;
    color: #fff;
}
.salas .salas-div .salas-slider .box .texto {
    position: absolute;
    top: 0;
    right: 0;
    width: 380px; 
    height: 100%;
    background-color: #E5E5E5;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    padding: 50px 25px;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: opacity 240ms ease, transform 240ms ease;
    overflow: auto;
    z-index: 5;
}
.salas .salas-div .salas-slider .box.ativo .texto {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}
.salas .salas-div .salas-slider .box .texto h4 {
    margin: 0 0 12px 0;
    font-family: 'Etelka Medium';
    color: var(--cor-1, #333);
}
.salas .salas-div .salas-slider .box .texto h5,
.salas .salas-div .salas-slider .box .texto ul li {
    color: var(--cor-2, #666);
}
.salas .salas-div .salas-slider .box .texto ul {
    margin-top: 18px;
    padding-left: 18px;
    list-style: inside;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.reservas{
    width: 100%;
    padding: 50px 0;
}
.reservas .container{
    gap: 50px;
    padding: 0 30px;
}
.reservas .titulo{
    width: 100%;
    gap: 75px;
    align-items: center;
}
.reservas .titulo h3{
    color: var(--cor-1);
    position: relative;
}
.reservas .titulo h3::before{
    display: flex;
    content: "";
    width: 90px;
    height: 5px;
    background-color: var(--cor-1);
    margin-bottom: 10px;
}
.reservas .titulo .txt-2{
    color: var(--cor-2);
}
.reservas .form{
    width: 100%;
    gap: 30px;
}
.reservas .form .inputs{
    width: 100%;
    gap: 30px;
}
.reservas .form label{
    width: 100%;
    align-self: baseline;
    gap: 10px;
}
.reservas .form label .txt-1{
    width: 100%;
    color: var(--cor-2);
    padding: 0 20px;
}
.reservas .form label .txt-2{
    color: var(--cor-2);
    margin-left: auto;
    text-align: center;
    font-size: 14px;
}
.reservas .form label select,
.reservas .form label input{
    width: 100%;
    height: 50px;
    background-color: #EAEAEA;
    padding: 0 20px;
}
.reservas .form label p{
    text-align: end;
    margin-left: auto;
    font-size: 14px;
    color: var(--cor-2);
}
.reservas .form .txt-2{
    color: var(--cor-2);
    margin-left: auto;
    text-align: center;
    font-size: 14px;
    margin-top: -20px;
}
.reservas .form button{
    margin-left: auto;
    max-width: 172px;
    width: 100%;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 15px;
    border-radius: 10px;
    background-color: var(--cor-1);
    color: #fff;
}


.acesso{
    width: 100%;
    background-color: var(--bg3);
}
.acesso .conteudo-1{
    width: 100%;
    gap: 150px;
    position: relative;
    padding-left: calc((100% - 1460px) / 2);
    padding-top: 100px;
    padding-bottom: 50px;
    justify-content: space-between;
}
.acesso .conteudo-1::before{
    content: "";
    position: absolute;
    top: 0;
    left: calc((100% - 1460px) / 2);
    max-width: 535px;
    width: 100%;
    height: 46px;
    background-color: #EAE0D8;
}
.acesso .conteudo-1 .texto{
    max-width: 535px;
    width: 100%;
    padding: 0 30px;
    align-self: center;
}
.acesso .conteudo-1 .texto .sub{
    display: flex;
    width: 90px;
    height: 5px;
    background-color: var(--cor-1);
    margin-bottom: 15px;
}
.acesso .conteudo-1 .texto h2 span{
    color: var(--cor-1);
}
.acesso .conteudo-1 .texto p{
    color: var(--cor-2);
    margin-top: 40px;
}
.acesso .conteudo-1 .acesso-div{
    max-width: calc(100% - 150px - 535px);
    width: 100%;
    gap: 50px;
    position: relative;
}
.acesso .conteudo-1 .acesso-div .arrow{
    height: fit-content;
    margin-top: 20%;
}
.acesso .conteudo-1 .acesso-div .arrow i{
    font-size: 35px;
    color: var(--cor-2);
}
.acesso .conteudo-1 .acesso-div .acesso-next{
    position: absolute;
    right: 20%;
}
.acesso .conteudo-1 .acesso-div .acesso-slider{
    max-width: calc(100% - 50px - 27px);
    width: 100%;
}
.acesso .conteudo-1 .acesso-div .acesso-slider .slick-list{
    padding: 0 30% 0 0!important;
}
.acesso .conteudo-1 .acesso-div .acesso-slider .slick-current .box,
.acesso .conteudo-1 .acesso-div .acesso-slider .slick-current .box h5,
.acesso .conteudo-1 .acesso-div .acesso-slider .slick-current .box p{
    opacity: 1;
    transition: ease .3s;
}
.acesso .conteudo-1 .acesso-div .acesso-slider .box{
    width: 95%;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    gap: 15px;
    opacity: 0.6;
}
.acesso .conteudo-1 .acesso-div .acesso-slider .box h5,
.acesso .conteudo-1 .acesso-div .acesso-slider .box p{
    opacity: 0;
    transition: ease .3s;
}
.acesso .conteudo-1 .acesso-div .acesso-slider .box p{
    font-size: 14px;
    line-height: 2;
    color: var(--cor-2);
    padding: 0 30px;
}
.acesso .conteudo-1 .acesso-div .acesso-slider .box .img{
    width: 100%;
}
.acesso .conteudo-1 .acesso-div .acesso-slider .box .img img{
    width: 100%;
}
.acesso .conteudo-2{
    width: 100%;
}
.acesso .conteudo-2 .container{
    gap: 100px;
}
.acesso .conteudo-2 .texto{
    max-width: 535px;
    width: 100%;
    padding: 70px;
    background-color: var(--cor-1);
}
.acesso .conteudo-2 .texto p{
    color: #fff;
}
.acesso .conteudo-2 .informacoes{
    align-items: center;
    max-width: calc(100% - 100px - 535px);
    width: 100%;
    /* padding: 50px 0; */
    justify-content: space-between;
    gap: 30px;
}
.acesso .conteudo-2 .informacoes .info{
    max-width: 250px;
    width: 100%;
    gap: 5px;
    color: var(--cor-2);
}
/* .acesso .conteudo-2 .informacoes .info h6{
    font-family: 'Etelka Medium';
} */
.acesso .conteudo-2 .informacoes .info .div{
    display: flex;
    width: 100%;
    height: 2px;
    background-color: var(--cor-1);
}
.acesso .conteudo-2 .informacoes .info ul{
    padding-top: 10px;
}


.trajetoria{
    width: 100%;
    padding: 100px 0;
    background-color: #fff;
    gap: 50px;
}
.trajetoria .titulo{
    width: 100%;
}
.trajetoria .titulo .sub{
    display: flex;
    width: 90px;
    height: 5px;
    background-color: var(--cor-1);
    margin-bottom: 15px;
}
.trajetoria .titulo h2 span{
    color: var(--cor-1);
}
.trajetoria .linha-tempo {
    padding-left: calc((100% - 1460px) / 2);
    padding-right: 50px;
    width: 100%;
    display: flex;
    gap: 100px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;   /* IE/Edge */
    scrollbar-width: none;      /* Firefox */
}
.trajetoria .linha-tempo .box{
    flex: 0 0 310px;
    width: 310px;
    text-align: center;
    gap: 10px;
}
.trajetoria .linha-tempo .box .sub{
    display: flex;
    width: 90px;
    height: 5px;
    background-color: var(--cor-1);
    margin: 0 auto 40px;
}
.trajetoria .linha-tempo .box h3{
    color: var(--cor-2);
}
.trajetoria .linha-tempo .box p{
    color: var(--cor-2);
    margin-bottom: 100px;
}
.trajetoria .linha-tempo .box .img{
    width: 100%;
    gap: 10px;
    justify-content: center;
    margin-top: auto;
}
.trajetoria .linha-tempo .box .img img{
    max-width: 84px;
    max-height: 84px;
    width: fit-content;
    height: fit-content;
}
.trajetoria .linha-tempo::-webkit-scrollbar { display: none; height: 0; }
/* custom scrollbar (o input range que será gerado por JS) */
.custom-scrollbar {
    max-width: 500px;
    width: 100%;               /* largura fixa da "janela de rolagem" */
    margin: 12px auto 0;        /* centralizado por padrão */
    display: flex;
    align-items: center;
    height: 18px;
}
/* estilização do range (track + thumb) */
.custom-scrollbar input[type="range"]{
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
    cursor: pointer;
    height: 8px;
}
/* webkit track */
.custom-scrollbar input[type="range"]::-webkit-slider-runnable-track{
    height: 8px;
    background: rgba(0,0,0,0.08);
    border-radius: 4px;
}
.custom-scrollbar input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 12px;
    margin-top: -2px;
    border-radius: 6px;
    background: #999;
}
/* Firefox */
.custom-scrollbar input[type="range"]::-moz-range-track{
    height: 8px;
    background: rgba(0,0,0,0.08);
    border-radius: 4px;
}
.custom-scrollbar input[type="range"]::-moz-range-thumb{
    width: 28px;
    height: 12px;
    border-radius: 6px;
    background: #999;
    border: none;
    }
/* estado quando não há overflow (desabilitado) */
.custom-scrollbar.disabled{ opacity: .45; pointer-events: none; }


.diferenciais{
    width: 100%;
    padding: 100px 0;
    background-image: url(../imagens/home/img3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.diferenciais .container{
    gap: 75px;
    position: relative;
    padding-top: 30px;
}
.diferenciais .container::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 5px;
    background-color: #fff;
}
.diferenciais .texto{
    max-width: 600px;
    gap: 5px;
}
.diferenciais .texto h3,
.diferenciais .texto a{
    color: #fff;
    width: fit-content;
}
.diferenciais .texto a{
    border-bottom: 1px solid #fff0;
    transition: border .3s;
}
.diferenciais .texto a:hover{
    border-bottom: 1px solid #fff;
    transition: border .3s;
}


.faq{
    width: 100%;
    padding: 100px 0 50px;
    background-color: var(--bg4);
}
.faq .titulo{
    width: 100%;
}
.faq .titulo .sub{
    display: flex;
    width: 90px;
    height: 5px;
    background-color: var(--cor-1);
    margin-bottom: 15px;
}
.faq .titulo h2 span{
    color: var(--cor-1);
}
.faq .infos{
    width: 100%;
    gap: 50px;
    margin-top: 30px;
    list-style: inside;
}
.faq .infos li{
    width: calc(100% - 80% - 40px);
    display: flex;
    gap: 10px;
    line-height: 1.5;
}
.faq .infos li i{
    font-size: 8px;
    color: var(--cor-1);
    margin-top: 5px;
}
.faq .conteudo{
    width: 100%;
    position: relative;
    margin-top: 50px;
}
.faq .conteudo h3 span{
    color: var(--cor-1);
}
.faq .conteudo p{
    color: var(--cor-2);
    font-size: 22px;
}
.faq .conteudo .seta{
    position: absolute;
    right: 0;
    top: 0;
}
.faq .conteudo .seta i{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 20px;
    background-color: #fff;
}


.formulario{
    width: 100%;
    min-height: 700px;
    padding: 100px 0;
    background-image: url(../imagens/home/img44.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}
.formulario .container{
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}
.formulario .img{
    max-width: 455px;
    width: 100%;
    height: fit-content;
    align-items: center;
}
.formulario .img img{
    width: 100%;
    height: auto;
}
.formulario .form{
    max-width: 800px;
    width: 100%;
}
.formulario .form .accordion {
    width: 100%;
}
.formulario .form .accordion-item {
    width: 100%;
}
.formulario .form .accordion-header {
    width: 100%;
    cursor: pointer;
    padding: 5px 15px;
    color: #BFA990;
    position: relative;
}
.formulario .form .accordion-header::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free"; 
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}
.formulario .form .accordion-item.active .accordion-header::after {
    transform: rotate(-180deg);
}
.formulario .form .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 15px;
}
.formulario .form .accordion-item.active .accordion-body {
    max-height: 600px;
    padding: 15px;
}
.formulario .form .accordion-body form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.formulario .form .accordion-body input,
.formulario .form .accordion-body select,
.formulario .form .accordion-body textarea {
    width: 100%;
    height: 70px;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    color: #fff;
}
.formulario .form .accordion-body select option{
    color: #000;
}
.formulario .form .accordion-body input::placeholder,
.formulario .form .accordion-body textarea::placeholder{
    color: #fff;
}
.formulario .form .accordion-body button {
    background: var(--cor-1);
    border: none;
    padding: 10px 30px;
    color: #fff;
    margin-top: 10px;
}
.formulario .form .accordion-body .file{
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 70px;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    color: #fff;
}
.formulario .form .accordion-body .file input[type="file"] {
    display: none;
}
.formulario .form .accordion-body .file label {
    width: 100%;
    height: 70px;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    z-index: 2;
}
.formulario .form .accordion-body .file label.remove{
    display: none!important;
}
.formulario .form .accordion-body .file p{
     width: 100%;
    height: 70px;
    padding: 10px;
    border: none;
    /* border-bottom: 1px solid #fff; */
    background: transparent;
    color: #fff;
    display: flex;
    z-index: 1;
    align-items: center;
    position: absolute;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    margin-bottom: 0;
}
.formulario .form .accordion-body .file .ativo{
    z-index: 10;
}
.formulario .form .accordion-body .file label.remove {
    display: none !important;
}
.formulario .form .accordion-body .file #remover-arquivo {
    position: absolute;
    right: 10px;
    background: #fff0;
    border: none;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    display: none; /* escondido inicialmente */
    z-index: 11;
    transition: transform .3s;
}
.formulario .form .accordion-body .file #remover-arquivo.mostrar {
    display: block;
}



.modais{
    position: relative; 
    z-index: 999;     
}
.modais .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; 
    top: 0;
    width: 100%; 
    height: 100%;
}
.modais .modal .modal-content {
    background: #fff;
    max-width: 100%;
    width: 100%;
    height: 100%;
    overflow: auto;
    position: relative;
    align-content: baseline;
    gap: 50px;
}
.modais .modal .modal-content .topo{
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    margin-top: 10px;
    background-color: var(--cor-1);
    padding: 0 5%;
}
.modais .modal .modal-content .topo .fechar{
    margin-left: auto;
}
.modais .modal .modal-content .topo .fechar i{
    font-size: 25px;
    color: #fff;
}
.modais .modal .modal-content .conteudo{
    width: 100%;
    padding-bottom: 50px;
}
.modais .modal .modal-content .conteudo .texto{
    width: 50%;
    padding: 0 5%;
    gap: 50px;
}
.modais .modal .modal-content .conteudo .texto .titulo{
    width: 100%;
}
.modais .modal .modal-content .conteudo .texto .titulo .sub{
    display: flex;
    width: 90px;
    height: 5px;
    background-color: var(--cor-1);
    margin-bottom: 15px;
}
.modais .modal .modal-content .conteudo .texto .titulo h2 span{
    color: var(--cor-1);
}
.modais .modal .modal-content .conteudo .texto .editor *{
    color: var(--cor-2);
}
.modais .modal .modal-content .conteudo .texto .editor ul{
    list-style: inside;
}
.modais .modal .modal-content .conteudo .texto .editor ol{
    list-style-position: inside;
}
.modais .modal .modal-content .conteudo .img{
    width: 50%;
    height: fit-content;
}
.modais .modal .modal-content .conteudo .img img{
    width: 100%;
    height: auto;
    object-fit: contain;
}


#faq-1.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; 
    top: 0;
    width: 100%; 
    height: 100%;
}
#faq-1.modal .modal-content {
    background: #fff;
    max-width: 100%;
    width: 100%;
    height: 100%;
    overflow: auto;
    position: relative;
    align-content: baseline;
}
#faq-1.modal .modal-content .topo{
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    margin-top: 10px;
    background-color: var(--cor-1);
    padding: 0 5%;
}
#faq-1.modal .modal-content .topo .fechar{
    margin-left: auto;
}
#faq-1.modal .modal-content .topo .fechar i{
    font-size: 25px;
    color: #fff;
}
#faq-1.modal .modal-content .conteudo{
    width: 100%;
    margin: 50px;
}
#faq-1.modal .modal-content .conteudo .fixo{
    width: 100%;
    position: relative;
    background-color: var(--bg4);
    padding: 20px 10%;
}
#faq-1.modal .modal-content .conteudo .fixo h3 span{
    color: var(--cor-1);
}
#faq-1.modal .modal-content .conteudo .fixo p{
    color: var(--cor-2);
}
#faq-1.modal .modal-content .conteudo .fixo .seta{
    position: absolute;
    right: 10%;
    top: 5px;
}
#faq-1.modal .modal-content .conteudo .fixo .seta i{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 20px;
    background-color: #fff;
}
#faq-1.modal .modal-content .conteudo .faq-content{
    width: 100%;
}
#faq-1.modal .modal-content .conteudo .faq-content .duvida{
    width: 100%;
    padding: 20px 10%;
    gap: 5px;
}
#faq-1.modal .modal-content .conteudo .faq-content .duvida:nth-child(odd){
    background-color: #dadada;
}
#faq-1.modal .modal-content .conteudo .faq-content .duvida:nth-child(even){
    background-color: #c1c1c1;
}
#faq-1.modal .modal-content .conteudo .faq-content .duvida span{
    font-weight: 700;
}


/* MEDIA DESKTOP */
@media screen and (max-width: 1600px){
    .salas .salas-div,
    .trajetoria .linha-tempo,
    .acesso .conteudo-1{
        padding-left: 5%;
    }

    .salas .salas-div .salas-prev{
        left: 5%;
    }

    .acesso .conteudo-1,
    .acesso .conteudo-2 .container{
        gap: 50px;
    }
    .acesso .conteudo-1 .acesso-div{
        max-width: calc(100% - 50px - 535px);
    }
    .acesso .conteudo-2 .texto{
        padding: 50px;
    }
}

@media screen and (max-width: 1440px){
    
}

@media screen and (max-width: 1366px){

}

@media screen and (max-width: 1280px){
    .acesso .conteudo-1 .texto{
        max-width: 470px;
    }
    .acesso .conteudo-1 .acesso-div{
        max-width: calc(100% - 50px - 470px);
    }
}

@media screen and (max-width: 1200px){

}

@media screen and (max-width: 1100px){
    .sobre .container{
        flex-direction: column;
        align-items: center;
    }

    .acesso .conteudo-1,
    .acesso .conteudo-2 .container{
        flex-direction: column;
        align-items: center;
    }
    .acesso .conteudo-1 .texto{
        max-width: 800px;
        width: 100%;
        padding:  0 5% 0 0;
    }
    .acesso .conteudo-1 .acesso-div{
        max-width: 100%;
        width: 100%;
    }

    .acesso .conteudo-2{
        padding-bottom: 50px;
    }
    .acesso .conteudo-2 .texto,
    .acesso .conteudo-2 .informacoes{
        max-width: 800px;
    }


    .faq .infos{
        flex-wrap: wrap;
        justify-content: center;
    }
    .faq .infos li{
        max-width: 250px;
        width: 100%;
    }

    .formulario .container{
        flex-direction: column;
        align-items: center;
    }
}

/* MOBILE */
@media screen and (max-width: 1000px){
    .salas .salas-div .salas-slider .box.ativo{
        flex: 0 0 74vw;
        width: 74vw;
    }
    .salas .salas-div .salas-slider .box .img{
        width: 37vw;
    }
    .salas .salas-div .salas-slider .box .texto{
        width: 40vw;
        padding: 25px 10px;
    }

    .trajetoria .linha-tempo{
        padding: 0 5%;
        gap: 50px;
    }

    .reservas .form .inputs{
        width: 100%;
        gap: 15px;
    }


    .sobre::before,
    .sobre::after,
    .acesso .conteudo-1::before{
        display: none;
    }
}

@media screen and (max-width: 800px){
    .acesso .conteudo-2 .container{
        max-width: 100%;
    }
    .acesso .conteudo-2 .texto, 
    .acesso .conteudo-2 .informacoes{
        padding-left: 5%;
        padding-right: 5%;
    }

    .reservas .titulo{
        flex-direction: column;
        gap: 30px;
    }

    .modais .modal .modal-content{
        gap: 0;
    }
    .modais .modal .modal-content .topo,
    #faq-1.modal .modal-content .topo{
        margin-top: 0;
    }
    .modais .modal .modal-content .conteudo{
        flex-direction: column;
        gap: 30px;
    }
    .modais .modal .modal-content .conteudo .texto{
        width: 100%;
        order: 1;
    }
    .modais .modal .modal-content .conteudo .img{
        width: 100%;
        order: 0;
    }

    .reservas .form .inputs{
        flex-direction: column;
    }

    #faq-1.modal .modal-content .conteudo{
        margin: 0;
    }
    #faq-1.modal .modal-content .conteudo .fixo,
    #faq-1.modal .modal-content .conteudo .faq-content .duvida{
        padding: 20px 5%;
    }

}

@media screen and (max-width: 600px){
    .custom-scrollbar{
        max-width: 90%;
    }

    .sobre .container{
        overflow: hidden;
        max-width: 100%;
        padding: 0 5%;
    }
    .sobre .img{
        position: absolute;
        left: 84vw;
        top: -35px;
    }

    .acesso .conteudo-1{
        padding: 50px 5% 0;
    }
    .acesso .conteudo-1 .texto{
        padding: 0;
    }
    .acesso .conteudo-1 .acesso-div{
        gap: 10px;
        padding: 0 0 30px;
    }
    .acesso .conteudo-1 .acesso-div .acesso-slider{
        max-width: calc(100% - 10px - 27px - 25px);
    }
    .acesso .conteudo-1 .acesso-div .acesso-next,
    .acesso .conteudo-1 .acesso-div .acesso-prev{
        position: relative;
        right: unset;
    }
    .acesso .conteudo-1 .acesso-div .acesso-slider .slick-list{
        padding: unset!important;
    }
    .acesso .conteudo-1 .acesso-div .acesso-slider .box p{
        padding: 0;
    }

    .salas .salas-div .salas-slider .box .img .txt{
        padding: 20px 10px;
    }

    .faq .infos li{
        width: 200px;
    }

    .salas .titulo,
    .reservas .container{
        padding: 0;
    }
    .reservas .form{
        flex-direction: column;
    }
    .reservas .form label{
        width: 100%;
    }
    .reservas .form button{
        margin: 0 auto;
    }

    .salas .salas-div .salas-slider .box .texto ul{
        padding-left: 0;
    }
    .salas .salas-div .salas-slider .box .img .txt{
        left: 0;
    }

    .salas .salas-div .salas-next{
        right: 10px;
    }
}

@media screen and (max-width: 400px){
    .trajetoria .linha-tempo .box{
        flex: 0 0 250px;
        width: 250px;
        gap: 30px;
    }

    .acesso .conteudo-2 .informacoes{
        flex-direction: column;
    }

    .salas .salas-div .salas-slider .box .img {
        width: 60vw;
    }
    .salas .salas-div .salas-slider .box.ativo {
        flex: 0 0 80vw;
        width: 80vw;
    }
    .salas .salas-div .salas-slider .box .texto {
        width: 50vw;
    }
    .salas .salas-div .salas-slider .box .img .txt h4,
    .salas .salas-div .salas-slider .box .texto h4{
        font-size: 20px;
    }
    .salas .salas-div .salas-slider .box .texto ul li{
        font-size: 14px;
    }
    .salas .salas-div .salas-slider .box .img .txt{
        width: 40vw;
    }
}

@media screen and (max-width: 375px){

}
