@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&display=swap');

/* VARIAVEIS */

:root{

    /* CORES NEUTRAS */

    --dark-1: #0F1115;
    --dark-2: #171B22;
    --dark-3: #232A35;
    --dark-4: #37404D;
    --dark-5: #556171;

    --light-1: #FFFFFF;
    --light-2: #F7F9FB;
    --light-3: #E9EEF3;
    --light-4: #D8E0E8;
    --light-5: #BCC8D3;

    /* PALETA PRINCIPAL - AZUL DA SETA */
    --primary-1: #0A6A99;
    --primary-2: #1185BE;
    --primary-3: #18A8E8;
    --primary-4: #49BCEE;
    --primary-5: #84D3F4;

    /* PALETA SECUNDÁRIA - AMARELO DO LOGO */
    --secondary-1: #A89018;
    --secondary-2: #C6AB20;
    --secondary-3: #E5C72E;
    --secondary-4: #EDD75C;
    --secondary-5: #F4E48E;

    /* PALETA TERCIÁRIA - VERDE DA SETA */
    --tertiary-1: #138357;
    --tertiary-2: #19A36A;
    --tertiary-3: #20C47E;
    --tertiary-4: #53D39E;
    --tertiary-5: #8BE2BE;

    /* PALETA QUATERNÁRIA - AZUL/ROXO DO CONTORNO/TEXTO */
    --quaternary-1: #2F3B8F;
    --quaternary-2: #3E4DB2;
    --quaternary-3: #4C61D4;
    --quaternary-4: #7384E0;
    --quaternary-5: #A1AEEF;

    /* PALETA QUINARY - GRAFITE DA FAIXA ESCURA */
    --quinary-1: #111111;
    --quinary-2: #1C1C1C;
    --quinary-3: #2B2B2B;
    --quinary-4: #4A4A4A;
    --quinary-5: #747474;

    /* VERSÕES SUAVES / BACKGROUNDS */
    --primary-weak: rgba(24, 168, 232, 0.15);
    --secondary-weak: rgba(229, 199, 46, 0.18);
    --tertiary-weak: rgba(32, 196, 126, 0.15);
    --quaternary-weak: rgba(76, 97, 212, 0.15);
    --quinary-weak: rgba(43, 43, 43, 0.15);

    /* GRADIENTES */
    --primary-gradient: linear-gradient(to bottom, #18A8E8 0%, #1185BE 100%);
    --secondary-gradient: linear-gradient(to bottom, #E5C72E 0%, #C6AB20 100%);
    --tertiary-gradient: linear-gradient(to bottom, #20C47E 0%, #19A36A 100%);
    --quaternary-gradient: linear-gradient(to bottom, #4C61D4 0%, #3E4DB2 100%);
    --quinary-gradient: linear-gradient(to bottom, #2B2B2B 0%, #1C1C1C 100%);

    --dark-gradient: linear-gradient(to bottom, #232A35 0%, #171B22 100%);
    --light-gradient: linear-gradient(to bottom, #FFFFFF 0%, #E9EEF3 100%);

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

/* FORMATACAO DE ESTILOS */

html{
    font-size:22px;
}
html,body{
    width:100%;
    height:100%;
    color:var(--light-3);
    background-color:var(--tertiary-3);
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style:normal;
    font-display:swap;
}
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:2rem;
}
.txt-large{
    font-size:1.3rem;
}
.txt-small{
    font-size:.8rem;
}
.txt-minuscule{
    font-size:.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;
}

/* ALTER LANGUAGE */

.alter-language{
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 985;
}
.language-switch {
    display: flex;
    align-items: center;
    background-color:var(--light-1);
    color: var(--dark-5);
    padding: .35rem .5rem;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.lang-flag {
    width:1rem;
    aspect-ratio: 16 / 12;
    border-radius: 2px;
    margin: 0 .25rem;
    height: auto;
}
#lang-toggle {
    display: none;
}
.switch {
    position: relative;
    display: inline-block;
    width: 1.75rem;
    height: 1rem;
    background-color: var(--light-4);
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.switch::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: calc(1rem - 4px);
    height: calc(1rem - 4px);
    background-color: var(--primary-3);
    border-radius: 50%;
    transition: transform 0.3s;
}
#lang-toggle:checked + .switch::before {
    transform: translateX(.75rem);
}

/* 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(--tertiary-3);
}
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    width: 160px;
    height: 100px;
    margin-left: -80px;
    margin-top: -50px;
    border-radius: 5px;
    background: var(--tertiary-5);
    animation: dot1_ 3s cubic-bezier(0.55,0.3,0.24,0.99) infinite;
}
.loader:nth-child(2) {
    z-index: 11;
    width: 150px;
    height: 90px;
    margin-top: -45px;
    margin-left: -75px;
    border-radius: 3px;
    background: var(--tertiary-3);
    animation-name: dot2_;
}
.loader:nth-child(3) {
    z-index: 12;
    width: 40px;
    height: 20px;
    margin-top: 50px;
    margin-left: -20px;
    border-radius: 0 0 5px 5px;
    background: var(--primary-3);
    animation-name: dot3_;
}
@keyframes dot1_ {
    3%,97% {
        width: 160px;
        height: 100px;
        margin-top: -50px;
        margin-left: -80px;
    }
    30%,36% {
        width: 80px;
        height: 120px;
        margin-top: -60px;
        margin-left: -40px;
    }
    63%,69% {
        width: 40px;
        height: 80px;
        margin-top: -40px;
        margin-left: -20px;
    }
}
@keyframes dot2_ {
    3%,97% {
        height: 90px;
        width: 150px;
        margin-left: -75px;
        margin-top: -45px;
    }
    30%,36% {
        width: 70px;
        height: 96px;
        margin-left: -35px;
        margin-top: -48px;
    }
    63%,69% {
        width: 32px;
        height: 60px;
        margin-left: -16px;
        margin-top: -30px;
    }
}
@keyframes dot3_ {
    3%,97% {
        height: 20px;
        width: 40px;
        margin-left: -20px;
        margin-top: 50px;
    }
    30%,36% {
        width: 8px;
        height: 8px;
        margin-left: -5px;
        margin-top: 49px;
        border-radius: 8px;
    }
    63%,69% {
        width: 16px;
        height: 4px;
        margin-left: -8px;
        margin-top: -37px;
        border-radius: 10px;
    }
}

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