:root {

    --color-primary: #F5873A;

    --color-secundary: #3A3463;

    --color-tertiary: #F7743D;

    --color-white: #fff;

    --main-font: 'ReeyRegular', sans-serif;

    --extra-Medium-font: 'FiraSansMedium', sans-serif;

    --dm-sans-font: 'DM Sans', sans-serif;

}



@font-face {

    font-family: 'ReeyRegular';

    src: url('assets/fonts/Reey-Regular.otf') format('opentype');

    font-weight: normal;

    font-style: normal;

}



@font-face {

    font-family: 'FiraSansMedium';

    src: url('../assets/fonts/FiraSans-Medium.ttf') format('truetype');

    font-weight: normal;

    /* Defina o peso da fonte conforme necessário */

    font-style: normal;

    /* Defina o estilo da fonte conforme necessário */

}



@font-face {

    font-family: 'DM Sans';

    src: url('../assets/fonts/DMSans-Regular.otf') format('opentype');

    font-weight: normal;

    /* Defina o peso da fonte conforme necessário */

    font-style: normal;

    /* Defina o estilo da fonte conforme necessário */

}



* {

    padding: 0;

    margin: 0;

    font-family: var(--dm-sans-font);

}



.no-scroll {

    overflow: hidden;

}





/*LOADER*/

#loader-container {

    position: fixed;

    top: 0;

    left: 0;

    height: 100%;

    width: 100%;

    background: #FFF;

    z-index: 9;

}



#loader {

    position: fixed;

    left: 50%;

    top: 50%;

    width: 50px;

    height: 50px;

    border: 5px solid #f3f3f3;

    border-top: 5px solid #3498db;

    border-radius: 50%;

    animation: spin 1s linear infinite;

    margin-left: -25px; /* metade da largura */

    margin-top: -25px;  /* metade da altura */

}



@keyframes spin {

    0% { transform: rotate(0deg); }

    100% { transform: rotate(360deg); }

}



#content {

    display: none; /* O conteúdo só aparecerá depois do carregamento */

}





/* CAPA SLIDER */



.main-slider {

    /* position: relative; */

    overflow: hidden;

    height: 75vh;

}



.image-layer-overlay {

    position: absolute;

    width: 100%;

    height: 75vh;

    background-color: rgba(49, 48, 65, 0);

    /* background-color: rgba(49, 48, 65, .7); */

    z-index: 1;

    overflow: hidden;

}



.image-layer-overlay .container-text {

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    width: 100%;

    height: 100%;

}



.image-layer-overlay .container-text h1 {

    font-family: var(--main-font);

    font-size: 80px;

    font-weight: normal;

    color: var(--color-primary);

}



.image-layer-overlay .container-text p {

    font-family: var(--extra-Medium-font);

    font-size: 40px;

    color: var(--color-white);

}



.image-layer {

    position: relative;

    background-image: url(assets/image/main-slider.jpg);

    background-repeat: no-repeat;

    background-size: cover;

    background-position: 50%;

    transform-origin: top center;

    animation: scaleAnimation 15s linear forwards;

    height: 75vh;

}



@keyframes scaleAnimation {

    0% {

        transform: scale(1);

    }



    100% {

        transform: scale(1.1);

    }

}



@media (max-width: 701px) {

    .image-layer-overlay .container-text h1 {

        font-size: 40px;

    }

    .image-layer-overlay .container-text p {

        font-size: 20px;

    }



}



/*  BARRA TOPO  */



.barra-top {

    background-color: var(--color-secundary);

}



.barra-top .container {

    max-width: 1200px;

    margin: 0 auto;

}



.barra-top .header-top-left ul,

.barra-top .header-top-right {

    display: flex;

    gap: 30px;

}



.barra-top .header-top-right .botao-guia {

    display: block;

    background-color: #f5873a;

}



.barra-top .header-top-right ul {

    display: flex;

    gap: 20px;

}



.barra-top ul li {

    display: flex;

    align-items: center;

}



.barra-top a {

    display: flex;

    font-family: var(--dm-sans-font);

    font-size: 13px;

    text-decoration: none;

    color: #a9a8b6;

    transition: all .2s linear;

}



.barra-top a:hover {

    color: var(--color-white);

    transition: all .2s linear;

}



