/* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


:root {
	/*GRID*/
	--grid-width: 1340px !important;
	--grid-gutter: 16px;
	
	/*TEXT*/
	--text-family: 'Raleway', sans-serif;
	--text-family-alt: 'Raleway', sans-serif;
	--text-family-bold: 'Raleway', sans-serif;
	
    --text-fsize: 15px;
	--text-md-fsize: 14px;
	--text-sm-fsize: 13px;

	--text-lheight: 1.59rem;
	--text-md-lheight: 1.59rem;
	--text-sm-lheight: 1.59rem;
	
	/*BASE BUTTON*/
	--btn-padding: 15px 25px;
	--btn-fsize: 0.8rem;
	--btn-lheight: 1.2rem;

	/*COLORS*/
	--color-primary: #004e64;
    --color-primary-filter: rgba(0, 78, 100, 0.5);
	--color-primary-alt: #04a898;
	--color-secondary: #c09e5f;
	--color-secondary-filter: rgba(192, 158, 95, 0.5);
	--color-alt: #536640;
	--color-black: #3c3950;
    --color-cta: #000;
	--color-white: #fff;
	--color-gray: #faf8f6;
	--color-gray-dark: #e9e4d9;
    --color-gray-alt: #e9e4d9;
    --color-light-gray: #f7fafc;
}


[data-ae-animation]{
    transition-property: opacity;
    transition-duration: 0.8s;
    opacity: 0;
}
[data-ae-animation].animated {
    opacity: 1;
}


html, body{
    font-family: var(--text-family);
    font-weight: 400;
    font-size: var(--text-fsize);
    line-height: var(--text-lheight);
    color: var(--color-black);
}
    
/* body{overflow-x: hidden;} */
  
.row{ max-width: var(--grid-width); margin: auto;}
.row.wide, .pre-header .row{ max-width: 90% }
.row.fullwidth{ max-width: 100% }
.row.fullwidth .row.fullwidth{ 
    margin: auto calc(-1 * var(--grid-gutter)); 
    max-width: calc(100% + (2 * var(--grid-gutter)));
}

.container.fullwidth{
    max-width: 100%;
    padding: 0;
}

a{
    text-decoration: none;
    color: var(--color-primary);
    transition: 0.25s;
}

a:hover, a.active{
    color: var(--color-black);
}

a img{transition: 0.25s;}
a:hover img{opacity: 0.7;}

h1, h2, h3, h4, h5, h6{
    font-family: var(--text-family);
    margin-bottom: 20px;
}

h1{font-size: 3rem;margin-top:0;}

h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong{
    font-family: var(--text-family-bold);
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
    color: var(--color-primary)
}
h1:hover a, h2:hover a, h3:hover a, h4:hover a, h5:hover a, h6:hover a{
    color: var(--color-secondary)
}

.h4, h4{
    font-family: var(--text-family-bold);
    font-size: 1.4rem;
}

.h5, h5 {
    font-size: 1.19rem;
}

.button, .button.active:hover{
    background: var(--color-alt);
    padding: var(--btn-padding); 
    font-size: var(--btn-fsize); 
    line-height: var(--btn-lheight); 
    color: var(--color-white);
    text-align: center;
    box-shadow: none;
    border: 0;
    border-radius: 6px;
}
.button.btn-small{padding: 10px 20px;font-size: 0.7rem;line-height: 1rem;}
.button, button{transition: 0.25s;}
.button:hover, .button.active{background: var(--color-secondary);color:var(--color-white)}

.button.pill{border-radius: 500px;}

.button.transparent {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid;
    border-radius: 500px;
}
.button.transparent:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    border: 2px solid var(--color-secondary);
}

.button.transparent.dropdown-toggle{
    color: var(--color-white);
    font-size: 1rem;
}

.btn.focus, .btn:focus{
    outline: 0;
    box-shadow: none;
}
.btn-copy {
    cursor: pointer;
}

label{
    display: block;
    margin-bottom: 0.5rem;
}
input, textarea, select{
    border: 1px solid #d3d3d3;
    border-radius: 0.3333rem;
    padding-left: 0.6667rem;
    background-color: transparent;
    height: 2.355rem;
    border-radius: 0 !important;
}
textarea{height: 8rem;}
input[type=radio]{
    width: revert;
    height: revert;
}

input:focus, textarea:focus, select:focus{
    box-shadow: 0 0 2px var(--color-secondary) !important;
    border-color: var(--color-secondary);
}

