:root {
    --font-DMSans: "DM Sans", sans-serif;
}
body {
    font-family: var(--font-DMSans);    

    background-color: #F1F5F1;

    -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.05);
    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.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* background-color: #fff; */
    z-index: 999;

    -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-scroll="true"] header.site-header  {
    background-color: #fff;
}
header.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}
header.site-header nav.navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 50px;
    padding: 15px 0;
    
    width: fit-content;

    z-index: 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.site-header nav.navbar::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 50px);
    height: 100%;

    background: #241a1c;
    transform: skew(-26deg);
    border-radius: 0 20px 15px 0;

    z-index: -1;
}
header.site-header nav.navbar::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: calc(-100dvw + 75px);
    width: 100dvw;
    height: 100%;

    background: #241a1c;

    z-index: -1;
}
header.site-header nav.navbar .navbar-brand img {
    width: 215px;
    height: 40px;

    -o-object-fit: contain;
    object-fit: contain;
}
header.site-header nav.navbar .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}
header.site-header nav.navbar .navbar-nav .header-mobile {
    display: none;
}
header.site-header nav.navbar .navbar-nav .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7.5px;
    width: fit-content;
    padding: 7.5px 15px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 13px;
    letter-spacing: -1%;
    text-align: left;
    margin: 0;

    z-index: 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.site-header nav.navbar .navbar-nav .nav-link::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(228, 172, 35, .2);
    border-radius: 100px;

    pointer-events: none;
    transform: scale(.5);
    opacity: 0;

    z-index: -1;
    
    -webkit-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -moz-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -ms-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -o-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
}
header.site-header nav.navbar .navbar-nav .nav-link:hover::before {
    opacity: 1;
    transform: scale(1.05);
}
header.site-header nav.navbar .navbar-nav .nav-link svg {
    display: block;
    width: 24px;
    height: 24px;
}



header.site-header nav.navbar + .navbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}
header.site-header nav.navbar + .navbar-actions .search-form {
    position: relative;
    width: 100%;
}
header.site-header nav.navbar + .navbar-actions .search-form input {
    width: 100%;
    height: 52px;
    
    padding: 0 55px 0 20px;
    background: #e2dbdb;
    border: none;
    border-radius: 100px;
    outline: none;
    box-shadow: none;
}
header.site-header nav.navbar + .navbar-actions .search-form .icon-busca {
    position: absolute;
    top: 0;
    right: 0;
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;

    cursor: pointer;

    z-index: 99;
}
header.site-header nav.navbar + .navbar-actions .search-form .icon-busca svg {
    display: block;
    width: 25px;
    height: 25px;
}
header.site-header nav.navbar + .navbar-actions .botao-wpp {
    display: block;
    width: 52px;
    min-width: 52px;
    height: 52px;
    
    padding: 15px;
    background-color: #0CC143;
    border-radius: 50%;
}
header.site-header nav.navbar + .navbar-actions .botao-wpp svg {
    display: block;
    fill: #fff;
    width: 100%;
    height: 100%;
}




/* Section Title */
.section-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 60px 0;
}
.section-title.--center {
    justify-content: center;
}
.section-title svg {
    display: block;
    width: 40px;
    height: 35px;
}
.section-title h2 {
    color: rgba(36, 26, 28, 1);

    font-size: 46px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -3%;
    text-align: center;
    margin: 0;
}




