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

    --dark-1: #0e1419;
    --dark-2: #151c22;
    --dark-3: #1f2a33;
    --dark-4: #2e3b45;
    --dark-5: #44515b;

    --light-1: #f6f8fa;
    --light-2: #eef1f4;
    --light-3: #e1e6ea;
    --light-4: #cfd6dc;
    --light-5: #b8c1c8;

    --primary-1: #0f2433;
    --primary-2: #142f42;
    --primary-3: #18374c;
    --primary-4: #2a4f6a;
    --primary-5: #3d6783;
    --primary-weak: rgba(24,55,76,0.15);
    --primary-gradient: linear-gradient(to bottom, #18374c 0%, #142f42 100%);

    --secondary-1: #8f825c;
    --secondary-2: #a69769;
    --secondary-3: #bcab79;
    --secondary-4: #cdbf95;
    --secondary-5: #ded3b2;
    --secondary-weak: rgba(188, 171, 121, 0.15);
    --secondary-gradient: linear-gradient(to bottom,#bcab79 0%,#a69769 100%);

    --tertiary-1: #3f0000;
    --tertiary-2: #580000;
    --tertiary-3: #710000;
    --tertiary-4: #8b1a1a;
    --tertiary-5: #a83a3a;
    --tertiary-weak: rgba(113,0,0,0.15);
    --tertiary-gradient: linear-gradient(to bottom, #710000 0%, #580000 100%);

    --quaternary-1: #1e4321;
    --quaternary-2: #285a2c;
    --quaternary-3: #306b34;
    --quaternary-4: #4b8a4f;
    --quaternary-5: #6aa86d;
    --quaternary-weak: rgba(48,107,52,0.15);
    --quaternary-gradient: linear-gradient(to bottom, #306b34 0%, #285a2c 100%);

    --quinary-1: #3fb8a7;
    --quinary-2: #5ed8c7;
    --quinary-3: #73eedc;
    --quinary-4: #95f3e6;
    --quinary-5: #b9f8ef;
    --quinary-weak: rgba(115,238,220,0.15);
    --quinary-gradient: linear-gradient(to bottom, #73eedc 0%, #5ed8c7 100%);

    --dark-gradient:linear-gradient(to bottom, #1f2a33 0%,  #0e1419 100%);
    --light-gradient:linear-gradient(to bottom, #f6f8fa 0%, #e1e6ea 100%);
}

/* FORMATACAO DE ESTILOS */

html{
    font-size:22px;
}
html,body{
    width:100%;
    height:100%;
    color:var(--dark-2);
    background-color:var(--light-2);
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style:normal;
    font-display:swap;
}
h1,h2,h3,h4,h5,h6{
    font-size: 1rem;
}
*{
    padding:0;
    margin:0;
    line-height:140%;
}
b{
    font-weight: 700;
}
*::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% - 22px);
    padding:0 10px;
    height:1.5rem;
}
select{
    width:100%;
    padding:0 10px;
    height:calc(1.5rem + 2px);
}
textarea{
    width:calc(100% - 22px);
    padding:10px 10px;
    resize:none;
    overflow-y:auto;
}
input:not([type=checkbox]),select,textarea{
    border-radius:6px;
    background-color:var(--light-1);
    border:1px solid var(--light-4);
}
input:focus ,textarea:focus{
    outline:none;
}
a{
    text-decoration:none;
    cursor: pointer;
}

/* EFEITO SCROLL */

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

/* BIBLIOTECA DE ESTILOS */

.txt-big{
    font-size:2rem;
}
.txt-large{
    font-size:1.3rem;
}
.txt-small{
    font-size:.8rem;
}
.txt-minuscule{
    font-size:.7rem;
}
.window{
    width:100%;
    background:var(--light-1);
    overflow:hidden;
    border-radius:6px;
    box-shadow:0 0 10px rgba(0,0,0,.1);
}
.container-large{
    width:92%;
    max-width:1920px;
    margin:0 auto;
    position:relative;
}
.container-small{
    width:92%;
    max-width:1400px;
    margin:0 auto;
    position:relative;
}
.padding{
    padding:5rem 0;
}
.padding-top{
    padding-top:5rem;
}
.padding-bottom{
    padding-bottom:5rem;
}
.padding-small{
    padding:3rem 0;
}
.padding-top-small{
    padding-top:3rem;
}
.padding-bottom-small{
    padding-bottom:3rem;
}
.txt-left{
    text-align: left;
}
.txt-center{
    text-align: center;
}
.txt-right{
    text-align: right;
}
.txt-justify{
    text-align: justify;
}
.flex-start-start{
    display:flex;
    align-items:flex-start;
    justify-content:flex-start;
}
.flex-start-center{
    display:flex;
    align-items:flex-start;
    justify-content:center;
}
.flex-start-end{
    display:flex;
    align-items:flex-start;
    justify-content:flex-end;
}
.flex-start-between{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
}
.flex-start-around{
    display:flex;
    align-items:flex-start;
    justify-content:space-around;
}
.flex-start-evenly{
    display:flex;
    align-items:flex-start;
    justify-content:space-evenly;
}
.flex-center-start{
    display:flex;
    align-items:center;
    justify-content:flex-start;
}
.flex-center-center{
    display:flex;
    align-items:center;
    justify-content:center;
}
.flex-center-end{
    display:flex;
    align-items:center;
    justify-content:flex-end;
}
.flex-center-between{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.flex-center-around{
    display:flex;
    align-items:center;
    justify-content:space-around;
}
.flex-center-evenly{
    display:flex;
    align-items:center;
    justify-content:space-evenly;
}
.flex-end-start{
    display:flex;
    align-items:flex-end;
    justify-content:flex-start;
}
.flex-end-center{
    display:flex;
    align-items:flex-end;
    justify-content:center;
}
.flex-end-end{
    display:flex;
    align-items:flex-end;
    justify-content:flex-end;
}
.flex-end-between{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
}
.flex-end-around{
    display:flex;
    align-items:flex-end;
    justify-content:space-around;
}
.flex-end-evenly{
    display:flex;
    align-items:flex-end;
    justify-content:space-evenly;
}
.flex-stretch-start{
    display:flex;
    align-items:stretch;
    justify-content:flex-start;
}
.flex-stretch-center{
    display:flex;
    align-items:stretch;
    justify-content:center;
}
.flex-stretch-end{
    display:flex;
    align-items:stretch;
    justify-content:flex-end;
}
.flex-stretch-between{
    display:flex;
    align-items:stretch;
    justify-content:space-between;
}
.flex-stretch-around{
    display:flex;
    align-items:stretch;
    justify-content:space-around;
}
.flex-stretch-evenly{
    display:flex;
    align-items:stretch;
    justify-content:space-evenly;
}

/* LOADING */

.loading {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    background-color: var(--primary-3);
}
.loader {
    position: relative;
    width: 90px;
    height: 103px;
}
.loader div {
    position: absolute;
    width: 50px;
    height: 31px;
}
.rot {
    transform: rotate(150deg);
}
.rot2 {
    transform: rotate(20deg);
}
.loader div:nth-of-type(2) {
    transform: rotate(60deg);
}
.loader div:nth-of-type(3) {
    transform: rotate(-60deg);
}
.loader div div {
    width: 100%;
    height: 100%;
    position: relative;
}
.loader div div span {
    position: absolute;
    width: 4px;
    height: 0%;
    background: var(--light-1);
    z-index: 999999;
}
.h1 {
    left: 0;
    animation: load1 3.2s ease infinite;
}
.h2 {
    right: 0;
    animation: load2 3.2s ease 0.4s infinite;
}
.h3 {
    right: 0;
    animation: load3 3.2s ease 0.8s infinite;
}
.h4 {
    top: 10px;
    left: 23px;
    animation: load4 3.2s ease 1s infinite;
    transform: rotate(90deg);
}
.h5 {
    bottom: 0;
    animation: load5 3.2s ease 1.2s infinite;
}
.h6 {
    left: 0;
    animation: load6 3.2s ease 1.3s infinite;
}
@keyframes load1 {
    0% {
        bottom: 0;
        height: 0;
    }
    6.944444444% {
        bottom: 0;
        height: 100%;
    }
    50% {
        top: 0;
        height: 100%;
    }
    59.944444433% {
        top: 0;
        height: 0;
    }
}
@keyframes load2 {
    0% {
        top: 0;
        height: 0;
    }
    6.944444444% {
        top: 0;
        height: 100%;
    }
    50% {
        bottom: 0;
        height: 100%;
    }
    59.944444433% {
        bottom: 0;
        height: 0;
    }
}
@keyframes load3 {
    0% {
        top: 0;
        height: 0;
    }
    6.944444444% {
        top: 0;
        height: 100%;
    }
    50% {
        bottom: 0;
        height: 100%;
    }
    59.94444443% {
        bottom: 0;
        height: 0;
    }
}
@keyframes load4 {
    0% {
        top: 37px;
        left: 23px;
        height: 134%;
    }
    6.944444444% {
        top: 10px;
        height: 134%;
    }
    50% {
        bottom: 10px;
        height: 134%;
    }
    59.94444443% {
        bottom: 0;
        height: 0;
    }
}
@keyframes load5 {
    0% {
        bottom: 0;
        height: 0;
    }
    6.944444444% {
        bottom: 0;
        height: 100%;
    }
    50% {
        top: 0;
        height: 100%;
    }
    59.94444443% {
        top: 0;
        height: 0;
    }
}
@keyframes load6 {
    0% {
        bottom: 0;
        height: 0;
    }
    6.944444444% {
        bottom: 0;
        height: 100%;
    }
    50% {
        top: 0;
        height: 100%;
    }
    59.94444443% {
        top: 0;
        height: 0;
    }
}
.loading-footer{
    width: fit-content;
    position: absolute;
    bottom: 0;
    padding-bottom: 1rem;
    font-weight: 500;
    color: var(--primary-5);
}

/* SCROLLBAR */

::-webkit-scrollbar{
	width: 10px;
    background-color:var(--primary-3);
}
::-webkit-scrollbar-thumb{
	background-color: var(--primary-3);
}
:hover::-webkit-scrollbar-thumb{
    background-color: var(--secondary-3);
}
::-webkit-scrollbar-track {
    background-color:transparent;
}
::-webkit-scrollbar-track-piece{
    background-color:transparent;
}

/* POPUP */

.popup-wallpaper{
    width:100%;
    height:100%;
    position:fixed;
    background:rgba(14,20,25,.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) {
    .alter-language{
        transform: scale(0.9);
        bottom: 10px;
        right: 10px;
    }
    html{
        font-size:19px;
    }
    input, select, textarea, button{
        font-size:.8rem;
    }
    .content-cookie{
        padding:14px 0;
    }
}