* {
    margin: 0px;
    border: 0px; 
    padding: 0px;
    font-family: "Inter";
    text-decoration: none;
    list-style: none;
    color: var(--cor8);
    box-sizing:border-box;
}

.hidden {
    display: none;
}

:root {

    /* Cores */

    --corPrincipal: #08183A;
    --corSecundaria: #CEB884;
    --corTerciaria: #06112a;
    --corRodape: #231F20;
    --cor3: #171a25;
    --cor4: #afa2905b;
    --cor5: #E6E2D4;
    --cor6: #02174a;
    --cor7: #c0c0c0;
    --cor8: white;
    --cor9: black;
    --cor10: #8e7f5b;

    /* Fontes */

    --fonteTitulo: 'Roboto Condensed', serif;
    --fonteParagrafo: 'Inter';

}

img {
    display: block;
    box-sizing: border-box;
}

.hide {

    display: none;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--corTerciaria);
}

.flex {

    display:flex;
    flex-direction: row;
}

h1, h2, h3 {

    font-family: var(--fonteTitulo);
    color: var(--corSecundaria); 
    font-size: 2.5em;
    margin: 10px 0px 20px 0px;
}

p {

    text-indent: 30px;
    font-size: 1.3em;
    font-weight: 400;
    font-family: var(--fonteParagrafo);
    color: var(--cor8);
}

#logo {
    margin: auto;
}

#logo img {
    width: 150px;
}

.nav_item a:hover {
    transition: 0.5s;
    font-size: 1.4em;
    font-weight: 700;
    color: var(--cor8);
}

/*Visualização em telas menores / Estilização padrão:*/

header {

    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1;    
    background-color: var(--corPrincipal);
    gap: 20px;
}

header div {
    display: flex;
    align-items: center;
    gap: 50px;
}

header i {
    cursor: pointer;
}

nav {
    width: 100%;
    background-color: var(--corPrincipal);
}

#nav_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 1.6em;
}

#nav_list a {

    font-size: 1em;
}

.nav_item a  {

    font-size: 1.3em;
    font-family: var(--fonteTitulo);
    color: var(--corSecundaria);
    padding: 0px;
    white-space: nowrap;
}

#menu_bars {

    background-color: var(--corPrincipal);
    color: var(--corSecundaria);
    font-size: 20px;
}

#social_list {

    display: flex;
    flex-direction: row;
    gap: 10px;
}

#social_list i {

    font-size: 1.5em;
    color: var(--corSecundaria);
}

#social_list i:hover {
    transition: 0.5s;
    color: var(--cor8);
}

/* SOBRE: */

#about_section {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

#about_section:target {
    padding-top: 200px;
    margin: -100px 0 0;
}

#about_section article {
    max-width: 90%;
    margin: 0px 20px 0px 20px;
}

#about_section i {
    cursor: pointer;
}

/* CLIENTES */

#clientes_section {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--cor8);
    min-height: 600px;
    
}

#client_logos_wrapper {

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    box-sizing: border-boxclien;
    max-width: 100%;
    height: inherit;
    padding: 20px;
    gap: 80px;

}

.client_logo {
    box-sizing: border-box;
    width: 140px;
    min-width: 140px;
    
}

.client_logo img:hover {

    transition: all .3s ease-in-out;
    transform: scale(1.5);
}

.client_logo img {

    width: 100%;
    transition: 0.5s ease;
}

.client_logo:hover {

    transition: 2s;
}

#equipe_section {

    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--cor6);
    padding: 50px 0px 40px 0px;
    margin: auto;
}

/* ÁREAS: */

#areas_section {

    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 30px auto 0px auto;
    padding: 50px;
    min-height: 600px;
    background-color: var(--corTerciaria);
}

#areas_section:target {
    padding-top: 200px;
    margin: -100px 0 0;

}

#areas_section li{

    font-size: 1.2em;
    color: var(--corSecundaria);
}

#area_wrapper {

    display: flex;
    margin: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-bottom: 20px;
}