/* Pacotes */
.pacotes {
    margin: 60px 0;
}
.pacotes .lista-pacotes {
    display: grid;
    /* gap: 25px; */
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Desktop grande */
@media (min-width: 1200px) {
    .pacotes .lista-pacotes {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 900px) and (max-width: 1199px) {
    .pacotes .lista-pacotes {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 600px) and (max-width: 899px) {
    .pacotes .lista-pacotes {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 599px) {
    .pacotes .lista-pacotes {
        grid-template-columns: 1fr;
    }
}

.pacotes .item-pacote .card-pacote {
    position: relative;
    width: 100%;
    height: 100%;
    /* padding: 20px 20px 75px 20px; */
    padding: 15px 15px 75px 15px;
    border: 1px solid rgba(211, 217, 211, 1);
    border-radius: 20px;
}
.pacotes .item-pacote .card-pacote .image {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}
.pacotes .item-pacote .card-pacote .image::after {
    content: '';
    display: block;
    width: 100%;
    height: auto;
    padding-bottom: calc(210px / 308px * 100%);
}
.pacotes .item-pacote .card-pacote .image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    -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;
}
.pacotes .item-pacote .card-pacote .image:hover img {
    transform: scale(1.05);
}
.pacotes .item-pacote .card-pacote .image .badge,
.pacotes .item-pacote .card-pacote .image .badge-tipo {
    position: absolute;
    top: 10px;
    right: 10px;
    
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    
    
    
    border-radius: 40px;
    background: var(--Color2, rgba(36, 26, 28, 1));
    
    z-index: 2;
}
.pacotes .item-pacote .card-pacote .image .badge-tipo {
    left: 10px;
    right: unset;
    justify-content: center;

    width: 30px;
    height: 30px;
    padding: 0;
}
.pacotes .item-pacote .card-pacote .image .badge svg {
    display: block;
    fill: #e4ac23;
    width: 12px;
    height: 12px;
}
.pacotes .item-pacote .card-pacote .image .badge-tipo svg {
    display: block;
    fill: none;
    stroke: #e4ac23;
    width: 14px;
    height: 14px;
}
.pacotes .item-pacote .card-pacote .image .badge span {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
}
.pacotes .item-pacote .card-pacote .content {
    margin-top: 15px;
}
.pacotes .item-pacote .card-pacote .content .atualizado {
    display: block;
    color: #6b6b6b;
    font-size: 13px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
    margin: 0 0 6px 0;
}
.pacotes .item-pacote .card-pacote .content .nome a {
    display: block;
    width: fit-content;
    color: #241a1c;
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -1%;
    text-align: left;
    text-decoration: none;
    margin: 0 0 6px 0;

    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -ms-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}
.pacotes .item-pacote .card-pacote .content .nome a:hover {
    color: #e4ac23;
}
.pacotes .item-pacote .card-pacote .content .local {
    display: inline-flex;
    align-items: center;
    column-gap: 4px;
    width: 100%;

    color: #6b6b6b;
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1%;
    text-align: left;
    margin: 0 0 10px 0;
}
.pacotes .item-pacote .card-pacote .content .local svg {
    display: block;
    fill: #6b6b6b;
    width: 15px;
    height: 15px;
}
.pacotes .item-pacote .card-pacote .content .data {
    display: inline-flex;
    align-items: center;
    column-gap: 4px;
    width: 100%;

    color: #6b6b6b;
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1%;
    text-align: left;
    margin: 0 0 10px 0;
}
.pacotes .item-pacote .card-pacote .content .data svg {
    display: block;
    fill: #6b6b6b;
    width: 15px;
    height: 15px;
}
.pacotes .item-pacote .card-pacote .content .preco span {
    color: #6b6b6b;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1%;
    text-align: left;
    margin: 0;
}
.pacotes .item-pacote .card-pacote .content .preco h4 {
    color: #241A1C;
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -1%;
    text-align: left;
    margin: 0;
}
.pacotes .item-pacote .card-pacote .content .preco p {
    color: #241A1C;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1%;
    text-align: left;
    margin: 0;
}
.pacotes .item-pacote .card-pacote .footer-botao {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: calc(100% - 40px);

    display: flex;
    align-items: center;
    justify-content: space-between;
    
    padding-top: 20px;
    border-top: 1px solid #d9d9d9;

    color: #241a1c;
    font-size: 16px;
    font-weight: 400;
    line-height: 13px;
    letter-spacing: -1%;
    text-align: left;
    text-transform: uppercase;
    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;
}
.pacotes .item-pacote .card-pacote .footer-botao:hover {
    color: #e4ac23;
}
.pacotes .item-pacote .card-pacote .footer-botao svg {
    display: block;
    fill: #e4ac23;
    width: 18px;
    height: 12px;
}
.pacotes .botao {
    margin: 40px auto 0 auto;
}
.pacotes .loadmore-btn.loading {
    pointer-events: none;
    transform: none;
    box-shadow: none;
}
.pacotes .loadmore-btn .spinner-border {
    width: 20px;
    height: 20px;
    border: .2em solid #fff;
    border-right-color: transparent;
}




/* Grupo WhatsApp */
#grupo-wpp {
    margin: 60px 0;
}
#grupo-wpp .content {
    background: url('../img/newsletter-bg.webp');
    background-size: cover;
    background-position: -60px center;
    border-radius: 20px;
    overflow: hidden;
}
#grupo-wpp .content form {
    box-sizing: content-box;
    width: 400px;
    padding: 120px 95px 120px 0;
    margin-left: auto;
}
#grupo-wpp .content h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -3%;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}
#grupo-wpp .content p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -3%;
    text-align: center;
    margin: 0 0 30px 0;
}
#grupo-wpp .content .botao {
    margin: 0 auto;
}