.barra-top .text {

    padding-left: 5px;

}



.barra-top span {

    display: flex;

    align-items: center;

}



.barra-top .icon img {

    max-width: 17px;

}



.header-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-left: 10px;

}



.barra-top .header-top-right svg {

    fill: #fff;

    transition: all .2s linear;

}



.barra-top .header-top-right svg:hover {

    fill: var(--color-primary);

    transition: all .2s linear;

}



.button {

    display: block;

    color: red;

    padding: 13px;

    text-decoration: none;

    position: relative;

    overflow: hidden;

    z-index: 99999999999999999999;

}



.button span {

    position: relative;

    color: #fff;

    z-index: 999999;

    transition: all .5s linear;

}



.button:hover span {

    text-shadow: 0px 0px 5px #fff;

    transition: all .3s linear;

}



.button::before {

    content: '';

    background-color: #fd7513;

    width: 0;

    height: 0;

    position: absolute;

    top: var(--eixoY);

    left: var(--eixoX);

    transform: translate(-50%, -50%);

    transition: width 1s, height .5s;

}



.button:hover::before {

    width: 1000px;

    height: 1000px;

}



@media (max-width: 701px) {

    .header-top {

        display: none;

    }

}



/*

*

*

*

*   NAVBAR

*

*

*/



nav {

    /* position: absolute;

    z-index: 99; */

    width: 100%;

    background: #ffffff;

    border-bottom: 4px solid var(--color-secundary);

}



nav .wrapper {

    position: relative;

    max-width: 1300px;

    padding: 0px 30px;

    height: 100px;

    /* line-height: 70px; */

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-around;

}



.dados-contato-mobile, 

.rede-social-mobile {

    display: none;

}



#main-nav-show {

    position: fixed;

    display: block;

    top: -104px;

}



.sticky {

    top: 0 !important;

    z-index: 2;

    transition: all .5s linear !important;

}



.wrapper .logo a {

    display: flex;

    align-items: center;

}



.telefonesContato {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

}



.telefonesContatoMobile {

    display: none;

}



.itemContato {

    display: flex;

    align-items: center;

    gap: 10px;

}



.itemContato span {

    font-size: 15px;

}



.itemContato a {

    text-decoration: none;

    font-size: 20px;

    color: #129b10;

    /* font-family: "Exo", sans-serif; */

    font-weight: bold;

}



.itemContato img {

    width: 18px;

    height: 18px;

}



.logo img {

    width: 150px;

}



.logoMenuMobile {

    display: none;

}



.wrapper .nav-links {

    display: inline-flex;

    gap: 30px;

}



.nav-links li {

    list-style: none;

}



.nav-links li a {

    color: #0000008c;

    text-decoration: none;

    font-size: 16px;

    font-weight: 600;

    padding: 10px 0;

    /* padding: 9px 15px; */

    transition: all 0.3s ease;

    position: relative;

}



.nav-links li a:hover {

    color: var(--color-secundary);

}



.nav-links li a::after {

    content: " ";

    width: 0%;

    height: 4px;

    border-radius: 10px;

    background-color: var(--color-primary);

    position: absolute;

    bottom: 0;

    left: 100%;

    /* Começa da direita */

    transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), left 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

}



.nav-links li a:hover::after {

    width: 100%;

    /* Preenche até a esquerda */

    left: 0;

    /* Termina na esquerda */

}



.nav-links .mobile-item {

    display: none;

}



.wrapper .btn {

    color: #fff;

    font-size: 20px;

    cursor: pointer;

    display: none;

}



.wrapper .btn.close-btn {

    position: absolute;

    right: 30px;

    top: 20px;

    color: #129b10;

}



