*{
    margin: 0px;
    padding: 0px;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/*Cabeçalho e menu*/

.header{

    padding-inline: 16px;
    background: center / cover no-repeat url("../image/foto-capa.png");
    height: 875px;
    align-self: stretch;
}

ul {
    list-style: none;

}

.nav-item, .nav-list-sub a {
    color: #fff;
    font-size: 1.2rem;
    transition: 0.3s;
    cursor: pointer;
    text-align: center;
}


a{
    text-decoration: none;
    transition: 0.3s;
}

a:hover{
    opacity: 0.7;
}

.logo{
    height: 60px;
}

.nav, .nav-list-sub {
    max-width: 1280px;
    height: 90px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;

}

.nav-list a {
    font-size: 1.2rem;
    color: #fff;
    padding-block: 16px;
}


.hamburguer {
    display: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-align: right;
}

/*Submenu*/

.nav-item:hover ul {
    display: block;

}

.submenu{
    list-style-type: none;
    text-align: left;
    align-items: center;
    background-color: rgb(231, 231, 231);
    display: none;
    position: absolute;
    width: 18rem;
    border-radius: 5px;
    

}

.submenu li {
    display: inline;

}

.submenu li a {
    display: block;
    padding: 25px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #181818;
    flex: 1 0 0;
}

.submenu li a:hover {
    color: #FFF;
    border-radius: 5px;
    background-color: #164361;
    opacity: 1;

    
}

.mobile-menu {
    display: none;
}


/*Sobre nós*/

.sobre {
    display: flex;
    min-height: 70vh;
    padding: 32px 64px;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 32px;
    align-self: stretch;
}

.foto-sobre{
    max-width: 450px;
    flex: 1 0 0;
}



.texto-sobre{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

.sobre h2 {
    color: #164361;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 48px; /* 120% */
}

.sobre p {
    color: #000;
    font-size: 1em;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

/*Áreas de atuação*/

.atuacao{
    display: flex;
    min-height: 70vh;
    padding: 64px 0px;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 120px 64px;
    align-self: stretch;
    flex-wrap: wrap;
    background: #164361;
}

.titulo-atuacao{
    width: 351px;
    height: 140px;
}

.atuacao h3{
    color: #FFF;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 69.5px;
}

.atuacao h2{
    color: #D9B123;
    font-family: Inter;
    font-size: 4.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 70px; /* 100% */
}

.atuacao ul {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 120px;
    flex-wrap: wrap;
}

.atuacao ul div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.atuacao ul li {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 100% */
}

/*Equipe*/

.equipe {
    display: flex;
    padding: 32px 64px;
    justify-content: center;

    align-self: stretch;
    flex-wrap: wrap;
    min-height: 70vh;


    align-items: flex-start;
    align-content: flex-start;
    gap: 32px;
    flex: 1 0 0;

}

.membros{
    display: flex;
    min-width: 270px;
    max-width: 620px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;
}

/*Rodapé*/

footer {

    display: flex;
    min-height: 250px;
    padding: 32px 64px;
    justify-content: center;
    align-items: flex-start;
    gap: 64px;
    align-self: stretch;
    background: #F2F2F2;

}

.dados-contato{
    display: flex;
    width: 652px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    gap: 24px;
    min-width: 350px;
    max-width: 400px;
}

.icon-contato {
    display: flex;
    align-items: center;
    gap: 21px;
}

.icon-contato a img {
    display: flex;
    width: 48px;
    height: 48px;
}

.endereco, .numero, .email {
    color: #000;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/*Botão flutuante / whatsapp */

.whats{
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 1;
}

.whats img {
    width: 76px;
}