/* Newsletter */
#newsletter {
    margin: 60px 0;
}
#newsletter .content {
    background: url('../img/newsletter-bg.webp');
    background-size: cover;
    background-position: -60px center;
    border-radius: 20px;
    overflow: hidden;
}
#newsletter .content form {
    box-sizing: content-box;
    width: 750px;
    max-width: 60%;
    padding: 120px 95px 120px 0;
    margin-left: auto;
}
#newsletter .content h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -3%;
    text-align: left;
    margin: 0 0 40px 0;
}
#newsletter .content .form-input {
    position: relative;
    display: flex;
    align-self: center;
    gap: 0;

    z-index: 0;
}
#newsletter .content .form-input::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 60px;

    background-color: #fff;
    border-radius: 100px;

    z-index: -1;
}
#newsletter .content .form-input input {
    display: block;
    width: 100%;
    height: 60px;
    
    padding: 0 34px;
    background: none;
    border: none;
    border-radius: 100px 0 0 100px;
    outline: none;
    box-shadow: none;
}
#newsletter .content .form-input button {
    width: fit-content;
    height: 60px;
    padding: 0 40px;

    background: #e4ac23;
    border: none;
    border-radius: 100px;
    box-shadow: none;
    outline: none;

    -webkit-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -moz-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -ms-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -o-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
}
#newsletter .content .form-input button span {
    color: #241a1c;
    font-size: 16px;
    font-weight: 400;
    line-height: 13px;
    letter-spacing: -1%;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;

    -webkit-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -moz-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -ms-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -o-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
}
#newsletter .content .form-input button:hover {
    transform: scale(1.05);
}
#newsletter .content .form-input button:focus,
#newsletter .content .form-input button:active {
    transform: scale(1);
    box-shadow: none;
}





/* Footer */
.footer-site .footer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-site .footer-body .sitemap .list-redes {
    display: flex;
    align-items: center;
    gap: 20px;
    
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-site .footer-body .sitemap .list-redes .item-rede a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    padding: 8px;

    z-index: 0;

    -webkit-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -moz-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -ms-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -o-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
}
.footer-site .footer-body .sitemap .list-redes .item-rede a:hover {
    transform: translateY(-2px) scale(1.05);
}
.footer-site .footer-body .sitemap .list-redes .item-rede a::before {
    content: '';
    display: block;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 50px;
    height: 50px;
    
    background: #241a1c;
    border-radius: 50%;
    opacity: 1;
    
    z-index: -1;     
}
.footer-site .footer-body .sitemap .list-redes .item-rede svg {
    display: block;
    fill: #F1F5F1;
    width: 100%;
    height: 100%;
}
.footer-site .footer-body .sitemap .list-redes .item-rede svg.stroke {
    fill: none;
    stroke: #F1F5F1;
}
.footer-site .footer-header .central-vendas {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    
    color: #241a1c;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -1%;
    text-align: left;
    text-decoration: none;

    z-index: 0;

    -webkit-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -moz-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -ms-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -o-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
}
.footer-site .footer-header .central-vendas:hover {
    color: #F1F5F1;
    font-weight: 600;
    transform: translateY(-2px) scale(1.05);
}
.footer-site .footer-header .central-vendas::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0px;
    width: 50px;
    height: 100%;
    background-color: #0BC143;
    border-radius: 100px;
    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-header .central-vendas:hover::before {
    width: calc(100% + 35px);
}
.footer-site .footer-header .central-vendas .icon {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    padding: 15px;
    background-color: #0BC143;
    border-radius: 50%;
}
.footer-site .footer-header .central-vendas .icon svg {
    display: block;
    stroke: #F1F5F1;
    width: 100%;
    height: 100%;
}