nav input {

    display: none;

}



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

    nav {

        position: relative;

    }



    nav .wrapper {

        justify-content: space-between;

        height: 80px;

    }



    .wrapper .btn {

        display: flex;

    }



    .wrapper .nav-links {

        position: fixed;

        height: 100vh;

        width: 75%;

        max-width: 350px;

        top: 0;

        left: -100%;

        background: #fff;

        display: block;

        padding: 50px 10px;

        line-height: 40px;

        overflow-y: auto;

        /* box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18); */

        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);

        transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);

        z-index: 3;

        margin: 0;

    }



    /* custom scroll bar */

    ::-webkit-scrollbar {

        width: 10px;

    }



    ::-webkit-scrollbar-track {

        background: #242526;

    }



    ::-webkit-scrollbar-thumb {

        background: #3A3B3C;

    }



    .dados-contato-mobile {

        display: flex;

        align-items: center;

        gap: 5px;

    }



    .dados-contato-mobile span {

        font-size: 14px;

    }



    .icon-contato-mobile {

        display: block;

        display: flex;

        justify-content: center;

        align-items: center;

        background: var(--color-primary);

        width: 30px;

        height: 30px;

        /* margin-top: 10px; */

        border-radius: 40px;

        margin-left: 15px;

    }



    .rede-social-mobile {

        display: flex;

        margin-top: 20px;

        margin-left: 15px;

        gap: 20px;

    }



    .rede-social-mobile svg {

        /* fill: var(--color-primary); */

        transition: all .2s linear;

        animation: colorDegrade 2s linear infinite;

    }



    @keyframes colorDegrade {

        0% {

            fill: var(--color-primary);

        }



        50% {

            fill: var(--color-tertiary);

        }



        100% {

            fill: var(--color-primary);

        }

    }



    .rede-social-mobile svg:hover {

        fill: var(--color-secundary);

        transition: all .2s linear;

    }



    #menu-btn:checked~.nav-links,

    #menu-btn2:checked~.nav-links {

        left: 0%;

    }



    #menu-btn:checked~.btn.menu-btn,

    #menu-btn2:checked~.btn.menu-btn {

        display: none;

    }



    /* #close-btn:checked~.btn.menu-btn {

        display: block;

    } */



    .logoMenuMobile {

        display: flex;

        justify-content: center;

        padding-bottom: 30px;

        border-bottom: 1px solid rgb(224, 224, 224);

    }



    .telefonesContato {

        display: none;

    }



    .nav-links li {

        margin: 10px 0;

    }



    .nav-links li a {

        padding: 0 10px;

        display: block;

        font-size: 14px;

        border-left: 4px solid transparent;

    }



    .nav-links li a:hover,

    .mobile-item:hover {

        border-left: 4px solid var(--color-primary);

    }



    .nav-links li a:hover::after {

        width: 0%;

    }



    .nav-links .drop-menu {

        position: static;

        opacity: 1;

        top: 65px;

        visibility: visible;

        padding-left: 20px;

        width: 100%;

        max-height: 0px;

        overflow: hidden;

        box-shadow: none;

        transition: all 0.3s ease;

    }

}



@media (max-width: 600px) {

    .logo {

        max-width: 150px;

    }

}



/*

*

*

*   SERVICOS

*

*

*/



.servicos {

    padding: 50px 10px;

}



.servicos .container {

    max-width: 1200px;

    margin: 0 auto;

}



.servicos .icon-servico {

    display: flex;

    justify-content: center;

    align-items: center;

    width: 70px;

    height: 70px;

    background-color: #fff;

    border-radius: 50%;

}



.servicos .servico-itens {

    display: flex;

    flex-wrap: wrap;

    box-sizing: border-box;

}



.servicos .item {

    width: 25%;

}



.servicos .conteudo {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: space-evenly;

    /* gap: 20px; */

    margin: 10px;

    padding: 15px;

    background-color: var(--color-tertiary);

    border-radius: 10px;

    height: 300px;

}



.servicos .titulo-servico {

    color: #fff;

    font-size: 16px;

    font-weight: bold;

    text-align: center;

}



.servicos .descricao-servico {

    text-align: center;

    color: #fff;

    font-weight: 100;

    font-size: 15px;

    font-style: italic;

    height: 100px;

    display: flex;

    align-items: center;

}



.servicos .saiba-mais {

    text-align: center;

}



.servicos .saiba-mais a {

    color: #fff;

    /* text-decoration: none; */

}



.servicos .titulo {

    margin-bottom: 50px;

}



.servicos .titulo h3 {

    font-family: var(--main-font);

    color: var(--color-primary);

    text-align: center;

    font-weight: 100;

}



.servicos .titulo h1 {

    font-family: var(--extra-Medium-font);

    color: var(--color-secundary);

    text-align: center;

    font-size: 3.5rem;

    margin-top: 20px;

}