.area_overview {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    flex-shrink: 0;
    flex-grow: 0;
    width: 200px;
    height: 300px;
    padding: 20px;
    text-align: center;
    border: 5px solid;
    border-color: var(--cor10);
    border-radius: 10px;
    box-shadow: 2px 2px 4px 2px black;
    background-color: var(--cor6);
    transition: 0.5s ease;
}

.area_overview h2 {
    font-size: 1.8em;
    color: var(--corSecundaria)
}

.area_overview i {

    font-size: 4em;
    color: var(--cor8)
}

.area_overview p {
    text-indent: 0px;
    text-align: center;
}

.area_overview:hover {

    transition: all .3s ease-in-out;
    transform: scale(1.1);
}

/* EQUIPE */

#equipe_section {
    min-height: 600px;
    background-color: #091d4c;
}

#equipe_section:target {
    padding-top: 200px;
    margin: -100px 0 0;
}

#equipe_section h2 {
    font-size: 1.5em;
    color: var(--cor8);
    margin-bottom: 0px;
}

figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    scrollbar-color: #CEB884 #08183A;
    scrollbar-width: thin;
}

figure img {
    width: 300px;
    border-radius: 150px;
    transition: 0.5s ease;
}

figure img:hover {
    transition: 0.5s;
    transform: scale(1.2);
}

figure p {
    width: 80%;
    margin: auto;
    color: var(--cor8);
}

.adv_profile i {

    color: rgb(203, 201, 201);
    font-size: 6em;
}

.adv_profile h3 {

    margin: 20px 10px 40px 10px;
    color: white;

}
.adv_profile p{

    margin-top: 15px;
    text-indent: 30px;
    text-align: justify;
    color: rgb(255, 255, 255);
}

#certificacoes {

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    align-items: center;
    min-height: 300px;
    margin-top: 50px;
    gap: 50px;
    
}

#certificacoes li {
    display: block;
    min-width: 300px;
    max-height: 250px;
    width: 300px;
    height: 250px;
    border-radius: 20px;
}

#certificacoes li:first-child {
    background: url("assets/imgs/diploma1.jpg") no-repeat;
    background-size:cover;
}

#certificacoes li:nth-child(2) {
    background: url("assets/imgs/diploma2.jpg") no-repeat;
    background-size:cover;
}

#certificacoes li:nth-child(3) {
    background: url("assets/imgs/diploma3.jpg") no-repeat;
    background-size:cover;
}



footer {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content:space-evenly;
    align-items: center;
    background-color: var(--corRodape);
}

footer div {
    display: flex;
    flex-direction: column;
    flex: wrap;
    gap: 30px;
    align-items: start;
    justify-content: center;
}

footer > img {

    width: 250px;
}

footer > ul {

    display: flex;
    flex-direction: column;
    flex: wrap;
    color:white;

}

footer li {
    max-width: 250px;
}

/*Visualização em telas médias: */

@media only screen and (min-width: 1000px) {

    header {

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        background-color: var(--corPrincipal);
        
    }

    #menu_bars {
        display: none;
    }

    #nav_list {

        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        height: 40px;
        
    }

    #nav_list a {

        font-size: 1em;
    }

    #social_list {

        display: flex;
        flex-direction: row;
        align-items: center;
        position: relative;
        gap: 20px;
    }

    .area_overview {

        width: 250px;
        height: 300px;

    }

    .area_overview h2 {
        font-size: 2em;
        color: var(--corSecundaria)
    }

    .area_overview i {

        font-size: 6em;
    }

    #dados_adicionais iframe {

        width: 300px;
        height: 250px;
    }
}

/*Visualização em telas maiores: */
@media only screen and (min-width:1300px) {

    #nav_list {
        gap: 80px;
    }
    #social_list {

        display: flex;
        flex-direction: row;
        gap: 15px;
        position: initial; /* Reseta a posição da lista com redes sociais*/
    }

    #dados_adicionais iframe {

        width: 400px;
        height: 350px;
    }

}