[class^="flex-list-"]{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(-1 * calc(var(--grid-gutter) / 2));
    padding: 0;
    width: calc(100% + (2 * var(--grid-gutter)));
    max-width: calc(100% + (2 * var(--grid-gutter)));
}

[class^="flex-list-"] li{
    padding: 0 calc(var(--grid-gutter) / 2)  20px;
}

.flex-list-3 li{width: 33.333333333%;}
.flex-list-4 li{width: 25%;}
.flex-list-5 li{width: 20%;}
.flex-list-6 li{width: 16.66666666%;}

.filter{
    background: linear-gradient(to right, var(--color-primary-filter) 30%, transparent) no-repeat;
    height: 100%;
    width: 100%;
}

.overlay-bg{
    background: linear-gradient(110deg, var(--color-primary) 0%, transparent) no-repeat;
    height: 100%;
    width: 100%;
}

.no-border{border: 0 !important;}

img.rounded{
    border-radius: 1rem !important;
}

.dropdown-item.active, .dropdown-item:active {
    background: var(--color-gray);
}

/* ----- Bootstrap fixs ------- */
img{max-width: 100%;height: auto !important;}
a{display: inline-block;}

ul.il-list{padding-left: 0;}

.c-primary{color: var(--color-primary) !important}
.c-secondary{color: var(--color-secondary) !important}
.c-gray{color: var(--color-gray) !important}
.c-white{color: var(--color-white) !important}
.c-black{color: var(--color-black) !important}
.c-gray-alt{color: var(--color-gray-alt) !important}

.bg-primary{background: var(--color-primary) !important}
.bg-primary-alt{background: var(--color-primary-alt) !important}
.bg-secondary{background: var(--color-secondary) !important}
.bg-gray{background: var(--color-gray) !important}
.bg-white{background: var(--color-white) !important}
.bg-black{background: var(--color-black) !important}
.bg-alt{background: var(--color-alt) !important}

.bg-gradient{background: linear-gradient(to left, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-black) 100%);}

.row > .row{margin: 0 -0.75rem;}

.modal-footer {display: block;}
input, textarea, select{width: 100%;outline: 0 !important;}

.vs--unsearchable .vs__search[readonly="readonly"]{
    border: 0 !important;
    box-shadow: none !important;
}

.small, small {
    font-size: .875rem;
}

blockquote {
    padding: 1rem 1.5rem 1.25rem;
    margin: 1rem 0 3rem;
    font-size: 1.25rem;
    background: var(--color-white);
    display: block;
    position: relative;
    border-left: 5px solid var(--color-secondary);
}
blockquote p {margin-bottom: 0;}

blockquote p::before, blockquote p::after {
    content: '\201C';
    font-size: 4rem;
    color: var(--color-gray-alt);
    line-height: 1px;
    vertical-align: bottom;
    margin-right: 5px;
}
blockquote p::after {
    content: '\201D';
}

.cta{
    background: var(--color-secondary);
    padding: 20px 0;
    margin: 25px 0;
    color: var(--color-white);
}
.cta p{margin-bottom: 0;}

.fw-500{font-weight: 500 !important;}

[data-tooltip]{
    position: relative;
    cursor: help;
}
[data-tooltip]::after{
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: var(--color-black);
    color: var(--color-white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    line-height: 1.2rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease-in-out;
    z-index: 9999999;
    width: 100%;
}
[data-tooltip]:hover::after{
    opacity: 1;
    top: 30px;
}

/* ------------------------------------- */

.pre-header {
    padding: 0.5rem 0;
}
.pre-header p{margin-bottom: 0;}
.pre-header a:hover{opacity: 0.8;}
.pre-header span.bi{vertical-align: bottom;}

header{
    background: var(--color-primary);
    z-index: 100;
}

header .toggle-menu{
    display: none;
    font-size: 2rem;
}

header .toggle-menu.active i:before{
    content: "\F62A"
}

header .menu{
    position: initial;
}

header nav{
    padding: 1.1rem 0;
    background: var(--color-secondary);
}
header nav.fixed, header.fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 101;
}

header .logo{
    max-width: 195px
}

header .c-white *{
    color: var(--color-white) !important;
}

nav {width: 100%;}
nav a{
    font-size: 11.5px;
    font-family: var(--text-family-alt);
    color: var(--color-white);
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 6px;
    transition: .18s;
    white-space: nowrap;
    letter-spacing: .06em;
}
nav a:hover{background: rgba(255,255,255,.18);color: var(--color-white);}

nav .item{
    z-index: 100;
}

nav .item:first-of-type{
    padding-left: 0;
}