@media (max-width: 950px) {

    .servicos .item {

        width: 50%;

    }

}



@media (max-width: 800px) {

    .servicos .item {

        width: 50%;

    }

}



@media (max-width: 600px) {

    .servicos {

        padding: 0px 10px;

    }



    .servicos .item {

        width: 100%;

    }



    .servicos .titulo h1 {

        font-size: 1.75rem;

    }

}





/*

*

*

*   DESTINOS

*

*

*/



.destinos {

    padding: 50px 10px;

}



.destinos .container {

    display: flex;

    flex-wrap: wrap;

    max-width: 1200px;

    margin: 0 auto;

}



.destinos .item {

    max-height: 285px;

    padding: 10px;

    box-sizing: border-box;

    overflow: hidden;

}



.destinos .item.small {

    width: 25%;

}



.destinos .item.medium {

    width: 50%;

}



.destinos .destino {

    position: relative;

    height: 100%;

    border-radius: 10px;

    overflow: hidden;

}



.destinos .destino .layer-bg {

    position: absolute;

    background-color: #161230;

    width: 100%;

    height: 100%;

    opacity: .7;

    border-radius: 10px;

    transform: translateY(0px);

    transition: all .2s linear;

}



.destinos .destino:hover .layer-bg {

    opacity: .2;

    border-radius: 10px;

    transform: translateY(0px);

    transition: all .2s linear;

}



.destinos .destino img {

    height: 100%;

    width: 100%;

    object-fit: cover;

    display: block;

    border-radius: 10px;

}



.destinos .destino h1 {

    /* display: none; */

    position: absolute;

    right: 20px;

    bottom: 20px;

    color: #fff;

    /* text-shadow: -1px 1px var(--color-primary); */

    z-index: 1;

    transition: all .2s linear;

}



.destinos .destino h1:hover {

    /* display: block; */

    /* color: var(--color-primary); */

    cursor: pointer;

    /* text-shadow: -1px 1px #fff; */

    transition: all .2s linear;

}



.destinos .titulo {

    margin-bottom: 50px;

}



.destinos .titulo h3 {

    font-family: var(--main-font);

    color: var(--color-primary);

    text-align: center;

    font-weight: 100;

}



.destinos .titulo h1 {

    font-family: var(--extra-Medium-font);

    color: var(--color-secundary);

    text-align: center;

    font-size: 3.5rem;

    margin-top: 20px;

}



@media (max-width: 600px) {

    .destinos .item.small,

    .destinos .item.medium {

        width: 100%

    }



    .destinos .item.medium {

        max-height: 140px;

    }



    .destinos .titulo h1 {

        font-size: 1.75rem;

    }

}

/*

*

*

*   PASSEIOS POPULARES

*

*

*/



.destaques {

    padding: 50px 10px;

}



.destaques .titulo {

    margin-bottom: 50px;

}



.destaques .titulo h3 {

    font-family: var(--main-font);

    color: var(--color-primary);

    text-align: center;

    font-weight: 100;

}



.destaques .titulo h1 {

    font-family: var(--extra-Medium-font);

    color: var(--color-secundary);

    text-align: center;

    font-size: 3.5rem;

    margin-top: 20px;

}



.destaques .container {

    max-width: 1570px;

    margin: 0 auto;

}



/* .destaques ul {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

} */



.destaques ul li {

    padding: 0 20px;

    outline: none;

}



.destaques .item {

    border: 1px solid #e1e1e1;

    border-radius: 10px;

    cursor: pointer;

}



.destaques .item .box {

    display: grid;

    gap: 20px;

    padding: 30px 20px;

}



.destaques .image-local {

    position: relative;

    height: 200px;

}



.destaques .data-viagem {

    position: absolute;

    background: #f7743d;

    z-index: 1;

    bottom: 0;

    right: 0;

    color: #fff;

    padding: 5px 15px;

    border-top: 2px solid #fff;

    border-left: 2px solid #fff;

    font-weight: bold;

}



.destaques .image-local img {

    display: block;

    border-radius: 10px 10px 0 0 ;

    object-fit: cover;

    height: 100%;

    width: 100%;

}



.destaques .estrela {

    font-size: 14px;

}



