:root {
    --font-Inter: "Inter", sans-serif;
}
body {
    font-family: var(--font-Inter);    

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-optical-sizing: auto;
}


.b-lazy,
.swiper-lazy {
    opacity:0;
}

.b-loaded,
.swiper-lazy-loaded {
    opacity:1;
    filter: none;
}
.swiper-lazy-loaded + .loader {
    display: none;
}
@keyframes swiper-preloader-spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* HTML: <div class="loader"></div> */
.loader {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
  
    aspect-ratio: 1;
    background:
        linear-gradient(to bottom right,#0000 calc(40%),#fff 50%,#0000 calc(60%)) 
        bottom right/calc(250%) calc(250%) 
        rgba(0, 0, 0, 0.15);
    animation: l8 1.5s infinite ;
}
.loader.--dark {
    background:
        linear-gradient(to bottom right,#0000 calc(40%),#353535 50%,#0000 calc(60%)) 
        bottom right/calc(250%) calc(250%) 
        rgba(30, 30, 30, 1);
}
@keyframes l8 {
    100% {background-position: top left}
}
  
  

.b-loaded + .loader {
    opacity: 0;
    z-index: -9999;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 999;
    
    border-bottom: 1px solid rgba(129, 129, 129, 0.0);
}
[data-scroll="true"] header {
    border-bottom: 1px solid rgba(129, 129, 129, 0.30);
}
header nav.navbar {
    display: flex;
    align-items: center;
    gap: 65px;
    padding: 15px 0;

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
[data-scroll="true"] header nav.navbar {
    padding: 0;
}
header nav.navbar .navbar-brand img {
    width: 200px;
    height: 60px;

    -o-object-fit: contain;
    object-fit: contain;
}
header nav.navbar .navbar-nav {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 30px;
}
header nav.navbar .navbar-nav .header-mobile {
    display: none;
}
header nav.navbar .navbar-nav .nav-link {
    position: relative;
    display: block;
    width: fit-content;
    
    color: #020407;
    font-family: var(--font-PlusJakartaSans);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    margin: 0;

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
header nav.navbar .navbar-nav .nav-link[aria-current="page"] {
    font-weight: 700;
}
header nav.navbar .navbar-nav .nav-link::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    
    width: 100%;
    height: 4px;
    
    background: var(--color-primary);
    opacity: 0;

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
header nav.navbar .navbar-nav .nav-link[aria-current="page"]::before {
    opacity: 1;
}
header nav.navbar .navbar-nav .nav-link:not(.botao):not([aria-current="page"]):hover {
    color: #FF0000;
}
header nav.navbar .navbar-nav .nav-link.botao {
    padding-left: 35px;
    padding-right: 35px;
}

/* Dropdown Menu */
header nav.navbar .nav-item.dropdown {
    position: relative;
}

header nav.navbar .nav-item.dropdown .dropdown-toggle::after {
    content: '';
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
header nav.navbar .nav-item.dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    display: block;
    min-width: 200px;
    padding: 10px;
    margin: 0;
    background-color: #eeeeee;
    border: none;
    border-radius: 10px;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
    list-style: none;
    
    transform: translateX(-50%) scale(.98) translateY(10px);
    pointer-events: none;
    z-index: -1000;
    opacity: 0;
    
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
header nav.navbar .nav-item.dropdown.show .dropdown-toggle::after {
    transform: rotate(-180deg);
}
header nav.navbar .nav-item.dropdown.show .dropdown-menu {
    transform: translateX(-50%) scale(1) translateY(0px);
    pointer-events: all;
    z-index: 1000;
    opacity: 1;
}
header nav.navbar .nav-item.dropdown .dropdown-menu .dropdown-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7.5px;
    min-width: 150px;
    
    border-radius: 5px;
    padding: 7.5px;
    color: #050211;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.3px;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;

    margin: 0 auto;
}
header nav.navbar .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #F6F6F6;
    color: var(--color-primary);
}

header nav.navbar .nav-item.dropdown .dropdown-menu .dropdown-item.disabled {
    color: #6c757d;
    pointer-events: none;
    opacity: 0.6;
    filter: grayscale(1);
}
header nav.navbar .nav-item.dropdown .dropdown-menu .dropdown-item.disabled img {
    opacity: .4;
}
@media (min-width: 992px) {
    header nav.navbar .nav-item.dropdown .dropdown-menu::before {
        content: '';
        display: block;
        position: absolute;
        top: -10px;
        left: 0;
        width: 100%;
        height: 10px;
    }
    header nav.navbar .nav-item.dropdown .dropdown-menu::after {
        content: '';
        display: block;
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);

        width: 0;
        height: 0;
        border-left: 7.5px solid transparent;
        border-right: 7.5px solid transparent;
        border-bottom: 10px solid 
    #eeeeee;
    }
    header nav.navbar .nav-item.dropdown:hover .dropdown-menu {
        transform: translateX(-50%) scale(1) translateY(0px);
        pointer-events: all;
        z-index: 1000;
        opacity: 1;
    }

    header nav.navbar .nav-item.dropdown:hover .dropdown-toggle::after {
        transform: rotate(-180deg);
    }
    header nav.navbar .nav-item.dropdown:hover .dropdown-menu {
        transform: translateX(-50%) scale(1) translateY(0px);
        pointer-events: all;
        z-index: 1000;
        opacity: 1;
    }
}
@media (max-width: 991.98px) {
    header nav.navbar .nav-item.dropdown .dropdown-menu {
        display: none;
        position: initial;
        transform: none;
        margin-top: 15px;
        background-color: #e6edf4;
    }
    header nav.navbar .nav-item.dropdown .dropdown-toggle {
        cursor: pointer;
    }
    header nav.navbar .nav-item.dropdown.show .dropdown-menu {
        display: block;
        transform: none;
        padding: 0;
    }
    header nav.navbar .nav-item.dropdown .dropdown-menu .dropdown-item {
        padding: 15px;
        background-color: #e6edf4;
        border-radius: 5px;
        justify-content: flex-start;
    }
}


header nav.navbar .navbar-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}
header nav.navbar .navbar-actions .button span {
    font-weight: 700;
}
header nav.navbar .navbar-actions .open-menu-search {
    padding: 20px;
}
header nav.navbar .navbar-actions .open-menu-search svg {
    display: block;
    fill: #fff;
    width: 18px;
    height: 18px;
}
header nav.navbar .navbar-actions .open-menu-search::before {
    top: -0%;
}




/* Section-title */
.section-title {
    color: #000b3d;
    font-size: 40px;
    font-weight: 700;
    line-height: 58px;
    letter-spacing: -1.5%;
    text-align: center;
    margin: 0 0 45px 0;
}
.section-title span {
    position: relative;
    font-weight: 400;
    font-style: italic;
    z-index: 0;
}
/* .section-title span::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 10px;
    background: #FF0000;
    z-index: -1;
} */




/* Pacotes */
.lista-pacotes {
    margin: 80px 0;
}
.lista-pacotes .col-pacotes {
    position: relative;
}
.lista-pacotes .col-pacotes .navSwiperPacotes {
    position: absolute;
    top: 0;
    bottom: 0;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 35px;
    height: 35px;
    background: rgba(42, 22, 22, 0.17);
    border-radius: 50%;

    cursor: pointer;
    
    margin: auto;

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
.lista-pacotes .col-pacotes .navSwiperPacotes.swiper-button-disabled {
    background: transparent;
}
.lista-pacotes .col-pacotes .navSwiperPacotes:not(.swiper-button-disabled):hover {
    background: #000b3d;
}
.lista-pacotes .col-pacotes .navSwiperPacotes.--prev {
    left: -20px;
    right: unset;
}
.lista-pacotes .col-pacotes .navSwiperPacotes.--next {
    left: unset;
    right: -20px;
}
.lista-pacotes .col-pacotes .navSwiperPacotes svg {
    display: block;
    fill: none;
    stroke: #000b3d;
    width: 16px;
    height: 16px;
    
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.lista-pacotes .col-pacotes .navSwiperPacotes.swiper-button-disabled {
    cursor: default;
}
.lista-pacotes .col-pacotes .navSwiperPacotes.swiper-button-disabled svg {
    opacity: .15;
}
.lista-pacotes .col-pacotes .navSwiperPacotes.--prev svg {
    transform: translateX(-1px);
}
.lista-pacotes .col-pacotes .navSwiperPacotes.--next svg {
    transform: translateX(2px);
}
.lista-pacotes .col-pacotes .navSwiperPacotes:not(.swiper-button-disabled):hover svg {
    stroke: #fff;
}
.lista-pacotes .swiper {
    padding: 0 15px 15px 15px;
}
.lista-pacotes .swiper .swiper-wrapper {
    margin: 0;
    padding: 0;
    list-style: none;
}
.lista-pacotes .swiper .swiper-slide {
    height: auto;
}
.lista-pacotes .list-pacotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 15px;
    row-gap: 30px;
    flex-wrap: wrap;

    margin: 0;
    padding: 0;
    list-style: none;
}
.lista-pacotes .list-pacotes .item-pacote {

}
.lista-pacotes .card-pacote {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;

    background: rgba(255, 255, 255, 1);
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.12);
}
.lista-pacotes .card-pacote .image {
    position: relative;
    width: 100%;
    display: block;
}
.lista-pacotes .card-pacote .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 66.23376623376623%;
}
.lista-pacotes .card-pacote .image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-image: url('../img/loading.gif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 32px 32px;
    
    -o-object-fit: cover;
    object-fit: cover; 
}
.lista-pacotes .card-pacote .content {
    padding: 30px 15px calc(15px + 50px) 15px;

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
/* .lista-pacotes .swiper-slide:not(.swiper-slide-visible) .card-pacote .content {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
} */
.lista-pacotes .card-pacote .content .localizacao {
    margin: 0 0 15px 0;
}
.lista-pacotes .card-pacote .content .localizacao a {
    display: block;
    height: auto;
    max-height: 60px;
    overflow: hidden;
    color: #000b3d;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0%;
    text-align: center;
    text-decoration: none;
}
.lista-pacotes .card-pacote .content .data {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0;
}
.lista-pacotes .card-pacote .content .data svg {
    display: block;
    fill: #000b3d;
    width: 22px;
    height: 22px;
}
.lista-pacotes .card-pacote .content .data p {
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 17.44px;
    letter-spacing: 0%;
    text-align: left;
    margin: 0;
}
.lista-pacotes .card-pacote .content .botao {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 10px 30px;

    background-color: transparent;
    border: 1px solid #ff0000;

    margin: 0 auto;
}
.lista-pacotes .card-pacote .content .botao:hover {
    background-color: #ff0000;
}
.lista-pacotes .card-pacote .content .botao span {
    font-size: 14px;
    color: #ff0000;
}
.lista-pacotes .card-pacote .content .botao:hover span {
    color: #fff;
}
.lista-pacotes .loadmore-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    
    margin: 50px auto 0 auto;
    min-width: 180px;
    height: 50px;
}
.lista-pacotes .loadmore-btn.loading {
    pointer-events: none;
    background-color: rgba(255, 0, 0, .5)!important;
    backdrop-filter: blur(10px);
}
.lista-pacotes .loadmore-btn .spinner-border {
    width: 20px;
    height: 20px;
    border: .2em solid currentColor;
    border-right-color: transparent;
}