nav .item:last-of-type a{
    background: var(--color-primary);
    font-weight: 800;
    margin-left: 4px;
    letter-spacing: .05em;
}
nav .item:last-of-type a:hover{
    background: var(--color-primary-filter);
}


nav .item:hover::before{
    display: block;
}

.megamenu{
    display: none;
    position: absolute;
    z-index: 1;
    left: 0;
    margin-top: 33px;
    width: 100%;
    padding: 2rem 0;
    background: var(--color-gray);
}


nav .item:hover .megamenu::after{
    content: " ";
    display: block;
    height: 50px;
    width: 100%;
    position: absolute;
    top: -35px;
    left: 0;
    z-index: -1;
    cursor: pointer;
}


nav .item:hover .megamenu, .megamenu:hover{display: block;}


#BSslider-home h1{vertical-align: top;}

.carousel.carousel-banner{
    min-height: 650px;
}

.carousel .carousel-inner{
    display: flex;
    align-items: center;
    min-height: inherit;
}

.carousel .fullwidth{
    width: 100%;
    max-height: 650px;
    min-height: 650px;
}

.carousel video.fullwidth{
    object-fit: cover;
}
.carousel .fullwidth+.filter, .carousel .fullwidth .filter{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 8px);
    z-index: 1;
    color: var(--color-white);
    background: linear-gradient(to right, var(--color-primary-filter) 30%, transparent) no-repeat;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 2.5rem;
    height: 2.5rem;
}

.carousel-indicators {
    position: relative;
    margin-top: 1.25rem;
}
.carousel-indicators [data-bs-target] {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}


.card-img{
    background: var(--bg-img) center center / cover;
    width: 100%;
    aspect-ratio: 1 / 0.75;
    color: var(--color-white);
    transition: 0.35s;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
}
.card-img:hover{
    margin-top: -15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    margin-bottom: 15px;
    cursor: pointer;
}

.sw-50 .card-img{
    aspect-ratio: 1 / 0.5;
}

.card-img .overlay-bg{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(0,0,0,0.35);
    transition: 0.35s;
}

.card-img:hover .overlay-bg{
    /* background: var(--color-secondary-filter); */
    background: linear-gradient(to top left, rgba(0, 78, 100, 0.5), rgba(192, 158, 95, 0.5));
}

.card-img .overlay-bg .button{
    background: var(--color-gray-dark);
    color: var(--color-black);
    border-radius: 5px;
}

.card-img:hover .overlay-bg .button{
    background: var(--color-white);
}


.card-img h3{
    font-size: 2rem;

}
.card-img h3.small {
    font-size: 1.5rem;
    font-weight: 700;
}
.card-img h4{font-size: 2rem;font-weight: 400;}
.card-img h4.small{font-size: 1.5rem;}

.card .card-header{
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.1rem;
}

.card .button{border-radius: 6px;}

.card .card-footer.bg-primary .button{
    background-color: var(--color-secondary);
}

.card .card-footer.bg-primary .button:hover{
    background-color: var(--color-alt)
}

.listagem .card {
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}
.listagem .card img{
    height: 225px !important;
    width:100%;
    object-fit:cover
}
.listagem .card h4 small{font-size: .675rem;}

.listagem .card .legenda{
    line-height: 1.4;
}

.listagem .card h2{
    font-size: 1rem
}

#app-noticias-listagem img{
    height: 250px !important;
    width: 100%;
    object-fit: cover;
}


.filtro-clear{
    position: absolute;
    top: 7px;
    right: 5px;
    cursor: pointer;
    background: var(--color-white);
    transition: 0.25s;
}
.filtro-clear:hover{color: var(--color-gray-alt);}


.category-description .row{
    margin: 0 calc(-1.5 * var(--grid-gutter));
    max-width: calc(100% + (2 * var(--grid-gutter)));
}


.banner-bar h1{font-size:2.6rem}

.form-box{margin-top: -450px;z-index: 10;}
.form-box .sticky-form{margin-top: -60px;}
.form-box .sticky-form.alt-form{margin-top: -45px;}

.form-box .alt-form .card{
    border: 0;
}

.form-box .alt-form .card-header{
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2;
    padding: 10px;
}

.form-box .alt-form .card-header br{
    margin-bottom: 1rem;
}