.destaques .titulo-local h1 {

    font-size: 22px;

    height: 62px;

}



.destaques .preco p {

    font-size: 20px;

    font-weight: bold;

    color: var(--color-tertiary);

}



.destaques .preco p span {

    font-size: 15px;

    font-weight: 100;

    color: #0000008c;

}



.destaques .info {

    display: flex;

    justify-content: center;

}



.destaques .info > div {

    background: #f3f3f3;

    display: flex;

    gap: 20px;

    padding: 10px 20px;

    border-radius: 4px;

    text-align: center;

}



.destaques .info > div span {

    font-size: 12px;

}



@media (max-width: 600px) {

    .destaques {

        padding: 50px 10px 0 10px;

    }



    .destaques .titulo h1 {

        font-size: 1.75rem;

    }

}



/*

*

*

*   BENEFICIOS

*

*

*/



.beneficios {

    padding: 50px 0;

}



.beneficios .container {

    display: flex;

}



.beneficios .imagem-beneficios {

    position: relative;

    width: 50%;

}



.beneficios .imagem-beneficios .image-hotel {

    object-fit: cover;

    height: 100%;

}



.beneficios .imagem-beneficios .logo {

    position: absolute;

    top: 30px;

    right: 30px;

    max-width: 150px;

    animation: logoRotation 4s linear infinite;

}



@keyframes logoRotation {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}



.beneficios .imagem-beneficios img {

    display: block;

    width: 100%;

}



.beneficios .info-beneficios {

    background-color: var(--color-secundary);

    width: 50%;

    background-image: url(assets/image/bg-beneficios.png);

    background-repeat: no-repeat;

    background-position: bottom right;

    display: flex;

    /* justify-content: center; */

    align-items: center;

    position: relative;

}



.beneficios .descricao {

    display: grid;

    gap: 25px;

    padding: 100px;

    max-width: 520px;

}



.beneficios .descricao::before {

    content: "";

    border-left: 1rem solid var(--color-primary);

    height: 100%;

    max-height: 500px;

    border-radius: 10px;

    background-color: var(--color-primary);

    display: flex;

    position: absolute;

    top: 50%;

    left: 0;

    transform: translate(-50%, -50%);

}



.beneficios .descricao h3 {

    font-family: var(--main-font);

    color: var(--color-tertiary);

    font-weight: 100;

}



.beneficios .descricao h1 {

    font-size: 50px;

    color: var(--color-white);

}



.beneficios .descricao h4 {

    font-size: 20px;

    color: var(--color-white);

}



.beneficios .descricao p {

    font-size: 18px;

    color: #a9a8b6;

}



.beneficios .descricao .item {

    display: flex;

    gap: 20px;

}



@media (max-width: 600px) {

    .beneficios {

        padding: 0 0 50px 0;

    }

    .beneficios .container {

        flex-wrap: wrap;

    }



    .beneficios .imagem-beneficios, 

    .beneficios .info-beneficios {

        width: 100%;

    }



    .beneficios .descricao {

        padding: 25px;

    }



    .beneficios .descricao h1 {

        font-size: 2rem;

    }



    .beneficios .descricao::before {

        max-height: 100%;

    }



    .beneficios .imagem-beneficios .logo {

        max-width: 70px;

        top: 15px;

        right: 15px;

    }

}



/*

*

*

*   CERTIFICADOS

*

*

*/



.certificados {

    padding: 50px 10px;

}



.certificados .titulo h3 {

    font-family: var(--main-font);

    color: var(--color-primary);

    text-align: center;

    font-weight: 100;

}



.certificados .titulo h1 {

    font-family: var(--extra-Medium-font);

    color: var(--color-secundary);

    text-align: center;

    font-size: 3.5rem;

    margin-top: 20px;

}



.certificados .container {

    max-width: 1570px;

    margin: 0 auto;

}



.certificados .container .itens {

    padding-top: 50px;

}



.certificados .container ul li > div {

    display: flex;

    justify-content: center;

}



.certificados {

    padding: 100px 0;

}



@media (max-width: 600px) {

    .certificados {

        padding: 50px 20px;

    }



    .certificados .titulo h1 {

        font-size: 1.75rem;

    }

}

/*

*

*

*   DEPOIMENTOS

*

*

*/



