:root{

    /* Variáveis Globais */
    --background_light: #fffff0;
    --text_dark: #303030;
    --main_color: #5364D1;
    --secondary_color: #3347c9;
    --transition: all 0.3s ease;
    --width-footer-logo: 200px;
    --light_text: #e8e8e8;
    --danger_color: rgb(255, 71, 71);
    --sucess_color: #6ab04c;
    --container_width: 1280px;
    --general_h2_size: 2.8rem;
    --general_h3_size: 2rem;
    --general_h4_size: 1.1rem;
    --general_h4_weight: 700;
    --shadow_elements_color: #1b1b1b1c;
    --shadow_text_size: 10rem;
    --title_text_size: 1.1rem;
    --common_text_size: 0.9rem;

    --left_block_width: 50px;
    --h1_h2_gap: 10px;
    --h1_main_title_size: 5rem;
    --h1_main_title_lh_multiplicator: 1.1;
    --h2_main_title_size: 1.5rem;
    --h3_main_title_size: 1.1rem;
    --h3_main_title_width: 500px;
    --brasil_word_margin_left: -15px;


    --animation_time: 8s;

}

*{

    box-sizing: border-box;
    padding: 0;
    margin: 0;
    color: var(--text_dark);
    font-family: Poppins, Verdana, Geneva, Tahoma, sans-serif;

}

.container{

    width: 100%;
    background: #FFFFF0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;


}

header{

    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;

}

header img{

    height: 35px;

}

main{

    width: 100%;
    display: flex;
    max-width: 1280px;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 0 30px;
    position: relative;

}





























.sigle-donate-container{

    max-width: 80%;
    width: 800px;
    background: #fff;
    box-shadow: 0px 0px 15px 0px rgba(31, 31, 31, 0.065);
    position: absolute;
    top: 80px;
    border-radius: 10px;
    /* z-index: 10; */
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;


    transform: scale(0.8);
    opacity: 0;
    z-index: -5;
    transition: 0.3s all;


}

.sigle-donate-container.--show{

    transform: scale(1);
    opacity: 1;
    z-index: 10;

}

.sigle-donate-container__close-button{

    position: absolute;
    top: 30px;
    right: 35px;

}

.sigle-donate-container__close-button img{

    width: 15px;
    cursor: pointer;

}


.obsfucator{

    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.384);
    z-index: 5;
    display: none;

}

.obsfucator.--show{

    display: block;

}

.sigle-donate-container h3{

    font-size: 2rem;
    font-weight: 500;

}

.sigle-donate-container__sdc-donor-form{

    display: flex;
    max-width: 400px;
    gap: 10px;
    overflow: hidden;
    transition: 0.3s;

 
}




.sigle-donate-container__sdc-donor-form.--step-2 .sdc-donor-form-pt:nth-child(1){

    margin-left: calc(-100% + -10px);

}




.sigle-donate-container__sdc-donor-form.--step-3{

    margin-left: calc(-100% + -10px);
    transition: none;
    opacity: 0;

}

.sigle-donate-container.--final-step .loading__card{

    transform: scale(0.6);
    opacity: 0;

}

.sigle-donate-container__sdc-donor-form.--step3 + .sigle-donate-container h3{

    opacity: 0;

}

.sigle-donate-container.--hidden h3{

    opacity: 0;

}

.sdc-donor-form-pt{

    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    transition: 0.5s all;
    position: relative;

}

.intern-divisor{

    display: flex;
    flex-direction: column;
    gap: 30px;

}

.sdc-donor-form-pt:nth-child(1){

    justify-content: space-between;

}

.sdc-donor-form__radio-button-box{

    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;

}


.input-title-box{

    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;

}

.input-title span{

    color: var(--danger_color);

}

.input-title-box img{

    width: 15px;
    cursor: pointer;

}

.tooltip{

    position: absolute;
    background: #fff;
    font-size: 0.8rem;
    bottom: -50px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px rgba(31, 31, 31, 0.065);
    padding: 10px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease, visibility 0.3s ease;

}

.tooltip p{

    color: #616161;

}

.input-title-box img:hover + .tooltip{

    opacity: 1;
    z-index: 3;

}

.radio-button-box__radio-buttons{

    display: flex;
    gap: 10px;
    flex-wrap: wrap;

}