.quick-info{
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.quick-info span{
    display: flex;
    font-size: 1.25rem;
    text-align: center;
    height: inherit;
    width: 100%;
    margin-bottom: 10px;
}

.quick-info i{
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    margin-right: 0.5rem;
    color: var(--color-secondary);
}

.sticky-form{ position:sticky;top:70px}

.nav-tabs .nav-link{
    background: transparent !important;
    border: 0 !important;
    border-bottom: 2px solid transparent !important;
    font-size: 1rem;
}
.nav-tabs .nav-link.active{
    color: var(--color-secondary);
    border-color: var(--color-secondary) !important;
}

.vueperslides__arrow svg {
    color: var(--color-alt)
}
.galeria .vueperslide {
    transition: 0.3s ease-in-out;
    transform: scale(0.8);
}
.galeria .vueperslide--active {
    transform: scale(1);
}

.galeria .offset-slide--first .vueperslides__track-inner {
    transform: translate3d(33.333%, 0, 0) !important;
}

.galeria .offset-slide--last .vueperslides__track-inner {
    transform: translate3d(-133.33%, 0, 0) !important;
}

/* .galeria .vueperslides__track{
    width: 90%;
    margin: auto;
} */
.vueper-flex.listagem  {margin: 0 -20px;}
.vueper-flex .vueperslide {
    display: flex;
}

.img-grid img {
    border-radius: 1rem;
}

.img-grid .sw-50:nth-of-type(1) img {
    height: calc(100% - 1rem) !important;
}

.img-grid .sw-50:nth-of-type(2) span {
    width: 50%;
    padding: 0 1rem;
}
.img-grid .sw-50:nth-of-type(2) img {

    margin-bottom: 1rem;
}

/* style="color: rgb(0, 162, 225);" */
[style="color: rgb(0, 162, 225);"]{
    color: var(--color-primary) !important;
}

.news-img{
    height:600px !important;
    width:100%;
    object-fit:cover
}

.user-photo{
    width: 200px;
    min-width: 200px;
    display: flex;
    align-items: center;
}

.payment-options-container .payment-option-container .payment-option-img {
    max-width: 100px;
}


.countdown.countdown-shown{
    background: var(--danger);
    color: var(--color-white);
    padding: 30px 20px;
    border-radius: 0.5rem;
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 20px;
}
  

footer{
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 5rem 0 1.6rem;
    margin-top: 1.5rem;
    position: relative;
}

footer::before,footer::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url("/img/wave.png");
    width: 150px;
    height: 150px;
    background-size: cover;
}

footer::after{
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
}


footer a{
    color: var(--color-gray-dark);
}

footer a:hover{
    color: var(--color-white);
}


footer ul{
    list-style-type: "⊞ ";
    color: var(--color-gray-dark);
    padding-left: 15px;
}
footer ul li{margin-bottom: 0.25rem;}

footer .cta{
    background: var(--color-primary);
    --border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: var(--border);
    border-bottom: var(--border);
    padding: 20px 0;
}

footer .cta .row{
    max-width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
}

.oferta label{
    text-align: center;
    justify-content: space-between;
}
.wrapper .oferta label.toggle span{left: -10px;}

.delayOpacity{
    animation: fade-in 500ms forwards;
    opacity: 0;
    min-height: 500px;
}