.depoimentos {

    padding: 50px 10px;

}



/* .depoimentos .titulo {

    margin-bottom: 50px;

} */



.depoimentos .titulo h3 {

    font-family: var(--main-font);

    color: var(--color-primary);

    text-align: center;

    font-weight: 100;

}



.depoimentos .titulo h1 {

    font-family: var(--extra-Medium-font);

    color: var(--color-secundary);

    text-align: center;

    font-size: 3.5rem;

    margin-top: 20px;

}



.depoimentos .container {

    max-width: 1570px;

    margin: 0 auto;

}



.depoimentos ul li {

    padding: 20px;

}



.depoimentos .foto-perfil {

    display: flex;

    justify-content: center;

    padding: 30px;

}



.depoimentos .info {

    padding: 25px;

    display: grid;

    justify-items: center;

    text-align: center;

    background: #fff;

    border-radius: 10px;

    box-shadow: 2px 2px 5px 2px #00000020;

}



.depoimentos .depoimento-cliente {

    padding-top: 20px;

    padding-bottom: 20px;

}



.depoimentos .depoimento-cliente p {

    font-size: 18px;

    line-height: 40px;

    color: #787780;

}



.depoimentos .nome h3 {

    font-size: 20px;

    font-weight: 700px;

    line-height: 30px;

}



.depoimentos .cliente span {

    font-size: 14px;

    font-weight: 500;

    color: var(--color-tertiary);

    letter-spacing: .1em;

    margin: 0;

    line-height: 25px;

}



@media (max-width: 600px) {

    .depoimentos .info {

        padding: 20px 30px;

    }



    .depoimentos .depoimento-cliente {

        padding-top: 0;

        padding-bottom: 10px;

    }



    .depoimentos .titulo h1 {

        font-size: 1.75rem;

    }

}



/*

*

*

*    FOOTER

*

*

*/



#footer a, #footer p, #footer span {

    text-decoration: none;

    /* font-size: 14px; */

    color: #787780;

}



#footer a:hover {

    color: #787780;

}



#footer span, a {

    display: flex;

    gap: 10px;

}



#footer .rodape {

    background-color: #e1e1e1;

    padding: 50px 0;

}



#footer .rodape .container {

    display: flex;

    justify-content: space-evenly;

    max-width: 1570px;

    margin: 0 auto;

}



#footer .rodape .container .box .titulo {

    color: var(--color-secundary);

    font-weight: 600;

    font-size: 18px;

    padding-bottom: 10px;

}



#footer .rodape .container .box {

    max-width: 350px;

}



#footer .bem-vindo {

    margin-bottom: 20px;

    padding-bottom: 20px;

    border-bottom: 1px solid #3a346321;

}



#footer .rodape .container .box:last-child {

    display: flex;

    flex-direction: column;

    align-items: center;

}



#footer .rodape .container .box .lista.icon ul {

    display: flex;

    flex-direction: row;

    gap: 20px;

}



#footer .rodape .container .box .lista ul {

    display: flex;

    flex-direction: column;

    gap: 15px;

    list-style: none;

}



@media (max-width: 600px) {

    #footer .rodape .container .box:last-child {

        align-items: flex-start;

    }

}





@media (max-width: 430px) {

    #footer .rodape .container {

        flex-direction: column;

        gap: 20px;

        padding: 0 30px;

    }

}



/*

*

*

*    BOTÃO WHATSAPP

*

*

*/



.botao-whatsapp {

    position: fixed;

    bottom: 20px;

    right: 20px;

    animation: efeitoScale 1s linear infinite;

    z-index: 1;

}



@keyframes efeitoScale {

    0% {

        transform: scale(1);

    }



    50% {

        transform: scale(1.05);

    }



    100% {

        transform: scale(1);

    }

}



/*

*

*

*    MODAL VIAGENS

*

*

*/



.modal-container{

    width: 100vw;

    height: 100vh;

    position: fixed;

    top: 0;

    left: 0;

    /* background-color: #0000004b; */

    background-color: #000000bf;

    z-index: 999;

    align-items: center;

    justify-content: center;

    display: none;

}

.modal-container .cta {
    display: flex;
    justify-content: center;
}

