/* @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;
}


[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)));
}

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: 100;
}

header .logo{
    max-width: 195px
}

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

nav {width: 100%;}
nav a{
    font-size: 1rem;
    font-family: var(--text-family-alt);
    margin: auto;
    color: var(--color-white);
}


nav .item{
    float: left;
    padding: 0 16px;
    z-index: 100;
}

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


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;
    }

    header nav .item{
        width: 100%;
        margin-bottom: 1rem;
        font-weight: 500;
    }
        
    nav .item:first-of-type {
        padding-left: 16px;
        margin-top: 1rem;
    }

    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) {

}