.radio-buttons__radio-button span{

    width: 100px;
    height: 30px;
    border-radius: 30px;
    border: 2px solid #7a7a7a;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    cursor: pointer;

}

.radio-buttons__radio-button input{

    display: none;

}

.radio-buttons__radio-button input:checked + span{

    border: 2px solid var(--main_color);
    background: #5364d12a;

}

.another_value{

    display: flex;
    gap: 10px;
    align-items: center;

}

.another_value input{

    width: 100px;
    height: 30px;
    border-radius: 30px;  
    border: 2px solid #7a7a7a;
    padding-left: 10px;
    outline: none;
    font-size: 1.1rem;

}

.another_value input:focus{

    border: 2px solid var(--main_color);

}

.advise{

    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: 300;

}

.sdc-donor-form__input-text{

    position: relative;
    display: flex;
    flex-direction: column;

}

.sdc-donor-form__input-text input{

    width: 100%;
    height: 35px;
    padding: 5px 10px;
    font-size: 1.1rem;
    border-radius: 10px;    
    border: 2px solid #7a7a7a;
    outline: none;

}

.sdc-donor-form__input-text input:focus{

    border: 2px solid var(--main_color);

}

.error{

    font-size: 0.9rem;
    color: var(--danger_color);
    position: absolute;
    bottom: -1.4rem;
    transform: scale(0.7);
    transform-origin: left;
    opacity: 0;

}


.--visible{

    opacity: 1;
    transform: scale(1);

}

.buttons{

    display: flex;
    width: 100%;
    gap: 10px;
    margin-top:15px;

}

.sdc-donor-form__button-back{

    width: 40%;
    height: 40px;
    background: #6b6b6b;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light_text);
    border-radius: 10px;
    cursor: pointer;

}

.sdc-donor-form__donate-button{


    width: calc(60% - 10px);
    height: 40px;
    background: var(--main_color);
    color: var(--light_text);
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    
}

.sdc-donor-form__donate-button:focus{

    transform: scale(1.05);

}


.sdc-donor-form-pt__button-next{

    width: 100%;
    height: 40px;
    background: var(--main_color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light_text);
    border-radius: 10px;
    cursor: pointer;
    justify-self: self-end;

}

.--button-animation:hover{

    transform: translateY(-5px);
    transition: 0.3s ease-in-out;
    background: var(--secondary_color);

}





















main h1{

    font-weight: 400;
    font-size: 1.5rem;
    text-align: center;

}

.donate-opts-box{

    display: flex;
    gap: 25px;
    /* opacity: 0; */
    /* pointer-events: none; */

}

.divisor{

    align-self: center;

}

.comming-soon{

    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: #616161;
    z-index: 5;
    opacity: 0.3;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 600;
    

}

.comming-soon p{

    color: var(--light_text);

}

.comming-soon:hover{

    opacity: 0.8;
    transition: 0.3s ease-in-out;

}

.donate-opts-box__dob-opt{

    max-width: 400px;
    background: #fff;
    box-shadow: 0px 0px 15px 0px rgba(31, 31, 31, 0.065);
    border-radius: 10px;
    padding-bottom: 20px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;

}

.donate-opts-box__dob-opt:hover{

    transform: scale(1.05);

}

