@charset "UTF-8";

/* FONTE */

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

/* VARIAVEIS */

:root{

    --dark-1: #172933;
    --dark-2: #20343f;
    --dark-3: #2a404c;
    --dark-4: #3a505c;
    --dark-5: #506672;

    --light-1: #ffffff;
    --light-2: #f6f6c8;
    --light-3: #ecebb7;
    --light-4: #dad895;
    --light-5: #c8c276;

    --gray-1: #f0f0f0;
    --gray-2: #e2e2e2;

    --nav-h: 4.25rem;
    --shadow-small: 0 6px 18px rgba(23,41,51,.10);
    --shadow-soft: 0 18px 40px rgba(23,41,51,.14);
    --shadow-strong: 0 28px 60px rgba(23,41,51,.30);
    --radius: 18px;
    --radius-lg: 26px;

    --primary-1: #172933;
    --primary-2: #223947;
    --primary-3: #304a6d;
    --primary-4: #48678c;
    --primary-5: #6383aa;
    --primary-weak: rgba(48,74,109,0.15);
    --primary-gradient: linear-gradient(to bottom, #304a6d 0%, #172933 100%);

    --secondary-1: #8f853d;
    --secondary-2: #a89c4b;
    --secondary-3: #c0b35f;
    --secondary-4: #d6cc80;
    --secondary-5: #f6f6c8;
    --secondary-weak: rgba(192,179,95,0.15);
    --secondary-gradient: linear-gradient(to bottom,#c0b35f 0%,#8f853d 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:20px;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-3) var(--primary-3);
}
html,body{
    width:100%;
    height:100%;
    color:var(--dark-2);
    background-color:var(--light-2);
    font-family: "Nunito", sans-serif;
    font-weight: 300;
    font-style:normal;
    font-display:swap;
}
h1,h2,h3,h4,h5,h6{
    font-size: 1rem;
    font-family: "Raleway", sans-serif;
}
*{
    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:'Nunito', 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);
}

/* ANIMACOES GLOBAIS */

@keyframes fg-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}
@keyframes fg-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
    70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes fg-shine {
    to { background-position: 200% center; }
}
@keyframes fg-rise {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

/* 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-family: "Raleway", sans-serif;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--primary-5);
}

/* SCROLLBAR */

::-webkit-scrollbar{
	width: 10px;
    background-color:var(--primary-3);
}
::-webkit-scrollbar-thumb{
	background-color: var(--secondary-3);
    border: 2px solid var(--primary-3);
    border-radius: 999px;
}
:hover::-webkit-scrollbar-thumb{
    background-color: var(--secondary-4);
}
::-webkit-scrollbar-track {
    background-color:var(--primary-3);
}
::-webkit-scrollbar-track-piece{
    background-color:var(--primary-3);
}

/* 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;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-3) var(--light-2);
}
.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-2);
}
.popup-count::-webkit-scrollbar-thumb {
	background-color:var(--secondary-3);
    border: 2px solid var(--light-2);
    border-radius: 999px;
}
.popup-count::-webkit-scrollbar-track {
    background-color:var(--light-2);
}
.popup-count::-webkit-scrollbar-track-piece {
    background-color:var(--light-2);
}

/* 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:17px;
    }
    input, select, textarea, button{
        font-size:.8rem;
    }
    .content-cookie{
        padding:14px 0;
    }
}
