*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
::selection{
    background-color: #343c2c;
    color: #fff;
}

header{
    height: 13vh;
    width: 100%;
    padding: 20px 20px;
}
header .interface{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .logo{
    display: flex;
    align-items: center;
    gap: 10px;
}
header .logo img{
    height: 60px;
}
.logo .image{
    height: 50px;
}
.btn-login button{
    color: #fff;
    background-color: #343c2c;
    border-radius: 30px;
    font-size: 20px;
    padding: 10px 30px;
    transition: 0.3s;
    border: solid #343c2c 1px;
}
.btn-login button:hover{
    background-color: #fff;
    color: #343c2c;
    border: solid #343c2c 1px;
}

body .sobre{
    padding: 40px;
    background-color: #f3f3f3;
}
body .sobre .interface{
    display: flex;
    justify-content: space-between;
    gap: 100px;
}
body .sobre .interface img{
    width: 300px;
}
body .txt-sobre h1{
    font-size: 30px;
    margin-bottom: 40px;
}
body .txt-sobre p{
    font-size: 20px;
    line-height: 20px;
}

body .equipe{
    background-color: #d0cdcb;
    padding: 40px;
}
body .txt-equipe h1{
    font-size: 30px;
    margin-top: 20px;
}
body .txt-equipe img{
    max-width: 150px;
    border-radius: 100px;
    margin: 20px;
}
body .nomes{
    display: flex;
    justify-content: space-between;
    padding: 90px;
    gap: 260px;
    align-items: center;
    text-align: center;
}
body .nome{
    font-size: 25px;
    font-weight: 500;
    color: #343c2c;
}
body .nome1, .nome2{
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
}
body .nome1:hover, .nome2:hover{
    transform: translateY(-10px);
}

body .apoio .interface{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
}
body .apoio{
    background-image: url(/images/apoio-fundo.png);
    background-size: cover;
    margin: 0;
    height: 100vh;
}
body .txt-apoio{
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    width: 700px;
    height: 500px;
    text-align: center;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
body .txt-apoio p span{
    font-size: 23px;
    font-weight: 600;
    color: #343c2c;
}
body .txt-apoio p{
    font-weight: 300;
}
body .txt-apoio h2{
    font-size: 20px;
    margin: 30px 0 8px;
    color: #343c2c;
}
body .txt-apoio .chave{
    font-weight: 300;
    font-size: 30px;
}
body .txt-apoio button{
    color: white;
    background-color: #343c2c;
    padding: 5px 55px;
    border-radius: 20px;
    font-size: 10px;
    margin-top: 10px;
    transition: 0.3s;
}
body .txt-apoio button:hover{
    color: #343c2c;
    background-color: white;
    border: solid #343c2c 1px;
}