/* Contato */
section#contato {
    margin: 100px 0;
    padding-bottom: 50px;
}
section#contato .container {
    position: relative;
}
section#contato .container::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -100px;

    width: 100%;
    height: 1px;

    background-color: #000B3D;
    opacity: .3;
}
section#contato .section-title {
    display: flex;
    align-items: center;
    gap: 38px;
}
section#contato .section-title .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: #ff0000;
    border-radius: 50%;
}
section#contato .section-title .icon svg {
    display: block;
    fill: #fff;
    width: 35px;
    height: 35px;
}
section#contato .section-title h2 {
    color: #000b3d;
    font-size: 31.5px;
    font-weight: 800;
    line-height: 37.8px;
    letter-spacing: 0%;
    text-align: left;
    margin: 0;
}

section#contato .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
section#contato .--span2 {
    grid-column: span 2;
}
section#contato .contact-form .form-group {
    width: 100%;
}
section#contato .contact-form .form-group input,
section#contato .contact-form .form-group textarea {
    display: block;
    border: none;
    outline: none;
    box-shadow: none;
    
    width: 100%;
    height: 50px;
    background-color: transparent;
    border-bottom: 2px solid #CCCCCC;
}
section#contato .contact-form .form-group textarea {
    height: 100px;
}
section#contato .contact-form button {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;

    width: 100%;
}
section#contato .contact-form button span {
    text-transform: uppercase;
}

