@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: #131316;
    --dark-2: #1C1C21;
    --dark-3: #2F3037;
    --dark-4: #4B4C52;
    --dark-5: #6A6B70;

    --light-1: #F9F9FA;
    --light-2: #E4E4E8;
    --light-3: #D9D9DF;
    --light-4: #C3C3CB;
    --light-5: #ADADC7;

    --primary-1: #9c3b01;
    --primary-2: #c14a01;
    --primary-3: #F45D01;
    --primary-4: #f77c33;
    --primary-5: #f9a166;

    --secondary-1: #11635a;
    --secondary-2: #157f73;
    --secondary-3: #1B998B;
    --secondary-4: #4fb7ad;
    --secondary-5: #86d1ca;

    --tertiary-1: #05090d;
    --tertiary-2: #09111a;
    --tertiary-3: #0D1821;
    --tertiary-4: #1f2d38;
    --tertiary-5: #334653;

    --quaternary-1: #030100;
    --quaternary-2: #070300;
    --quaternary-3: #0B0500;
    --quaternary-4: #2a211b;
    --quaternary-5: #4a4038;

    --quinary-1: #b3a94f;
    --quinary-2: #d6c963;
    --quinary-3: #FFF07C;
    --quinary-4: #fff4a0;
    --quinary-5: #fff8c4;

    --primary-weak: rgba(244, 93, 1, 0.15);
    --secondary-weak: rgba(27, 153, 139, 0.15);
    --tertiary-weak: rgba(13, 24, 33, 0.15);
    --quaternary-weak: rgba(11, 5, 0, 0.15);
    --quinary-weak: rgba(255, 240, 124, 0.15);

    --primary-gradient: linear-gradient(to bottom, #F45D01 0%, #c14a01 100%);
    --secondary-gradient: linear-gradient(to bottom, #1B998B 0%, #157f73 100%);
    --tertiary-gradient: linear-gradient(to bottom, #0D1821 0%, #09111a 100%);
    --quaternary-gradient: linear-gradient(to bottom, #0B0500 0%, #070300 100%);
    --quinary-gradient: linear-gradient(to bottom, #FFF07C 0%, #d6c963 100%);


    --dark-gradient:linear-gradient(to bottom, #35363a 0%,  #28292c 100%);
    --light-gradient:linear-gradient(to bottom, #FFFFFF 0%, #DADADF 100%);
}

/* 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;
}
*{
    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:6rem 0;
}
.padding-top{
    padding-top:6rem;
}
.padding-bottom{
    padding-bottom:6rem;
}
.padding-small{
    padding:3rem 0;
}
.padding-top-small{
    padding-top:3rem;
}
.padding-bottom-small{
    padding-bottom:3rem;
}
.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(--tertiary-3);
}
.loading svg {
    width: 3.25em;
    transform-origin: center;
    animation: rotate4 2s linear infinite;
}
.loading circle {
    fill: none;
    stroke: hsl(214, 97%, 59%);
    stroke-width: 2;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash4 1.5s ease-in-out infinite;
}
@keyframes rotate4 {
    100% {
    transform: rotate(360deg);
    }
}
@keyframes dash4 {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dashoffset: -125px;
    }
}

/* SCROLLBAR */

::-webkit-scrollbar{
	width: 10px;
    background-color:var(--tertiary-4);
}
::-webkit-scrollbar-thumb{
	background-color: var(--primary-4);
}
:hover::-webkit-scrollbar-thumb{
    background-color: var(--primary-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(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) {
    .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;
    }
}