.show-form{
    position: fixed; bottom: 10px; left: 25px;width:calc(100% - 50px);z-index:9;box-shadow: 0 0 15px rgba(0,0,0,0.5);cursor: pointer;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* ------------------------------------- */

/* Mobile only */
@media only screen and (max-width: 40em) {

    .lazyload-xs{
        animation: lazy-load 500ms forwards;
        opacity: 0;
    }
    
    @keyframes lazy-load {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }

    html, body{
        font-size: var(--text-sm-fsize);
        line-height: var(--text-sm-lheight);
        --btn-padding: 10px 10px;
    }
    .row.wide{max-width: 100%;margin-left: auto;margin-right: auto;}
    
    .xs-h-scroll{white-space: nowrap;}

    [class*="flex-list-"]:not(.noscroll), .xs-h-scroll {
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        max-width: 100%;
    }
    [class*="flex-list-"]:not(.noscroll) {
        flex-wrap: nowrap;
        padding-left: 2.5rem;
        margin-left: 0;
        margin-right: 0;
    }

    [class*="flex-list-"].noscroll{
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    [class*="flex-list-"] li {
        width: 100%;
        min-width: 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    [class*="flex-list-"]::-webkit-scrollbar-track,
    .xs-h-scroll::-webkit-scrollbar-track
    {
        border-radius: 10px;
        background-color: var(--color-gray-alt);
    }

    [class*="flex-list-"]::-webkit-scrollbar,
    .xs-h-scroll::-webkit-scrollbar
    {
        height: 0.35rem;
        background-color: transparent;
    }

    [class*="flex-list-"]::-webkit-scrollbar-thumb,
    .xs-h-scroll::-webkit-scrollbar-thumb
    {
        border-radius: 10px;
        background-color: var(--color-secondary);
    }

    [class*="flex-list-"].justify-content-center {
        justify-content: initial !important;
    }
    

    h1, h1 {font-size: 2rem;}
    h2, .h2 {font-size: 1.8rem;}
    #BSslider-home h1{font-size: 3rem;}
    .banner-bar h1 {
        font-size: 2rem;
    }

    header .toggle-menu{display: block;}
    header nav:not(.active) {display: none !important;}
    header nav {
        position: absolute;
        background: var(--color-white);
        z-index: 999;
        padding: 1.5rem 0 1.25rem;
        box-shadow: 0 15px 15px rgba(0,0,0,0.1);
    }
    header nav a{
        color: var(--color-primary);
        font-size: 1.2rem;
    }

    nav .item:last-of-type a {
        color: var(--color-white);
    }

    header nav .item{
        width: 100%;
        margin-bottom: 1rem;
        font-weight: 500;
    }

    header .dropdown {
        margin-left: auto !important;
    }

    .logo-box{display: flex;}
    .logo-box .logo{margin-top: 5px !important;}
    
    #app-programas-listagem-destaque .flex-list-3 .sw-50{width: 100% !important;}

    .toggle-filter{font-size: 1rem;}

    .filters:not(.active){display: none;}
    .filters .col{flex-basis: auto;}

    .sw-50 .card-img {
        aspect-ratio: 1 / 0.75;
    }

    .card-img h3 {
        font-size: 1.35rem;
    }

    .card-img h4.small {
        font-size: 1.1rem;
    }
    
    .nav.nav-tabs{
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        overflow-y: hidden;
        padding-bottom: 10px;
    }

    .vueper-flex.listagem  {margin: 0;}
    .vueper-flex.listagem .vueperslide {
        width: 100% !important;
    }

    .vueperslides__bullets--outside {
        overflow-x: hidden;
    }

    .form-box, .form-box .sticky-form, .form-box .sticky-form.alt-form{margin-top: 0;}

    .news-img{height: 250px !important;}
    blockquote {font-size: initial;}

    .user-bio{flex-wrap: wrap;}
    .user-bio .user-photo{margin-bottom: 10px;}

    .hide-xs-hr hr{display: none;}

    footer {overflow-x: hidden;}

    footer .footer-blocks {flex-wrap: wrap;}
    footer .footer-blocks .col{width: 100% !important;flex-basis: auto;}

}

@media only screen and (min-width: 1030px) and (max-width: 1200px)  {
    .hide-for-tablet{display: none !important;}
    .hide-for-tablet+.dropdown{margin-left: auto !important;}
}

@media only screen and (min-width: 1030px) and (max-width: 1441px)  {
    
    body{
        font-size: var(--text-md-fsize);
        line-height: var(--text-md-lheight);
    }
    
    .pre-header .row {max-width: 95%;}
    .row.wide {max-width: 95%;}

    .flex-list-5 li {
        width: 33.333333%;
    }

    .card-img h3.small{
        font-size: 1.2rem;
    }

    .card-img h4 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .button, .button.active:hover {
        padding: 10px 15px;
    }

    .listagem .card img {
        height: 200px !important;
    }

    .vueperslide .button.btn-small {padding: 10px 13px;}

}

@media only screen and (min-width: 1441px) and (max-width: 1540px)  {

    body{
        font-size: var(--text-md-fsize);
        line-height: var(--text-md-lheight);
    }

    .card-img h3.small{
        font-size: 1.2rem;
    }

    .card-img h4 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .button, .button.active:hover {
        padding: 10px 15px;
    }

    .listagem .card img {
        height: 175px !important;
    }

    .vueper-flex.listagem .vueperslides {
        height: 500px !important;
    }

    .card .button {
        padding: 10px 10px !important;
    }


}



/* Tablet only */
@media only screen and (min-width: 40.063em) and (max-width: 64em) {
    html, body{
        font-size: var(--text-md-fsize);
        line-height: var(--text-md-lheight);
    }
    
    .flex-list-5 li, .flex-list-4 li{width: 50%;}
    
}

/* Desktop only */
@media only screen and (min-width: 64.063em) {

}


/* =============================================
   PAGE CRUZEIRO — layout 2026
   ============================================= */

:root {
    --dc-radius: 12px;
    --dc-inner-radius: 8px;
    --dc-shadow:  0 2px 15px rgba(0,0,0,.06);
    --dc-shadow2: 0 2px 10px rgba(0,0,0,.05);
}

/* Section card — reusable */
.section-card {
    border-radius: var(--dc-radius);
    box-shadow: var(--dc-shadow);
    position: relative;
    z-index: 2;
}
.section-card::before {
    background: url('/img/ondas.png') right top / 1000px auto no-repeat #fff;
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.35;
    border-radius: var(--dc-radius);
    height: 100%;
    width: 100%;
    z-index: 1;
}
.section-card .card-body{
    position: relative;
    z-index: 2;
}
.section-card .card-body :last-child{
    margin-bottom: 0;
}


.section-card ul{
    padding-left: 1.25rem;
}

.section-card li::marker {
  color: var(--color-secondary);
  content: "◆ ";
}

/* ====== Itinerário timeline ====== */
#itinerario ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    margin-bottom: 1.5rem;
    position: relative;
}
#itinerario ul::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: var(--color-secondary, #c8a96e);
    opacity: .35;
    border-radius: 2px;
}
#itinerario ul li {
    position: relative;
    padding-left: 32px;
    padding-bottom: 16px;
    padding-top: 4px;
    margin-bottom: 0;
    line-height: 1.6;
}
#itinerario ul li:last-child {
    padding-bottom: 0;
}
#itinerario ul li::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid var(--color-secondary, #c8a96e);
    box-shadow: 0 0 0 3px rgba(200,169,110,.15);
    z-index: 1;
}
#itinerario ul li::marker {
    content: none;
}
#itinerario ul li:first-child::before,
#itinerario ul li:last-child::before {
    background: var(--color-secondary, #c8a96e);
}
#itinerario ul li strong {
    color: var(--color-primary, #1a3c5e);
}

