@charset "UTF-8";

/* FONTE */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* VARIAVEIS */

:root{

    --dark-1: #131316;
    --dark-2: #2F3037;
    --dark-3: #6A6B70;

    --light-1: #F9F9FA;
    --light-2: #D9D9DF;
    --light-3: #ADADC7;

    --primary-1: #154766;
    --primary-2: #2274A5;
    --primary-3: #7CBEE3;

    --secondary-1: #B38504;
    --secondary-2: #FFBA08;
    --secondary-3: #FFD87A;

    --tertiary-1: #06060A;
    --tertiary-2: #101220;
    --tertiary-3: #2F3145;

    --quaternary-1: #057356;
    --quaternary-2: #09BC8A;
    --quaternary-3: #7BE0C5;

    --quinary-1: #B22D2A;
    --quinary-2: #FF3C38;
    --quinary-3: #FF9A97;

    --primary-weak: rgba(34, 116, 165, 0.15);
    --secondary-weak: rgba(255, 186, 8, 0.15);
    --tertiary-weak: rgba(16, 18, 32, 0.15);
    --quaternary-weak: rgba(9, 188, 138, 0.15);
    --quinary-weak: rgba(255, 60, 56, 0.15);

    --primary-gradient:linear-gradient(to bottom, #2274A5 0%, #1E6590 100%);
    --secondary-gradient:linear-gradient(to bottom, #FFBA08 0%, #DFA20A 100%);
    --tertiary-gradient:linear-gradient(to bottom, #101220 0%, #0E0F1B 100%);
    --quaternary-gradient:linear-gradient(to bottom, #09BC8A 0%, #0AA177 100%);
    --quinary-gradient:linear-gradient(to bottom, #FF3C38 0%, #DA2F2C 100%);
    --dark-gradient:linear-gradient(to bottom, #35363A 0%, #28292C 100%);
    --light-gradient:linear-gradient(to bottom, #FFFFFF 0%, #DADADF 100%);

    --container-sm: 1180px;
    --container-md: 1320px;
    --container-lg: 1440px;
}

/* FORMATACAO DE ESTILOS */

html{
    font-size:20px;
}
html,body{
    width:100%;
    height:100%;
    color:var(--tertiary-2);
    background-color:var(--light-1);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style:normal;
    font-display:swap;
    font-optical-sizing: auto;
    font-variation-settings:"wdth" 100;
}
h1,h2,h3,h4,h5,h6{
    font-size: 1rem;
    font-weight: 600;
}
*{
    padding:0;
    margin:0;
    line-height:135%;
}
b{
    font-weight: 500;
}
*::selection{
    background-color:var(--primary-3);
    color:var(--light-1);
}
input, select, textarea, button{
    outline:none;
    font-family:'Poppins', sans-serif;
    font-size:.8rem;
    color:var(--dark-3);
}
input:not([type=checkbox]){
    width:calc(100% - calc(2rem + 2px));
    padding:0 1rem;
    height:1.5rem;
}
select{
    width:100%;
    padding:0 1rem;
    height:calc(1.5rem + 2px);
}
textarea{
    width:calc(100% - calc(2rem + 2px));
    padding:10px 1rem;
    resize:none;
    overflow-y:auto;
}
input:not([type=checkbox]),select,textarea{
    border-radius:6px;
    background-color:var(--light-1);
    border:1px solid var(--light-3);
}
input:focus ,textarea:focus{
    outline:none;
}
a{
    text-decoration:none;
    cursor: pointer;
}

/* BIBLIOTECA DE ESTILOS */

.txt-big{
    font-size:clamp(1.6rem, 1.35rem + 1.3vw, 2rem);
}
.txt-large{
    font-size:clamp(1.1rem, 1rem + 0.6vw, 1.3rem);
}
.txt-small{
    font-size:clamp(0.75rem, 0.72rem + 0.15vw, 0.8rem);
}
.txt-minuscule{
    font-size:clamp(0.66rem, 0.64rem + 0.12vw, 0.7rem);
}
.txt-left{
    text-align: left;
}
.txt-center{
    text-align: center;
}
.txt-right{
    text-align: right;
}
.container{
    width: 92%;
    margin: 0 auto;
    position: relative;
}
.container-sm{
    max-width: var(--container-sm);
}
.container-md{
    max-width: var(--container-md);
}
.container-lg{
    max-width: var(--container-lg);
}
.padding{
    padding:5rem 0;
}
.padding-top{
    padding-top:5rem;
}
.padding-bottom{
    padding-bottom:5rem;
}
.padding-small{
    padding:2.5rem 0;
}
.padding-top-small{
    padding-top:2.5rem;
}
.padding-bottom-small{
    padding-bottom:2.5rem;
}
.flex{
    display:flex;
}
.start-start{
    align-items:flex-start;
    justify-content:flex-start;
}
.start-center{
    align-items:flex-start;
    justify-content:center;
}
.start-end{
    align-items:flex-start;
    justify-content:flex-end;
}
.start-between{
    align-items:flex-start;
    justify-content:space-between;
}
.start-around{
    align-items:flex-start;
    justify-content:space-around;
}
.start-evenly{
    align-items:flex-start;
    justify-content:space-evenly;
}
.center-start{
    align-items:center;
    justify-content:flex-start;
}
.center-center{
    align-items:center;
    justify-content:center;
}
.center-end{
    align-items:center;
    justify-content:flex-end;
}
.center-between{
    align-items:center;
    justify-content:space-between;
}
.center-around{
    align-items:center;
    justify-content:space-around;
}
.center-evenly{
    align-items:center;
    justify-content:space-evenly;
}
.end-start{
    align-items:flex-end;
    justify-content:flex-start;
}
.end-center{
    align-items:flex-end;
    justify-content:center;
}
.end-end{
    align-items:flex-end;
    justify-content:flex-end;
}
.end-between{
    align-items:flex-end;
    justify-content:space-between;
}
.end-around{
    align-items:flex-end;
    justify-content:space-around;
}
.end-evenly{
    align-items:flex-end;
    justify-content:space-evenly;
}
.stretch-start{
    align-items:stretch;
    justify-content:flex-start;
}
.stretch-center{
    align-items:stretch;
    justify-content:center;
}
.stretch-end{
    align-items:stretch;
    justify-content:flex-end;
}
.stretch-between{
    align-items:stretch;
    justify-content:space-between;
}
.stretch-around{
    align-items:stretch;
    justify-content:space-around;
}
.stretch-evenly{
    align-items:stretch;
    justify-content:space-evenly;
}

/* EFEITO SCROLL */

.scroll-reveal {
    opacity:0;
    transform:translateY(30px);
    transition:opacity 0.5s ease-out, transform 0.5s ease-out;
    transition-delay:0.25s;
}
.scroll-reveal.visible {
    opacity:1;
    transform:translateY(0);
}

/* LOADING */

.loading{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    background-color: var(--light-3);
}

.loader {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.loader img{
    max-width: calc(200px);
    width:calc(100% - 40px);
}

/* POPUP */

.popup-wallpaper{
    width:100%;
    height:100%;
    position:fixed;
    background:rgba(16,18,32,.75);
    z-index:990;
    display:none;
    backdrop-filter:blur(3px);
    -webkit-backdrop-filter:blur(3px);
}
.popup{
    width:92%;
    min-width:260px;
    max-width:560px;
    height:auto;
    position:fixed;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    z-index:995;
    box-shadow:0 0 30px rgba(6,8,22,.25);
    overflow:hidden;
    border-radius:6px;
    display:none;
    user-select:none;
}
.popup-header{
    width:calc(100% - 2.5rem);
    padding:.7rem 1.25rem;
    background-color:var(--primary-3);
    background-image:var(--primary-gradient);
    color:var(--light-1);
    text-transform:uppercase;
    font-weight: 500;
}
.popup-header-count{
    width:calc(100% - 1.3rem);
    text-overflow:ellipsis;
    white-space:nowrap;
    overflow:hidden;
}
.popup-btn-close{
    height:fit-content;
    width:fit-content;
    color:var(--light-1);
    cursor:pointer;
}
.popup-count{
    width:calc(100% - 2.5rem);
    padding:1.25rem;
    background-color:var(--light-1);
    color: var(--dark-1);
    max-height:calc(100vh - 220px);
    overflow:auto;
    word-wrap: break-word;
    overflow-wrap: break-word; 
    white-space: normal;
}
.popup-count a{
    color: var(--primary-3);
    cursor: pointer;
    font-weight: 500;
}
.popup-count b{
    font-weight: 500;
}
.popup-count::-webkit-scrollbar {
	width:12px;
    background-color:var(--light-1);
}
.popup-count::-webkit-scrollbar-thumb {
	background-color:var(--primary-3);
}
.popup-count::-webkit-scrollbar-track {
    background-color:transparent;
}
.popup-count::-webkit-scrollbar-track-piece {
    background-color:transparent;
}

/* COOKIE */

.content-cookie{
    width:100%;
    height:fit-content;
    background-color:var(--dark-1);
    position:fixed;
    padding:18px 0;
    display:none;
    bottom:0;
    z-index:985;
    font-size:.7rem;
}
.cookie-text{
    width:fit-content;
    margin-right:15px;
    color:var(--light-1);
    text-shadow:2px 2px 2px rgba(0,0,0,.2);
}
.cookie-btn{
    width:fit-content;
}
.cookie-btn a{
    width:50px;
    height:32px;
    background-color:var(--primary-3);
    background-image:var(--primary-gradient);
    border-radius:4px;
    color:var(--light-1);
    text-shadow:2px 2px 3px rgba(0,0,0,.2);
    font-weight:500;
    cursor:pointer;
    box-shadow:2px 2px 3px rgba(0,0,0,.1);
}

@media only screen and (max-width:960px) {
    html{
        font-size:19px;
    }
    input, select, textarea, button{
        font-size:.8rem;
    }
    .content-cookie{
        padding:14px 0;
    }
}

/* ESTADOS VISUAIS COMPATÍVEIS COM JQUERY 4 */

[data-i18n]{
    opacity: 0;
    transition: opacity .28s ease;
}
html.lang-ready [data-i18n]{
    opacity: 1;
}
.is-hidden{
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
.is-visible{
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}
.loading,.popup-wallpaper,.popup,.content-cookie {
    transition: opacity .22s ease, visibility .22s ease;
}