@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;500;600&display=swap');

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    font-family: 'Public Sans', sans-serif;}

:root {
    --cor-de-fundo: #fff;
    --cor-do-texto: #3C3C3C;
    --cor-borda: #D8D8D8;
    --cor-footer: #f2f2f2;
    --cor-ancora: #036496;
}

      
/*FONTES-----------------------------*/
#endereco{
    font-size: 1rem;
    color: var(--cor-do-texto);
}

p{
    font-size: 1.2rem;
    color: var(--cor-do-texto);
}


strong{
    font-size: 1.3rem;
    color: var(--cor-do-texto);
}


h2{
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cor-do-texto);
}

h4{
    font-size: 1vw;
    font-weight: 400;
    color: var(--cor-do-texto);
}

a{
    font-size: 1.2rem;
    color: var(--cor-ancora);
    text-decoration: underline;
}

.title{
    width: 40%;
    text-align: center;
    color: #3C3C3C;
    font-size: 2rem;

}

/*BIGGEST-----------------------------*/

body {
    display: flex;
    justify-content: center;
    background-image: url("../images/gradient_background2.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.mainScreen{
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
}

.open{
    display: flex;
}

#button-container{
    width: 60%;
    display: flex;
    align-items: flex-start;
}

#sign-up-button{
    padding: 1.2vw 2vw;
    background-color: #036496;
    border-radius: 10px;
    border: none;
    font-size: 1.4rem;
    font-weight: 500;
    color: white;
    transition: 0.3s;
    cursor: pointer;
    box-sizing: border-box;
}

#sign-up-button:hover{
    transform: scale(1.02);
    transition: 0.3s;
}

/*HEADER-----------------------------*/


#header-container{
    width: 100%;
    display: flex;
    background-color: var(--cor-de-fundo);
    padding: 0.5vw 0px;
    justify-content: center;
    position: fixed;
    top: 0;
    box-shadow: 3px 3px 10px rgba(0,0,0,.161);
    z-index: 98;

}

#header-config{
    width: 60%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}



.header{
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 30px;
    height: 20vw;
    width: 100%;
    margin-top: 4.5vw;
    justify-content: center;
    
    
    background-image: url("../images/diversidade_img.svg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center top;
    background-size: contain;
    
    
}


#header-config-options{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
}

.config-header-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.8rem;
    height: 1.8rem;
    background-color: white;
    border-radius: 6px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 80%;
    border: 0.8px solid #3C3C3C;
}

.config-header-icon:hover {
    background-size: 90%;
}


.config-options-header{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;

}

#config-language{
    column-gap: 20px;
}

/*LOGOS-----------------------------*/

.logo-default{
    height: 3.5vw;
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;

}

#logo-gov-config{
    width: 8vw;
    background-image: url("../images/logo_gov.png");
}

#logo-gov{
    display: none;
}


#logo-ati{
    background-image: url("../images/logo-ati.svg");
    height: 4.5vw;
}

#logo-selo{
    width: 7vw;
    height: 7vw;
    background-image: url("../images/selo_diversidade.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;

}

/*ICONS-----------------------------*/

.icon-language{
    display: block;
    cursor: pointer;
    opacity: 80%;
}

.icon-language:hover{
    font-weight: 500;
    opacity: 100%;
    transition: 0.5s;
}

.icon-config{
    display: flex;
    width: 1.8rem;
    height: 1.8rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.icon-socials-black{
    display: flex;
    width: 2.7rem;
    height: 2.7rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    
}

.icon-socials-black:hover{
    transform: scale(1.08);
    transition: 0.5s;

}


/*INFO-----------------------------*/

#info{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 5vh;
    justify-content: center;
    align-items: center;
    background-color: var(--cor-de-fundo);
    padding: 10vh 0px;
    box-sizing: border-box;
}

#info-container{
    width: 60%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;

}

.info-content{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.info-title{
    width: fit-content;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    column-gap: 20px;
    padding: 20px 20px 20px 0px;
    cursor: pointer;
}

.info-text{
    display: none;
}

.info-text-open{
    display: flex;
    width: 100%;
    flex-direction: column;
    row-gap: 20px;
    opacity: 0;
    transition: opacity 1.5s;
}

.icon-default{
    min-width: 2vw;
    height: 1.5vw;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-image: url(../images/caret-down.svg);
    transition: 0.5s;
}

.info-divider{
    width: 100%;
    height: 2px;
    background-color: var(--cor-borda);

}

/*FOOTER-----------------------------*/

#border-footer{
    height: 4px;
    width: 100%;
    background-image: url(../images/gradient_background.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    

}

#footer-logo-container{
    width: 80%;
}