/* Section kicker (h3 above title) */
.page-cruzeiro .section-kicker {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 5px;
}

/* Section titles */
.page-cruzeiro .section-title {
    letter-spacing: -.2px;
    color: var(--color-primary);
    font-weight: 900;
    font-size: 1.5rem;
}

/* Gold line under section title */
.page-cruzeiro .section-gold-line {
    height: 3px;
    width: 80px;
    margin-bottom: 16px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), #d4b776, transparent);
    background-size: 200% 100%;
    animation: section-gold-glow 2.5s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes section-gold-glow {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* Detalhes grid */
.page-cruzeiro .detalhes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (max-width: 991px) {
    .page-cruzeiro .detalhes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .page-cruzeiro .detalhes-grid {
        grid-template-columns: 1fr;
    }
}
.page-cruzeiro .detalhe-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    /* padding: .85rem;
    border-radius: var(--dc-inner-radius);
    background: #f8f9fa;
    border: 1px solid #eee; */
}
.page-cruzeiro .detalhe-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    width: 1.75rem;
    text-align: center;
}
.page-cruzeiro .detalhe-label {
    font-size: .7rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}
.page-cruzeiro .detalhe-value {
    font-weight: 700;
    color: var(--color-primary);
    font-size: .95rem;
    line-height: 1.3;
}
.page-cruzeiro .detalhe-desc {
    font-size: .82rem;
    line-height: 1.3;
}

/* Page background */
.page-cruzeiro {
    background: #f8f9fa;
}

/* Preline utility */
.preline { white-space: pre-line; }

/* Hero banner (fullwidth background) */
.page-cruzeiro .hero-banner {
    position: relative;
    background-size: cover;
    background-position: center center;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}
