@charset "UTF-8";

/* FONTES */
@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-one:#050710;
    --dark-two:#1D1F2A;
    --dark-three:#353743;
    --dark-four:#4E505D;
    --dark-five:#666976;
    --dark-six:#808290;

    --light-one:#FFFFFF;
    --light-two:#f8f8fa;
    --light-three:#ececf0;
    --light-four:#C0C0C1;
    --light-five:#ABABAC;
    --light-six:#949699;

    --primary:#006633;
    --secondary:#CC1E0D;
    --tertiary:#17183B;
    --quaternary:#A11692;
    --quinary:#fed2a4;
    
}

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

/* ESTILOS */

html{
    font-size:clamp(18px, 0.65vw + 15px, 22px);
}
html,body{
    width:100%;
    min-height:100%;
    color:var(--tertiary);
    background-color: var(--light-two);
    background-image: url('../img/bg/bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    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%;
}
*::selection{
    background-color: var(--primary);
    color:var(--light-one);
}
input, select, textarea, button{
    outline:none;
    box-shadow: none;
    font-family: "Poppins", sans-serif;
    font-size: .85rem !important;
    color: var(--dark-six);
    font-weight: 400;
}
input:not([type=checkbox],[type=radio],#btn-confirm,#btn-recuse){
    width: calc(100% - 22px);
    padding: 0 10px;
    height: 44px;
    border-radius: 6px;
    background-color: var(--light-one);
    border: 1px solid var(--light-four);
}
select{
    width: 100%;
    padding: 0 10px;
    height: 46px;
    border-radius: 6px;
    background-color: var(--light-one);
    border: 1px solid var(--light-four);
}
textarea{
    width: calc(100% - 22px);
    padding: 10px 10px;
    resize:none;
    overflow-y: auto;
    border-radius: 6px;
    background-color: var(--light-one);
    border: 1px solid var(--light-four);
}
input:focus , textarea:focus{
    outline: none;
}
a{
    text-decoration: none;
}
img, svg, video, iframe{
    display: block;
}
.window{
    width: 100%;
    background-color: var(--light-one);
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}
.txt-big{
    font-size:2rem;
}
.txt-large{
    font-size:1.3rem;
}
.txt-small{
    font-size:.8rem;
}
.txt-minuscule{
    font-size:.7rem;
}
.padding{
    padding:5rem 0;
}
.padding-top{
    padding-top:5rem;
}
.padding-bottom{
    padding-bottom:5rem;
}
.padding-small{
    padding:2rem 0;
}
.padding-top-small{
    padding-top:2rem;
}
.padding-bottom-small{
    padding-bottom:2rem;
}
.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;
    display:flex;
    align-items:center;
    justify-content:center;
    background-color:var(--primary);
}
.loader{
    width: 54px;
    height: 54px;
    border: 4px solid rgba(255,255,255,.25);
    border-top-color: var(--quinary);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 0.9s linear infinite;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.dots-container {
    height: 100%;
    width: 100%;
    gap:10px
}
.dot {
    height: 20px;
    width: 20px;
    border-radius: 10px;
    background-color:var(--quinary);
    border: 1px solid var(--quinary);
    animation: pulse 1.5s infinite ease-in-out;
}
.dot:last-child {
    margin-right: 0;
}

.dot:nth-child(1) {
    animation-delay: -0.3s;
}

.dot:nth-child(2) {
    animation-delay: -0.1s;
}

.dot:nth-child(3) {
    animation-delay: 0.1s;
}
@keyframes pulse {
    0% {
        transform: scale(0.8);
        background-color: var(--quinary);
        box-shadow: 0 0 0 0 rgba(255,255,255, 0.1);
    }
    50% {
        transform: scale(1.2);
        background-color: var(--secondary);
        box-shadow: 0 0 0 10px rgba(255,255,255, 0);
    }
    100% {
        transform: scale(0.8);
        background-color: var(--quinary);
        box-shadow: 0 0 0 0 rgba(255,255,255, 0.1);
    }
}

/* PLACEHOLDERS */

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder{ 
    color: var(--light-six);
} 
  
input:-ms-input-placeholder, textarea:-ms-input-placeholder{
    color: var(--light-six);
}
input::placeholder,textarea::placeholder{
    color: var(--light-six);
}

/* 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;
    max-height:min(90vh, 820px);
    height:auto;
    position:fixed;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    z-index:995;
    box-shadow:0 24px 60px rgba(6,8,22,.25);
    overflow:hidden;
    border:1px solid rgba(255,255,255,.2);
    border-radius:22px;
    display:none;
    user-select:none;
}
.popup-header{
    width:100%;
    padding:.75rem 1rem;
    gap:.75rem;
    background:var(--primary);
    color:var(--light-one);
    text-transform:uppercase;
    font-weight: 500;
}
.popup-header-count{
    flex:1;
    text-overflow:ellipsis;
    white-space:nowrap;
    overflow:hidden;
}
.popup-btn-close{
    min-width:32px;
    min-height:32px;
    height:32px;
    width:32px;
    color:var(--light-one);
    cursor:pointer;
    border-radius:999px;
    background-color:rgba(255,255,255,.12);
}
.popup-count{
    flex: 1;
    padding:1rem 1.1rem 1.1rem;
    background-color:var(--light-one);
    color: var(--dark-three);
    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-one);
}
.popup-count::-webkit-scrollbar-thumb {
	background-color:var(--primary);
}
.popup-count::-webkit-scrollbar-track {
    background-color:transparent;
}
.popup-count::-webkit-scrollbar-track-piece {
    background-color:transparent;
}
.popup-count a{
    color:var(--primary);
}
.pix-copy-box{
    margin-top:14px;
    padding:14px;
    border:1px solid rgba(0,0,0,.08);
    border-radius:10px;
    background-color:rgba(0,0,0,.02);
}
.pix-copy-label{
    display:block;
    margin-bottom:8px;
    font-size:.82rem;
    font-weight:600;
    color:var(--dark-three);
}
.pix-copy-code{
    width:100%;
    min-height:110px;
    padding:12px;
    border:1px dashed var(--primary);
    border-radius:8px;
    background-color:var(--light-one);
    color:var(--dark-three);
    resize:none;
    font-size:.78rem;
    line-height:1.5;
}
.pix-copy-actions{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    margin-top:10px;
}
.btn-copy-pix{
    border:none;
    border-radius:8px;
    padding:10px 14px;
    background-color:var(--primary);
    color:var(--light-one);
    font-size:.82rem;
    font-weight:600;
    cursor:pointer;
}
.btn-copy-pix:hover{
    opacity:.92;
}
.pix-copy-feedback{
    font-size:.78rem;
    color:var(--primary);
}
.pix-copy-fallback{
    position:fixed;
    top:-9999px;
    left:-9999px;
    opacity:0;
    pointer-events:none;
}
#btn-confirm{
    width: calc(50% - 10px);
    padding: 10px 0;
    background-color: var(--primary);
    color: var(--light-one);
    border-radius: 6px;
    border:none;
}
#btn-recuse{
    width: calc(50% - 10px);
    padding: 10px 0;
    background-color: var(--light-three);
    color: var(--dark-three);
    border-radius: 6px;
    border:none;
}

/* COOKIE */

.content-cookie{
    width:100%;
    height:fit-content;
    background-color:var(--light-one);
    position:fixed;
    padding:14px 18px;
    display:none;
    bottom:0;
    z-index:985;
    font-size:.7rem;
    border-top:1px solid rgba(0,0,0,.08);
    box-shadow:0 -12px 24px rgba(0,0,0,.08);
}
.container-small{
    width:min(100%, 1120px);
    margin:0 auto;
    gap:1rem;
    flex-wrap:wrap;
    justify-content:space-between;
}
.cookie-text{
    flex:1 1 320px;
    margin-right:0;
    color:var(--dark-four);
    text-align:left;
}
.cookie-btn{
    width:fit-content;
}
.cookie-btn a{
    min-width:64px;
    height:32px;
    background-color:var(--primary);
    background-image:linear-gradient(135deg, #00562B 0%, var(--primary) 100%);
    padding:0 16px;
    border-radius:4px;
    color:var(--light-one);
    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: 18px;
    }

    html,body{
        background-attachment: scroll;
    }


    .popup-header{
        padding: 16px 15px;
        font-size: 1rem;
    }
    .popup-header-count{
        width: calc(100% - 30px);
    }
    .popup{
        width:94%;
        max-height:calc(100vh - 24px);
    }
    .popup-count{
        max-height:calc(100vh - 180px);
    }
    .content-cookie{
        padding:12px 14px;
    }
    .container-small{
        align-items:flex-start;
    }
    .cookie-text,
    .cookie-btn{
        width:100%;
    }
    .cookie-btn{
        justify-content:flex-start;
    }
    .cookie-btn a{
        width:100%;
        max-width:140px;
    }

}
