@charset "UTF-8";
:root{
    --fonte1: 'Yanone Kaffeesatz', sans-serif;
    --fonte2: 'Domine','Gill Sans','Trebuchet MS', serif;
    --fonte3: 'Roboto Slab', serif;
}
*{
    margin: 0px;
    padding: 0px;
}
body{
    background: #27323E;
    height: 100%;
    color: white;
}
header{
    position: fixed;
    top: 0; left: 0; right: 0;
    background-color: white;
    padding: 5px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content:flex-end;
    font-family: var(--fonte2);
}
header .navbar ul {
    list-style: none;  
}
header .navbar ul li{
    position: relative;
    float: left;  
}
header .navbar ul li a{
    font-family: var(--fonte1);
    font-size: 1.4rem;
    padding: 0.5rem;
    color: #000000;
    font-weight: bold;
    display: block;
    text-decoration: none;
    
}
header .navbar ul li a:hover{
    background-color: #212529c0;
    color: #F7B733; 
    border-radius: 5px;
}
#menu-bar{
    display: none;   
}
header label {
    font-size: 1.2rem;
    color: #6e6f70;
    cursor: pointer;
     display: none;
}
/*>>>>>>>>>>>>>>>>>> MAIN <<<<<<<<<<<<<<<<<*/
main{
    margin-top: 4rem;
    margin-left : 1rem;
    margin-right: 1rem;
    text-align: center;
}
#atencao{
    color: rgb(237, 13, 13);
    font-size: 1.5rem;
}
.titulos{
    font-family:var(--fonte2);
    font-size: 20px;
    margin-top: 15px;
}
.subtitulos{
    font-family:var(--fonte2);
    font-size: 20px;
    margin: 20px;
}
.lista2{
    text-align: justify;
    margin-bottom: 5rem;
}
.lista2 li{
    font-family: var(--fonte3);
    font-size: 1.1rem;
    padding-top: 10px;
    min-width: 300px;
    max-width: 700px;
    list-style-position: inside;
    margin: auto;
    list-style: none;
}
/* >>>>>>>>>>>>>>RODAPE <<<<<<<<<<<<<<<<<<*/
#rodape {
    background-color: #212529;
    height: 100%;
    color: white;
    border-radius: 10px 10px 0px 0px;
    font-family: var(--fonte2);
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-bottom: 10px;
}
.box ul{
    display: flex;
    gap: 20px;
    list-style: none;
    padding-inline: 10px;
}
.box ul li a{
    text-decoration: none;
    color: white;

}
.contactEmail{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#list3 a:hover {
    color: #F7B733;
}
.box {
    margin-right: 10px;
    padding: 10px;
}

#contato {
    align-items: center;
    justify-content: center;
    display: flex;
    padding-bottom: 1rem;
}

#contato p {
    text-align: center;
    font-weight: bold;
}
     /*>>>>>>>>>>>>>>>>TROCA DE TAMANHO DE TELA <<<<<<<<<<<*/
@media(max-width:743px){

        header{
            padding: 1rem;
            background-color: white;
        }
        header label{
            display: initial;
         
        }
        header label:hover{
            color: #F7B733;
        }
        
        
        header .navbar{
           position: absolute;
            top: 100%;  right: 0;
            background-color: #e7e9ee;
            border-top: 1px solid rgba(91, 84, 84, 0.197);
            display: none;
        }
        
        header .navbar ul {
           margin-right: 5px; 
           
        }
        header .navbar ul li{
            width: 100%;
            border-top: 1px solid rgba(91, 84, 84, 0.174);
        }
        header .navbar ul li a{
            font-family: var(--fonte1);
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        header .navbar ul li:hover{
            background-color: #212529c0;
            color: #F7B733; 
        }
        header .navbar ul li a:hover{
            background-color: transparent;
        }
        #menu-bar:checked ~.navbar{
            display: initial;
        }
        
        
        #container_2{
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        #primario{
            
            text-align: center;
        }
        #primario p{
            font-size: 1.5rem;
            margin-bottom: 5rem;
        }
        #secundario{
           
            margin: 2rem;
            
        }
        #secundario h1{
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }
        #secundario p{
            font-size: 1.1rem;
            margin-left: 1rem;
            text-align: justify;
            text-indent: 1rem;
            max-width: 500px;
        }
}