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

    /* Cores claras */
    --light-1: #F9F9FA;
    --light-2: #E4E4E8;
    --light-3: #D9D9DF;
    --light-4: #C3C3CB;
    --light-5: #ADADC7;

    /* Verde Água Suave → Verde Escuro Natural */
    --primary-1: #90d48e;
    --primary-2: #aee9aa;
    --primary-3: #c9f2c7; /* COR BASE */
    --primary-4: #def7dc;
    --primary-5: #f3fcf2;

    /* Verde Erva Doce → Verde Limão Claro */
    --secondary-1: #6fb765;
    --secondary-2: #90d27e;
    --secondary-3: #aceca1; /* COR BASE */
    --secondary-4: #c6f5bb;
    --secondary-5: #e3fce0;

    /* Verde Oliva Suave → Tons Terrosos */
    --tertiary-1: #6f9c67;
    --tertiary-2: #82af78;
    --tertiary-3: #96be8c; /* COR BASE */
    --tertiary-4: #b1d5a7;
    --tertiary-5: #cde9c3;

    /* Verde Floresta → Equilíbrio e Natureza */
    --quaternary-1: #3c6d3a;
    --quaternary-2: #517e4d;
    --quaternary-3: #629460; /* COR BASE */
    --quaternary-4: #7da97b;
    --quaternary-5: #99c59a;

    /* Verde Musgo Escuro → Raiz / Base */
    --quinary-1: #182312;
    --quinary-2: #1e2a17;
    --quinary-3: #243119; /* COR BASE */
    --quinary-4: #32472a;
    --quinary-5: #3e5833;

    /* CORES DE STATUS */
    --error:   #D86B6B;
    --success: #3C6078;
    --warning: #E5C970;

    /* TRANSPARÊNCIAS / FRAQUEZA DE COR */
    --primary-weak: rgba(201, 242, 199, 0.15);
    --secondary-weak: rgba(172, 236, 161, 0.15);
    --tertiary-weak: rgba(150, 190, 140, 0.15);
    --quaternary-weak: rgba(98, 148, 96, 0.15);
    --quinary-weak: rgba(36, 49, 25, 0.15);

    /* GRADIENTES MONOCROMÁTICOS */
    --dark-gradient:linear-gradient(to bottom, #050710 0%, #2C2E3A 100%);
    --light-gradient:linear-gradient(to bottom, #FFFFFF 0%, #DADADF 100%);

    /* GRADIENTES PRINCIPAIS */
    --primary-gradient: linear-gradient(to bottom, #c9f2c7 0%, #aceca1 100%);
    --secondary-gradient: linear-gradient(to bottom, #aceca1 0%, #96be8c 100%);
    --tertiary-gradient: linear-gradient(to bottom, #96be8c 0%, #629460 100%);
    --quaternary-gradient: linear-gradient(to bottom, #629460 0%, #243119 100%);
    --quinary-gradient: linear-gradient(to bottom, #243119 0%, #182312 100%);

    /* GRADIENTES DE STATUS */
    --error-gradient: linear-gradient(to bottom,  #D86B6B 0%,  #c56060 100%);
    --success-gradient: linear-gradient(to bottom, #3C6078 0%, #355469 100%);
    --warning-gradient: linear-gradient(to bottom, #E5C970 0%, #d4b85b 100%);


}

/* FORMATACAO DE ESTILOS */

html{
    font-size:22px;
}
html,body{
    width:100%;
    height:100%;
    color:var(--quinary-3);
    background-color:var(--primary-5);
    background-image: linear-gradient(to bottom, var(--primary-4), var(--tertiary-5));
    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:40px;
}
select{
    width:100%;
    padding:0 10px;
    height:42px;
}
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-3);
}
input:focus ,textarea:focus{
    outline:none;
}
a{
    text-decoration:none;
    cursor: pointer;
}

/* 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: 8px 8px;
    border-radius: 20px;
    font-size: .7rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.lang-label {
    font-weight: 600;
    margin: 0 6px;
    user-select: none;
}
#lang-toggle {
    display: none;
}
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
    background-color: var(--light-4);
    border-radius: 13px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.switch::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 20px;
    height: 20px;
    background-color: var(--primary-3);
    border-radius: 50%;
    transition: transform 0.3s;
}
#lang-toggle:checked + .switch::before {
    transform: translateX(20px);
}
.navbar-toggler {
    padding: 0.25rem 0.25rem;
    font-size: 0.8rem;
    width: 35px;
    height: 35px;
}
.navbar-toggler-icon {
    background-size: 20px 20px;
}

/* 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:1.5rem;
}
.txt-large{
    font-size:1.25rem;
}
.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{
    width:calc(100% - 2rem);
    padding:1rem;
    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(--primary-3);
}
.dot-spinner {
    --uib-size: 2.8rem;
    --uib-speed: .9s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
    margin-bottom: calc(2rem + 50px);
}
.dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}
.dot-spinner__dot::before {
    content: '';
    height: 20%;
    width: 20%;
    border-radius: 50%;
    background-color: var(--quaternary-3);
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
}
.dot-spinner__dot:nth-child(2) {
    transform: rotate(45deg);
}
.dot-spinner__dot:nth-child(2)::before {
    animation-delay: calc(var(--uib-speed) * -0.875);
}
.dot-spinner__dot:nth-child(3) {
    transform: rotate(90deg);
}
.dot-spinner__dot:nth-child(3)::before {
    animation-delay: calc(var(--uib-speed) * -0.75);
}
.dot-spinner__dot:nth-child(4) {
    transform: rotate(135deg);
}
.dot-spinner__dot:nth-child(4)::before {
    animation-delay: calc(var(--uib-speed) * -0.625);
}
.dot-spinner__dot:nth-child(5) {
    transform: rotate(180deg);
}
.dot-spinner__dot:nth-child(5)::before {
    animation-delay: calc(var(--uib-speed) * -0.5);
}
.dot-spinner__dot:nth-child(6) {
    transform: rotate(225deg);
}
.dot-spinner__dot:nth-child(6)::before {
    animation-delay: calc(var(--uib-speed) * -0.375);
}
.dot-spinner__dot:nth-child(7) {
    transform: rotate(270deg);
}
.dot-spinner__dot:nth-child(7)::before {
    animation-delay: calc(var(--uib-speed) * -0.25);
}
.dot-spinner__dot:nth-child(8) {
    transform: rotate(315deg);
}
.dot-spinner__dot:nth-child(8)::before {
    animation-delay: calc(var(--uib-speed) * -0.125);
}
@keyframes pulse0112 {
    0%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}
.loading-footer{
    width: 160px;
    position:absolute;
    bottom:2rem;
}
.loading-footer img{
    width: 100%;
}

/* 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(0,0,0,.8);
    z-index:990;
    display:none;
    backdrop-filter:blur(3px);
    -webkit-backdrop-filter:blur(3px);
}
.popup{
    width:92%;
    min-width:280px;
    max-width:620px;
    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% - 40px);
    padding:15px 20px;
    background:var(--primary-3);
    color:var(--light-1);
    text-transform:uppercase;
    font-weight: 500;
}
.popup-header-count{
    width:calc(100% - 30px);
    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% - 40px);
    padding:20px;
    background-color:var(--light-1);
    color: var(--dark-1);
    max-height:calc(100vh - 260px);
    overflow:auto;
    word-wrap: break-word;
    overflow-wrap: break-word; 
    white-space: normal;
}
.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(--dark-1);
    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;
    }
    .padding{
        padding:70px 0;
    }
    .padding-top{
        padding-top:70px;
    }
    .padding-bottom{
        padding-bottom:70px;
    }
    .padding-small{
        padding:50px 0;
    }
    .padding-top-small{
        padding-top:50px;
    }
    .padding-bottom-small{
        padding-bottom:50px;
    }
    .content-cookie{
        padding:14px 0;
    }
}