.modal-container .cta a {
    display: flex;
    justify-content: center;
    width: 80%;
    font-size: 20px;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    margin-top: 50px;
    background: #4C8818;
    color: #FFF;
}



.modal{

    width: 80%;

    height: calc(100% - 50px);

    min-width:400px;

    min-height: 200px;

    /* background-color: #ffffff62; */

    background-color: #ffffff;

    backdrop-filter: blur(10px);

    padding: 50px;

    border-radius: 10px;

    box-sizing: border-box;

}



.modal .container {

    overflow: scroll;

    overflow-x: hidden;

    height: 100%;

    display: flex;

    flex-wrap: wrap;

    justify-content: space-evenly;

    padding-top: 50px;

    box-sizing: border-box;

}



.modal .container::-webkit-scrollbar {

    display: none;

}



.fechar{

    position: absolute;

    top: -10px;

    right: -10px;

    width: 30px;

    height: 30px;

    border-radius: 50%;

    border: none;

    background-color: #ff0000;

    color: #fff;

    font-weight: 700;

    font-size: 14pt;

    cursor: pointer;

}



.modal h1{

    margin-bottom: 15px;

    color: #3a3463;

}



@keyframes animate-modal {

    from{

        opacity: 0;

        transform: translate3d(0, -20px, 0);

    }



    to{

        opacity: 1;

        transform: translate3d(0, 0, 0);

    }

}



.modal-container.mostrar{

    display: flex;

}



.mostrar .modal{

    animation: animate-modal .3s;

}



.info-viagem {

    width: 40%;

}



.img-viagem {

    width: 50%;

    max-width: 700px;

    max-height: 500px;

    display: flex;

    justify-content: center;

    align-items: self-start;

}



.img-viagem img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: 10px;

}



.descricao-viagem {

    width: 100%;

    /* height: 100%; */

    padding: 50px;

}



.descricao-viagem h1 {

    font-size: 22px;

}



.descricao-viagem span {

    display: block;

    line-height: 20px;

    color: #3a3463;

}

.descricao-viagem > ul > li {
    margin-bottom: 30px;
}


.descricao-viagem > ul > li > span {
    font-size: 18px;
}



.descricao-viagem ul li {

    margin-bottom: 15px;

    list-style: none;

}

.descricao-viagem ul li ul {
    padding-left: 20px;
}

.descricao-viagem ul li ul li {
    list-style: square;
    line-height: 20px;
    color: #3a3463;
}



.descricao-viagem ul {

    padding-left: 15px;

    padding-top: 10px;

}



.descricao-viagem span sub {

    font-style: italic;

    color: #3a3463b8;

}



.incluso {

    padding-top: 10px;

    margin-top: 10px;

    border-top: 1px solid #3a34631f;

}



.incluso ul li {

    list-style: none;

    display: flex;

    align-items: center;

    gap: 5px;

    /* line-height: 30px; */

    color: #3a3463;

    margin-bottom: 10px;

}



.saida {

    padding-top: 10px;

    margin-top: 10px;

    border-top: 1px solid #3a34631f;

}



.saida svg {

    transform: rotate(180deg);

}



.saida span,

.retorno span {

    display: flex;

    align-items: center;

    gap: 5px;

    line-height: 30px;

    color: #3a3463;

}



.preco-principal .preco {

    display: inline-block;

    font-size: 2rem;

    color: #3a3463;

    margin-bottom: 5px;

}



.preco-principal .pix {

    font-size: 1.5rem;

    color: #3a3463;

}



.preco-principal .pix strong {

    color: var(--color-primary);

}



.preco-parcelado span {

    color: #3a3463;

}



.preco-principal strong,

.preco-parcelado strong {

    color: #f5873a;

}





@media (max-width: 600px) {

    .modal {

        padding: 20px;

        min-width: 390px;

    }

    .modal h1 {

        font-size: 1.5rem;

        margin: 10px 0;

    }

    .modal .container {

        padding-top: 20px;

    }

    .img-viagem,

    .info-viagem {

        width: 100%;

    }

    .descricao-viagem {

        padding: 10px 0 0 0;

    }

    .saida,

    .incluso {

        padding-top: 15px;

        margin-top: 15px;

    }

}



@media (max-width: 400px) {

    .modal {

        min-width: 350px;

    }

}