.page-cruzeiro .hero-banner-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(180deg, rgba(0,30,40,.10) 0%, rgba(0,30,40,.65) 100%);
    pointer-events: none;
}
.page-cruzeiro .hero-banner-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: #fff;
}
/* Trust chips inside hero */
.page-cruzeiro .trust-chip-hero {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.25);
    color: #fff;
    backdrop-filter: blur(6px);
}
/* .page-cruzeiro .trust-chip-hero i {
    color: rgba(255,255,255,.85) !important;
} */
.page-cruzeiro .hero-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: .75rem;
    font-size: .85rem;
}
.page-cruzeiro .hero-breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
    font-size: .85rem;
    font-family: inherit;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    padding: 0;
    border-radius: 0;
    background: transparent;
    white-space: normal;
    transition: color .18s;
}
.page-cruzeiro .hero-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
    background: transparent;
}
.page-cruzeiro .hero-breadcrumb .breadcrumb-item.active {
    color: rgba(255,255,255,.65);
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.page-cruzeiro .hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,.5);
}
.page-cruzeiro .hero-banner-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,.35);
    margin-bottom: 1rem;
    line-height: 1.15;
    max-width: 650px;
}
.page-cruzeiro .hero-banner-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}
.page-cruzeiro .hero-chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #fff;
    font-size: .9rem;
}
.page-cruzeiro .hero-chip > i {
    font-size: 1.1rem;
    opacity: .85;
}
.page-cruzeiro .hero-chip > span {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.page-cruzeiro .hero-chip-label {
    text-transform: uppercase;
    font-size: .6rem;
    letter-spacing: 1.5px;
    opacity: .7;
    font-weight: 600;
}
.page-cruzeiro .hero-chip-value {
    font-weight: 800;
}

/* BS4 polyfill utilities (BS5 classes missing in 4.6.2) */
.page-cruzeiro .text-semi { font-weight: 600; }
.page-cruzeiro .hero-price-lg { font-size: 2rem; }

/* Gap polyfills via margins (BS4 has no gap utilities) */
.page-cruzeiro .anchor-gap > * + * { margin-left: 1.25rem; }
.page-cruzeiro .chip-gap > * { margin-right: .5rem; margin-bottom: .5rem; }
.page-cruzeiro .hero-inner-gap > * + * { margin-left: 1rem; }

/* Trust chips */
.page-cruzeiro .trust-chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .75rem;
    border-radius: 999px;
    background: rgba(255,255,255,.28);
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: var(--dc-shadow2);
    font-weight: 800;
    font-size: .85rem;
    backdrop-filter: blur(10px);
}

/* Badge soft */
.page-cruzeiro .badge-soft {
    background: rgba(233,228,217,.90);
    border: 1px solid rgba(192,158,95,.40);
    color: var(--color-primary);
    font-weight: 900;
}

/* Anchor nav bar */
.page-cruzeiro .anchor-bar {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    box-shadow: var(--dc-shadow2);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}
.page-cruzeiro .anchor-btn {
    font-weight: 700;
    font-size: .85rem;
    white-space: nowrap;
    color: var(--color-primary);
    text-decoration: none;
    padding: .4rem .1rem;
    border-bottom: 2px solid transparent;
    transition: color .18s, border-color .18s;
    background: none;
    border-radius: 0 !important;
}
.page-cruzeiro .anchor-btn:hover {
    color: var(--color-secondary);
    border-bottom-color: var(--color-secondary);
    text-decoration: none;
}
.page-cruzeiro .anchor-btn.is-active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    background: none;
    box-shadow: none;
}

.thead-primary {
    background-color: var(--color-primary);
    color: #fff;
}

/* Precos table inner border-radius */
.page-cruzeiro #precos .table {
    border-radius: var(--dc-inner-radius);
    overflow: hidden;
}
.page-cruzeiro #precos .thead-primary th:first-child {
    border-top-left-radius: var(--dc-inner-radius);
}
.page-cruzeiro #precos .thead-primary th:last-child {
    border-top-right-radius: var(--dc-inner-radius);
}
.page-cruzeiro #precos .table tbody tr:last-child td:first-child {
    border-bottom-left-radius: var(--dc-inner-radius);
}
.page-cruzeiro #precos .table tbody tr:last-child td:last-child {
    border-bottom-right-radius: var(--dc-inner-radius);
}

.page-cruzeiro .table th, .page-cruzeiro .table td {
  border-top: 0;
}

/* btn-primary & btn-outline-primary overrides for page-cruzeiro */
.page-cruzeiro .btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}
.page-cruzeiro .btn-primary:hover {
    background-color: #003a4b;
    border-color: #003a4b;
    color: #fff;
}
.page-cruzeiro .btn-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(0,78,100,.25);
}
.page-cruzeiro .btn-outline-primary {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background-color: transparent;
}
.page-cruzeiro .btn-outline-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}
.page-cruzeiro .btn-outline-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(0,78,100,.25);
}
/* (anchor-btn.is-active moved to anchor-bar block) */



/* Booking sidebar sticky */
.page-cruzeiro .sticky-top-offset {
    top: 92px;
}

