@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%;
}

/*>>>>>>>>>>>>HEADER<<<<<<<<<<<<<<<*/
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;
    border-radius: 10px 0px 10px 0px ;
}
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: #000000;
    cursor: pointer;
    font-weight: bold;
     display: none;
}
/*>>>>>>>>>>>>>>>>>>>>MAIN<<<<<<<<<<<<<<<<<<<<<<<< */
main p {
    font-family: var(--fonte3);
    font-size: 1.2rem;
    color: white;
    padding-top: 1rem;
    min-width: 300px;
    max-width: 700px;
    margin: auto;
    text-align: justify;
}

#paragrafo {
    text-indent: 2rem;
}

#prim {
    margin-left: 0.6rem;
    margin-right: 0.6rem;
}

h1 {
    font-family: var(--fonte2);
    font-size: 2.6rem;
    margin-top: 4rem;
    text-align: center;
    color: white;

}

h2 {
    font-family: var(--fonte2);
    font-size: 1.6;
    margin: 20px;
    text-align: center;
    color: white;
}

#list2 ul {

    margin: 0.6rem;
    margin-bottom: 5rem;
}

#list2 ul li {
    font-family: var(--fonte2);
    font-size: 1.2rem;
    color: white;
    padding: 0.6rem 0rem 0rem 0rem;
    min-width: 300px;
    max-width: 700px;
    list-style-position: inside;
    margin: auto;
}

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


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



@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 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        border-top: 1px solid rgba(91, 84, 84, 0.174);
    }

    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;
    }
}