.dob-opt__cover{

    width: 100%;
    position: relative;
    overflow: hidden;
    max-height: fit-content;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.cover__effect{
    position: absolute;
    width: 100%;
    height: calc(100% - 7px);
    background: linear-gradient(90deg, #6BFBCE, #5364D1);
    opacity: 0.5;
    z-index: 1;
}

.dob-opt__cover img{

    width: 100%;

}

.dob-opt__opt-description{

    padding: 0 20px ;
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.dob-opt__opt-description  h2{

    font-size: 2rem;
    font-weight: 600;

}

.opt-description__main-desc{

    font-size: 1.05rem;
    font-weight: 500;

}

.opt-description__secondary-desc{

    font-size: 0.9rem;

}

.opt-description__od-list{

    padding-left: 20px;
    font-size: 0.9rem;

}

.od-list__apps-mini{

    display: flex;
    gap: 10px;
    /* align-items: center; */

}

.od-list__apps-mini p{

    text-align: center;
    font-size: 1.3rem;
    height: 20px;
    font-weight: 500;

}


@media screen and (max-width: 730px){


    .donate-opts-box{

        flex-direction: column;

    }

    .sigle-donate-container{

        max-width: 90%;

    }

}

@media screen and (max-width: 540px){

    .sigle-donate-container{

        padding: 30px;

    }
    

}

@media screen and (max-width: 450px){


    .dob-opt__opt-description  h2{

        font-size: 1.5rem;
    
    }
    
    .opt-description__main-desc{
    
        font-size: 1rem;
    
    }
    
    .opt-description__secondary-desc{
    
        font-size: 0.8rem;
    
    }
    
    .opt-description__od-list{
    
        padding-left: 20px;
        font-size: 0.8rem;
    
    }

    .sigle-donate-container__close-button{

        top: 15px;
        right: 15px;
    
    }

}




























.loading__card{

    max-width: 500px;
    width: 100%;
    height: 450px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding: 50px;
    position: absolute;
    margin: auto;
    z-index: -2;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    transform: scale(0.7);
    opacity: 0;


    transition: 0.5s all;

}

.loading__card.--show{

    z-index: 15;
    /* display: flex; */
    transform: scale(1);
    opacity: 1;

}

/* .loading__card.--show .card__texts{

    transform: scale(1);
    opacity: 1;

}

.loading__card.--show .loader{

    transform: scale(0.8);
    opacity: 1;

} */


.card__texts{

    font-size: 1.6rem;
    text-align: center;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 80px;
    /* transform: scale(0.6);
    opacity: 0; */

}

.card__texts p{

    position: absolute;
    opacity: 0;
    transform: scale(0.8);
    transition: 0.5s;

}

.card__texts.--standard .texts__text-standard{

    opacity: 1;
    transform: scale(1);

}

.card__texts.--sucess .texts__text-sucess{

    opacity: 1;
    transform: scale(1);

}

.card__texts.--error .texts__text-error{

    opacity: 1;
    transform: scale(1);

}

.loader{

    position: absolute;
    height: 350px;
    width: 350px;
    transform: scale(0.8) translateX(-20px);
    top: 80px;

}

.loader div:nth-child(1){
    background-color: var(--main_color);
    height: 200px;
    width: 124px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 40px;
    right: 0;
    transform: rotate(45deg);
    border-radius: 100px 100px 10px 10px;
    transform-origin: 50% 69%;
    animation: flip1 4s linear infinite;
    transition: 0.5s all;
}

@keyframes flip1{
    25%{
        transform: rotate(45deg) rotateX(180deg);
    }
    50%{
        transform: rotate(45deg) rotateX(180deg);
    }
    75%{
        transform: rotate(45deg);
    }
}

.loader div:nth-child(2){
    height: 200px;
    width: 124px;
    background-color: var(--main_color);
    position: absolute;
    top: 150px;
    left: 132px;
    transform: rotate(135deg);
    transform-origin: 50% 31%;
    border-radius: 10px 10px 100px 100px;
    animation: flip2 4s 1s linear infinite;
    transition: 0.5s all;
}

@keyframes flip2{
    25%{
        transform: rotate(135deg) rotateX(180deg);
    }
    50%{
        transform: rotate(135deg) rotateX(180deg);
    }
    75%{
        transform: rotate(135deg);
    }
}

.loader.--sucess div{

    width: 220px;
    height: 220px;
    border-radius: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: rotate(0);
    transform-origin: 0;
    animation: none;
    margin: auto;
    background: var(--sucess_color);

}

.loader.--error div{

    width: 220px;
    height: 220px;
    border-radius: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: rotate(0);
    transform-origin: 0;
    animation: none;
    margin: auto;
    background: var(--danger_color);

}

.loader img{

    position: absolute;
    width: 100px;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: scale(0.4);
    opacity: 0;
    transition: 0.8s ease-in;

}

.loader.--sucess{

    transform: translateX(0) scale(0.8);
}
.loader.--sucess #sucess{

    transform: scale(1) translateX(0);
    opacity: 1;

}

.loader.--error{

    transform: translateX(0) scale(0.8);

}

.loader.--error #error{

    transform: scale(1) translateX(0);
    opacity: 1;

}

.loader.--sucess #sucess{

    transform: scale(1) translateX(0);
    opacity: 1;

}