.footer-site .footer-body {
    display: flex;
    gap: 175px;
    margin-top: 30px;
    padding-top: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}
.footer-site .footer-body .sitemap {
    height: fit-content;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-site .footer-body .sitemap:first-child {
    margin-right: auto;
}
.footer-site .footer-body .sitemap .sitemap-item {
    margin: 0;
}
.footer-site .footer-body .sitemap .sitemap-item:first-child {
    margin: 0 0 12px 0;
}
.footer-site .footer-body .sitemap .sitemap-item h2.titulo {
    max-width: 215px;
    color: #241a1c;
    font-size: 29px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -3%;
    text-align: left;
    margin: 0;
}
.footer-site .footer-body .sitemap .sitemap-item h2.titulo span {
    display: block;
    margin-top: 15px;
}
.footer-site .footer-body .sitemap .sitemap-item h2:not(.titulo) {
    color: #241a1c;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
    text-transform: uppercase;
    margin: 0;
}
.footer-site .footer-body .sitemap .sitemap-item p,
.footer-site .footer-body .sitemap .sitemap-item a {
    display: block;
    padding: 5px 0;
    color: rgba(107, 107, 107, 1);
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
    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;
}
.footer-site .footer-body .sitemap:hover .sitemap-item a:not(:hover) {
    opacity: .5;
}
.footer-site .footer-body .sitemap .sitemap-item a:hover {
    color: #E4AC24;
    font-weight: 500;
    transform: translateX(3px);
}
.footer-site .footer-copyright {
    padding: 0 0 30px 0;
}
.footer-site .footer-copyright .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-site .footer-copyright p.copyright {
    color: #6b6b6b;
    font-size: 13px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
    margin: 0;
}
.footer-site .footer-copyright .wtek {
    display: block;
    width: fit-content;
    margin: 0;
}
.footer-site .footer-copyright .wtek svg {
    display: block;
    width: 102px;
    height: 30px;
}




/* Utils */
/* Reset swiper */
ul.swiper-wrapper {
    margin: 0;
    padding: 0;
    list-style: none;
}




/* Bullets tamanhos */
.swiper-pagination .bullet-scale-xsmall {
    transform: scale(0.25);
}
.swiper-pagination .bullet-scale-small {
    transform: scale(0.5);
}
.swiper-pagination .bullet-scale-medium {
    transform: scale(0.75);
}
.swiper-pagination .bullet-scale-large {
    transform: scale(1);
}



/* Botões */
.botao {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    height: auto;

    cursor: pointer;
    padding: 24px 40px;
    background-color: #fff;
    border: none;
    border-radius: 100px;
    text-decoration: none;

    outline: none;
    box-shadow: none;
    
    -webkit-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -moz-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -ms-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -o-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
}
.botao span {
    display: block;
    color: #241a1c;
    font-size: 17px;
    font-weight: 400;
    line-height: 13px;
    letter-spacing: -1%;
    text-align: left;
    text-transform: uppercase;
    text-decoration: none;
    
    -webkit-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -moz-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -ms-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -o-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
}
.botao svg {
    display: block;
    fill: #241A1C;
    width: 20px;
    height: 20px;

    -webkit-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -moz-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -ms-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    -o-transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
    transition: all .25s cubic-bezier(0.150, 0.775, 0.35, 1.250);
}
.botao:hover {
    transform: translateY(-3px) scale(1.05);
}
.botao:focus,
.botao:active {
    transform: translateY(0) scale(1);
    box-shadow: none;
}
.botao.--yellow {
    background-color: #e4ac23;
}
.botao:hover.--yellow {
    box-shadow: 0 3px 0 #b58817;
}
.botao:focus.--yellow,
.botao:active.--yellow {
    box-shadow: 0 0 0 transparent;
}
.botao.--stroke-yellow {
    background-color: transparent;
    border: 2px solid #e4ac23;
}
.botao:hover.--stroke-yellow {
    background-color: #e4ac23;
    box-shadow: 0 3px 0 #b58817;
}
.botao:focus.--stroke-yellow,
.botao:active.--stroke-yellow {
    box-shadow: 0 0 0 transparent;
}
.botao.--stroke-green svg.stroke {
    fill: none;
    stroke: #0ad829;
}
.botao.--stroke-green:hover svg.stroke {
    stroke: #fff;
}
.botao.--green {
    background-color: #0ad829;
}
.botao:hover.--green {
    box-shadow: 0 3px 0 #0ea024;
}
.botao:focus.--green,
.botao:active.--green {
    box-shadow: 0 0 0 transparent;
}
.botao.--stroke-green {
    background-color: transparent;
    border: 2px solid #0ad829;
}
.botao:hover.--stroke-green {
    background-color: #0ad829;
    box-shadow: 0 3px 0 #0ea024;
}
.botao:focus.--stroke-green,
.botao:active.--stroke-green {
    box-shadow: 0 0 0 transparent;
}
.botao.--stroke-green svg.stroke {
    fill: none;
    stroke: #0ad829;
}
.botao.--stroke-green:hover svg.stroke {
    stroke: #fff;
}


.site-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    pointer-events: none;
    z-index: 99;
    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;
}