/* Row gutter compensation (replaces BS5 g-3 g-lg-4) */
.page-cruzeiro .row.wide > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}
@media (min-width: 992px) {
    .page-cruzeiro .row.wide > [class*="col-"] {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Override form-box for new layout */
.page-cruzeiro .form-box {
    margin-top: 0;
    z-index: 10;
}
.page-cruzeiro .form-box .sticky-form {
    margin-top: 0;
}

/* Mobile bottom bar */
.page-cruzeiro .mobile-bar {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    z-index: 1070;
}

/* ====== Meeting Points ====== */
.meeting-points-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.meeting-point-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: var(--dc-inner-radius, 8px);
    background: var(--rc-gray-100, #f7fafc);
    border: 1px solid #e2e8f0;
    transition: box-shadow .2s ease;
}
.meeting-point-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary, #004e64) 40%, var(--color-secondary, #04a898) 100%);
    color: #fff;
    font-size: 18px;
}
.meeting-point-info {
    flex: 1;
    min-width: 0;
}
.meeting-point-name {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary, #004e64);
}
.meeting-point-desc {
    font-size: .875rem;
    color: #4a5568;
    line-height: 1.5;
}
.meeting-point-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
    font-size: .8rem;
    color: #718096;
}
.meeting-point-contact i {
    margin-right: 4px;
    color: var(--color-primary, #004e64);
}

/* ====== Mosaic Gallery Grid ====== */
.mosaic-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
    gap: 8px;
}
.mosaic-gallery .mosaic-hero {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
.mosaic-gallery .mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--dc-inner-radius, 10px);
    cursor: pointer;
}
.mosaic-gallery .mosaic-item img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform .3s ease, opacity .4s ease;
}
.mosaic-gallery .mosaic-loading {
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: mosaic-shimmer 1.5s ease-in-out infinite;
}
.mosaic-gallery .mosaic-loading img {
    opacity: 0;
}
@keyframes mosaic-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.mosaic-gallery .mosaic-item:hover img {
    transform: scale(1.05);
}
.mosaic-gallery .mosaic-more {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    pointer-events: none;
}
@media (max-width: 767px) {
    .mosaic-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
    }
    .mosaic-gallery .mosaic-hero {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

/* ====== Gallery Lightbox ====== */
.galeria-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lbFadeIn .25s ease;
}
@keyframes lbFadeIn { from { opacity:0 } to { opacity:1 } }
.galeria-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    user-select: none;
}
.galeria-lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    opacity: .8;
    transition: opacity .2s;
}
.galeria-lightbox-close:hover { opacity:1 }
.galeria-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background .2s;
}
.galeria-lightbox-arrow:hover { background: rgba(255,255,255,.3) }
.galeria-lightbox-prev { left: 16px }
.galeria-lightbox-next { right: 16px }
.galeria-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.7);
    font-size: .9rem;
}

/* Price display in hero */
.page-cruzeiro .hero-price {
    color: var(--color-alt);
    line-height: 1;
    font-weight: 900;
}

/* Rounded inner content boxes */
.page-cruzeiro .content-box {
    border: 1px solid rgba(15,23,42,.10);
    border-radius: var(--dc-inner-radius);
    padding: 1rem;
    background: var(--color-light-gray);
}

.content-box > :last-child {
  margin-bottom: 0;
}

/* Related items in page-cruzeiro */
.page-cruzeiro .vueper-flex.listagem {
    margin: 0;
}
.page-cruzeiro .vueper-flex.listagem .vueperslide,
.page-cruzeiro .vueper-flex.listagem .vueperslide > * {
    width: 100%;
}
.page-cruzeiro .vueper-flex.listagem .card {
    width: 100%;
}

/* FAQ clean accordion */
.faq-list .faq-item {
    border-top: 1px solid #e0e0e0;
}
.faq-list .faq-item:first-child {
    border-top: 0;
}
.faq-list .faq-answer p {
    margin: 0;
}
.faq-list .faq-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    background: none;
    border: 0;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-primary);
    cursor: pointer;
    gap: 1rem;
}
.faq-list .faq-toggle:hover {
    text-decoration: none;
}
.faq-list .faq-toggle:focus {
    outline: none;
}
.faq-list .faq-icon::before {
    content: "\F64D";
}
.faq-list .faq-toggle:not(.collapsed) .faq-icon::before {
    content: "\F2EA";
}
.faq-list .faq-answer {
    padding: 0 0 1rem 0;
    color: #555;
}

.accordion > .card {
  border-radius: var(--dc-inner-radius);
}

.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}



/* ---- Page cruzeiro responsive ---- */

@media only screen and (max-width: 40em) {
    .page-cruzeiro .hero-banner {
        min-height: 320px;
    }
    .page-cruzeiro .hero-banner-content {
        padding: 1.5rem 1rem;
    }
    .page-cruzeiro .hero-banner-title {
        font-size: 1.8rem;
    }
    .page-cruzeiro .hero-chip {
        font-size: .8rem;
    }
    .page-cruzeiro .anchor-bar {
        overflow-x: auto;
        flex-wrap: nowrap !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .page-cruzeiro .anchor-bar::-webkit-scrollbar {
        display: none;
    }
}