#footer-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4vw 0px;
    background-color: var(--cor-footer);
}

#footer-info{
    width: 60%;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    
}

#footer-info-content{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    
}

#footer-logo-container{
    width: 100%;
    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}

#socials{
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    
}



/*ipad------------------------------------------*/
@media (min-width:768px) and (max-width: 1036px) {


#endereco{
    font-size: 0.7rem;
}

strong{
    font-size: 1rem;
}      
    
p{
    font-size: 0.95rem;
}

h1{
    font-size: 2.1rem;
}

h2{
    font-size: 1.2rem;
}

h4{
    font-size: 0.95rem;
    font-weight: 600;
}

a{
    font-size: 0.95rem;
}

.header{
    height: 26vh;
    margin-top: 10vw;
    padding: 1vw 0px;
    row-gap: 15px;
 
    box-sizing: border-box;
    background-attachment: unset;
    background-size: cover;
    background-position: center bottom;
}

#header-config{
    width: 90%;
}

#header-config-options{
    column-gap: 20px;
}

#header-container{
    padding: 2.5vw 0px;
}

.title{
    width: 60%;
    font-size: 1.4rem;
    margin-top: 0px;
}


#info{
    padding: 6vh 0px;
}

.icon-default {
    min-width: 2.5vh;
    height: 2vh;
}

.icon-config {
    width: 2.4rem;
    height: 2.4rem;
}

#info-container {
    width: 75%;
}

#logo-gov-config{
    width: 16vw;
}

#logo-gov{
    display: none;
}

#logo-ati{
    height: 6vw;
}


.logo-default{
    height: 5vw;
}

#logo-selo{
    width: 9vw;
    height: 9vw;
}

#footer-info{
    width: 75%;
}

#footer-info-content{
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    
}

.icon-socials-black {
    width: 2.4rem;
    height: 2.4rem;
}

.config-header-icon{
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 5px;
    background-size: 80%;

}

#button-container{
    width: 75%;
}

#sign-up-button{
    padding: 1.5vw 2vw;
    font-size: 1.2rem;

}

}


/*mobile------------------------------------------*/
@media (max-width: 767px) {

#endereco{
    font-size: 0.8rem;
}

strong{
    font-size: 1rem;
}      

    
p{
    font-size: 0.95rem;
}

h1{
    font-size: 2.1rem;
}

h2{
    font-size: 1.2rem;
}

h4{
    font-size: 0.95rem;
    font-weight: 600;
}

a{
    font-size: 0.95rem;
}

.header{
    height: 26vh;
    margin-top: 11.5vw;
    padding: 4vw 0px;
    row-gap: 10px;
    box-sizing: border-box;
    background-attachment: unset;
    background-size: cover;
    background-position: center bottom;
    background-image: url("../images/diversidade_img_mobile.svg");
}

#header-config{
    width: 100%;
    justify-content: center;
}

#header-config-options{
    width: 90%;
    justify-content: space-between;
}

#config-language{
    display: flex;
    max-width: 45%;
    justify-content: space-between;
    column-gap: 15px;
}

#header-container{
    padding: 2.5vw 0px;
    box-sizing: border-box;
    height: 12vw;
}

.title{
    width: 85%;
    font-size: 1.4rem;
    margin-top: 0px;
}

#info{
    padding: 6vh 0px;
}

.info-content{
    row-gap: 15px;
}

.info-title{
    column-gap: 15px;
    padding: 15px 15px 15px 0px;
}

#info-container{
    width: 80%;
}

.icon-default {
    min-width: 3vh;
    height: 2.5vh;
}


.icon-config {
    min-width: 1.3rem;
    width: 1.6rem;
    height: 1.6rem;
}

#logo-selo{
    min-width: 14vw;
    height: 14vw;
}

#logo-gov-config{
    display: none;
}

#logo-gov{
    display: flex;
    width: 90%;
    background-image: url("../images/logo_gov.png");
    margin-bottom: 2vw;
}

#logo-ati{
    height: 11vw;
}

.logo-default{
    height: 8vw;
}

#footer-content{
    padding: 6vw 0px;
    
}

#footer-info{
    width: 80%;
}

#footer-info-content{
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    
}

#socials{
    justify-content: space-between;
}

.icon-socials-black {
    width: 2.5rem;
    height: 2.5rem;
}

.config-header-icon{
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 4px;
    background-size: 80%;
    border: 1px solid #3C3C3C;

}

#button-container{
    width: 80%;
}

#sign-up-button{
    width: 100%;
    padding: 3vw 2vw;
    font-size: 1.2rem;

}
}
    