/* Responsivo Mobile */
@media (max-width: 992px) {
    /* Header */    
    [data-mobile-status="open"],
    [data-mobile-busca="open"] {
        overflow: hidden;
    }
    [data-mobile-status="open"] .site-backdrop,
    [data-mobile-busca="open"] .site-backdrop {
        opacity: 1;
        pointer-events: all;
    }
    [data-scroll="true"] header.site-header,
    [data-mobile-busca="open"] header.site-header {
        background-color: #241A1C;
    }
    header.site-header .container {
        display: block;
    }
    header.site-header nav.navbar {
        justify-content: space-between;
        width: calc(100% - 40px);
        gap: 30px;

        -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-scroll="true"] header.site-header nav.navbar,
    [data-mobile-busca="open"] header.site-header nav.navbar {
        width: 100%;
    }
    header.site-header nav.navbar::before {
        width: calc(100% + 30px);
    }
    header.site-header nav.navbar .navbar-brand {
        margin: 0;
    }
    header.site-header nav.navbar .navbar-brand img {
        width: 162px;
        height: 30px;
    }
    header.site-header nav.navbar .navbar-nav {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 100vw;
        height: 100vh;
        flex-direction: column;
        background-color: #F1F5F1;
        z-index: 99999999;
        pointer-events: none;

        transform: scale(.8);
        border-radius: 60px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);

        overflow: hidden;
        
        -webkit-transition: all .35s ease-in-out;
        -moz-transition: all .35s ease-in-out;
        -ms-transition: all .35s ease-in-out;
        -o-transition: all .35s ease-in-out;
        transition: all .35s ease-in-out;
    }

    [data-mobile-status="open"] header.site-header nav.navbar .navbar-nav {
        right: 0;
        transform: scale(1) ;
        border-radius: 0;
        pointer-events: all;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    header.site-header nav.navbar .navbar-nav .header-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;

        padding: 15px;
        background-color: #241A1C;
    }
    header.site-header nav.navbar .navbar-nav .header-mobile button {
        display: block;
        width: 30px;
        height: 30px;
        
        background-color: transparent;
        border: none;
        outline: none;
        box-shadow: none;
    }
    header.site-header nav.navbar .navbar-nav .header-mobile button svg {
        display: block;
        width: 30px;
        min-width: 30px;
        height: 30px;
        min-height: 30px;
        stroke: #fff;
    }

    header.site-header nav.navbar .mobile-actions {
        gap: 15px;
    }
    header.site-header nav.navbar .mobile-actions button {
        display: block;
        width: 30px;
        height: 30px;
        
        background-color: transparent;
        border: none;
        outline: none;
        box-shadow: none;
    }
    header.site-header nav.navbar .mobile-actions button svg {
        display: block;
        width: 30px;
        min-width: 30px;
        height: 30px;
        min-height: 30px;
        stroke: #fff;
    }
    header.site-header nav.navbar + .navbar-actions .search-form {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        padding: 10px;
        background-color: #241A1C;
        border-radius: 0 0 30px 30px;
        opacity: 0;
        
        transform: translateY(-75px);
        z-index: -1;
        pointer-events: none;
        
        -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-busca="open"] header.site-header nav.navbar + .navbar-actions .search-form {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }
    header.site-header nav.navbar + .navbar-actions .search-form .icon-busca {
        display: none;
    }
    header.site-header nav.navbar .navbar-nav .nav-item {
        display: block;
        width: 100%;
        padding: 0 15px;
        margin: 15px 0 0 0;
    }
    header.site-header nav.navbar .navbar-nav .nav-link {
        padding: 15px;
        width: 100%;
        color: #241A1C;
        background-color: #fff;
        border-radius: 10px;
    }
    header.site-header nav.navbar .navbar-nav .nav-link::before {
        border-radius: 10px;
        border: 1px solid #e4ac23;
    }
    header.site-header nav.navbar .navbar-nav .nav-link:hover::before {
        transform: scale(1);
    }





    /* Section title */
    .section-title {
        gap: 10px;
        margin: 0 0 30px 0;
    }
    .section-title svg {
        width: 30px;
        height: 30px;
    }
    .section-title h2 {
        font-size: 24px;
    }




    /* Pacotes */
    .pacotes {
        margin: 30px 0;
    }




    /* Grupo WhatsApp */
    #grupo-wpp {
        margin: 60px 0;
    }
    #grupo-wpp .content {
        background-position: center right;
    }
    #grupo-wpp .content form {
        box-sizing: border-box;
        margin: 0;
        padding: 30px;
        width: 100%;
        max-width: 100%;
    }
    #grupo-wpp .content h2 {
        font-size: 20px;
        text-align: center;
        margin: 0 0 20px 0;
    }
    #grupo-wpp .content .form-input {
        flex-direction: column;
        gap: 5px;
    }
    #grupo-wpp .content .form-input input {
        padding: 0 15px;
    }
    #grupo-wpp .content .form-input button {
        width: 100%;
        padding: 0 20px;
        height: 50px;
    }




    /* Newsletter */
    #newsletter {
        margin: 60px 0;
    }
    #newsletter .content {
        background-position: center right;
    }
    #newsletter .content form {
        box-sizing: border-box;
        margin: 0;
        padding: 30px;
        width: 100%;
        max-width: 100%;
    }
    #newsletter .content h2 {
        font-size: 20px;
        text-align: center;
        margin: 0 0 20px 0;
    }
    #newsletter .content .form-input {
        flex-direction: column;
        gap: 5px;
    }
    #newsletter .content .form-input input {
        padding: 0 15px;
    }
    #newsletter .content .form-input button {
        width: 100%;
        padding: 0 20px;
        height: 50px;
    }




    /* Footer */
    .footer-site .footer-body {
        flex-direction: column;
        gap: 30px;

        margin-top: 30px;
        margin-bottom: 30px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .footer-site .footer-body .sitemap:first-child {
        margin: 0 auto;
    }
    .footer-site .footer-body .sitemap .list-redes {
        justify-content: center;
    }
    .footer-site .footer-body .sitemap .sitemap-item h2.titulo {
        display: block;
        text-align: center;
        margin: 0 auto;
    }
    .footer-site .footer-body .sitemap .sitemap-item h2:not(.titulo) {
        text-align: center;
    }
    .footer-site .footer-body .sitemap .sitemap-item a {
        text-align: center;
    }

    .footer-site .footer-copyright {
        padding: 0 0 30px 0;
    }
    .footer-site .footer-copyright .container {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    .footer-site .footer-copyright p.copyright {
        text-align: center;
    }
}