section#contato .link-wpp {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000B3D;
    border-radius: 30px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
}
/* section#contato .link-wpp::after {
    content: '';
    display: block;
    width: 100%;
    height: auto;
    padding-bottom: calc(344 / 606 * 100%);
} */
section#contato .link-wpp img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .3;

    -o-object-fit: cover;
    object-fit: cover;
    
    z-index: -1;

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
section#contato .link-wpp:hover img {
    transform: scale(1.1);
}
section#contato .link-wpp .content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: fit-content;
    height: fit-content;

    display: flex;
    align-items: center;
    gap: 38px;

    margin: auto;
}
section#contato .link-wpp .content .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: #2DBF65;
    border-radius: 50%;
}
section#contato .link-wpp .content .icon svg {
    display: block;
    fill: #fff;
    width: 35px;
    height: 35px;
}
section#contato .link-wpp .content h3 {
    color: #fff;
    font-size: 31.5px;
    font-weight: 800;
    line-height: 37.8px;
    letter-spacing: 0%;
    text-align: left;
    margin: 0;
}




/* Botões */
.botao {
    display: block;
    width: fit-content;
    padding: 15px 40px;
    background: #000B3D;
    border: none;
    border-radius: 100px;
    box-shadow: none;
    outline: none;

    cursor: pointer;
    text-decoration: none;
    
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
.botao span {
    display: block;
    width: fit-content;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0%;
    text-align: center;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.botao:hover {
    background-color: #fff;
    color: #000B3D;
}
.botao:hover span {
    transform: scale(1.085);
}
.botao.--vermelho-azul {
    background: #FF0000;
}
.botao.--vermelho-azul:hover {
    background: #000B3D;
    color: #fff;
}
.botao.--vermelho-branco {
    background: #FF0000;
}
.botao.--vermelho-branco:hover {
    background: #fff;
}
.botao.--vermelho-branco:hover span {
    color: #FF0000;
}
.botao.--azul-vermelho {
    background: #000B3D;
}
.botao.--azul-vermelho:hover {
    background: #FF0000;
    color: #fff;
}
.botao.--stroke-azul-azul {
    background: transparent;
    border: 1px solid #000B3D;
}
.botao.--stroke-azul-azul span {
    color: #000B3D;
}
.botao.--stroke-azul-azul:hover {
    background: #000B3D;
}
.botao.--stroke-azul-azul:hover span {
    color: #fff;
}




/* Footer */
.footer-site .footer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-site .footer-header .logo img {
    width: auto;
    height: 61px;
}
.footer-site .footer-body {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.footer-site .footer-body .sitemap {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-site .footer-body .sitemap .sitemap-item {
    margin: 0 0 8px 0;
}
.footer-site .footer-body .sitemap .sitemap-item:first-child {
    margin: 0 0 12px 0;
}
.footer-site .footer-body .sitemap .sitemap-item h2 {
    color: #000b3d;
    font-size: 16px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -2%;
    text-align: left;
}
.footer-site .footer-body .sitemap .sitemap-item a {
    display: block;

    color: #000b3d;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -2%;
    text-align: left;
    text-decoration: none;

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
.footer-site .footer-body .sitemap .sitemap-item a:hover {
    color: #FF0000;
}
.footer-site .footer-body .sitemap .sitemap-item .list-redes {
    display: flex;
    align-items: center;
    gap: 15px;
    
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-site .footer-body .sitemap .sitemap-item .list-redes .item-redes a {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;

    z-index: 0;
}
.footer-site .footer-body .sitemap .sitemap-item .list-redes .item-redes a::before {
    content: '';
    display: block;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 30px;
    height: 30px;
    
    background: #000B3D;
    border-radius: 7.5px;
    opacity: 0;
    
    z-index: -1;
    
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
.footer-site .footer-body .sitemap .sitemap-item .list-redes .item-redes a:hover::before {
    opacity: 1;
}
.footer-site .footer-body .sitemap .sitemap-item .list-redes .item-redes svg {
    display: block;
    fill: #FF0000;
    width: 20px;
    height: 20px;

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
.footer-site .footer-body .sitemap .sitemap-item .list-redes .item-redes a:hover svg {
    fill: #fff;
    transform: scale(.85);
}
.footer-site .sitemap .ver-mais {
    display: block;
    width: fit-content;
}
.footer-site .footer-body .sitemap .ver-mais {
    display: block;

    color: #FF0000;
    font-size: 14px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -2%;
    text-align: left;
    text-decoration: none;

    padding: 0;
    border: none;
    outline: none;
    box-shadow: none;
    background: none;

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
.footer-site .footer-body .sitemap .ver-mais:hover {
    text-decoration: underline;
}


.footer-site .footer-copyright {
    padding: 20px 0;
    border-top: 3px solid #FF0000;
}
.footer-site .footer-copyright .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-site .footer-copyright p.copyright {
    color: #000b3d;
    font-size: 12px;
    font-weight: 400;
    line-height: 28.15px;
    letter-spacing: 0%;
    text-align: left;
    margin: 0;
}
.footer-site .footer-copyright p.wtek {
    color: #000b3d;
    font-size: 12px;
    font-weight: 400;
    line-height: 28.15px;
    letter-spacing: 0%;
    text-align: left;
    margin: 0;
}
.footer-site .footer-copyright p.wtek a {
    color: #000b3d;
    font-size: 12px;
    font-weight: 400;
    line-height: 28.15px;
    letter-spacing: 0%;
    text-align: left;
    text-decoration: none;

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
.footer-site .footer-copyright p.wtek a:hover {
    font-weight: 700;
}




/* Responsivo Mobile */
@media (max-width: 992px) {
/* Header */
    header nav.navbar {
        padding: 0;
    }
    header nav.navbar .navbar-brand {
        margin: 0;
    }
    header nav.navbar .navbar-nav {
        position: fixed;
        top: 0;
        left: 110%;
        width: 100%;
        height: 100%;
        
        align-items: center;
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        
        background-color: #fff;

        -webkit-transition: all .25s ease-in-out;
        -moz-transition: all .25s ease-in-out;
        -ms-transition: all .25s ease-in-out;
        -o-transition: all .25s ease-in-out;
        transition: all .25s ease-in-out;
    }
    [data-mobile-status="open"] header nav.navbar .navbar-nav {
        left: 0;
    }
    header nav.navbar .navbar-nav .header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 0 0 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        margin-bottom: 15px;
    }
    header nav.navbar .navbar-nav .header-mobile .navbar-brand img {
        height: 50px;
    }
    header nav.navbar .navbar-nav .header-mobile .close-menu-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        
        width: 40px;
        height: 40px;

        background: transparent;
        border: none;
        box-shadow: none;
        outline: none;
    }
    header nav.navbar .navbar-nav .header-mobile .close-menu-mobile svg {
        display: block;
        stroke: #000b3d;
        width: 30px;
        height: 30px;
    }
    header nav.navbar .navbar-nav .nav-item {
        display: block;
        width: 100%;
    }
    header nav.navbar .navbar-nav .nav-link {
        display: block;
        width: 100%;
        padding: 15px;
        background-color: #e6edf4;
        border-radius: 5px;

        font-size: 14px;
    }
    header nav.navbar .navbar-nav .nav-link.botao {
        padding: 15px;
        background-color: #ff0000;
        font-size: 14px;
    }
    header nav.navbar .navbar-nav .nav-link.botao span {
        font-size: 14px;
    }
    header nav.navbar .navbar-nav .nav-link[aria-current="page"] {
        background-color: #000B3D;
        color: #fff;
    }
    header nav.navbar .navbar-nav .nav-link::after {
        content: none;
    }
    header nav.navbar .navbar-button {
        display: none;
    }
    header nav.navbar .open-menu-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        
        width: 40px;
        height: 40px;

        background: transparent;
        border: none;
        outline: none;
        box-shadow: none;
    }
    header nav.navbar .open-menu-mobile svg {
        display: block;
        stroke: #000B3D;
        width: 30px;
        height: 30px;
    }




    /* Section-title */
    .section-title {
        font-size: 24px;
        line-height: normal;
        margin: 0 0 30px ;
    }
    /* .section-title span::before {
        height: 6px;
    } */




    /* Pacotes */
    .lista-pacotes {
        margin: 50px 0;
    }
    .lista-pacotes .list-pacotes {
        grid-template-columns: repeat(1, 1fr)
    }
    .lista-pacotes .col-pacotes .navSwiperPacotes {
        z-index: 99;
        backdrop-filter: blur(5px);
        background: rgba(240, 240, 240, .5);
    }
    .lista-pacotes .col-pacotes .navSwiperPacotes.--prev {
        left: 10px;
    }
    .lista-pacotes .col-pacotes .navSwiperPacotes.--next {
        right: 10px;
    }




    /* Contato */
    section#contato .section-title {
        justify-content: center;
        gap: 15px;
    }
    section#contato .section-title h2 {
        font-size: 24px;
    }




    /* Footer */
    .footer-site .footer-header .logo {
        margin: 0 auto;
    }
    .footer-site .footer-body {
        flex-wrap: wrap;
        margin-top: 30px;
        margin-bottom: 30px;
        gap: 30px;
    }
    .footer-site .footer-body .sitemap {
        display: block;
        width: 100%;
    }
    .footer-site .footer-body .sitemap .sitemap-item h2,
    .footer-site .footer-body .sitemap .sitemap-item a {
        text-align: center;
    }
    .footer-site .footer-body .sitemap .sitemap-item .list-redes {
        justify-content: center;
    }
    .footer-site .footer-copyright .container {
        flex-direction: column;
    }
}