/* ESTILO GERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
}

.interface {
    max-width: 1280px;
    margin: 0 auto;
}

.flex {
    display: flex;
}

/* ESTILO DO CABEÇALHO */
header {
    padding: 0.5vw 4%  0vw 4%;
    background-color: #2c2f33;
}

header > .interface {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height: auto;
    width: 25vw;
    padding: 0% 5%;
}

.logo img {
    height: auto;
    width: 100%;
}

/* ESTILO MID */
section.mid-site {
    padding: 0.5vw 10%  0vw 10%;
}

section.mid-site .interface {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

section.mid-site .interface h4 {
    font-style: italic;
    margin: 2% 0%;
}

section.mid-site .text {
    padding: 30px;
}

/* FOOTER*/
footer {
    background-color: #2c2f33;
    padding: 0vw 20%  0vw 20%;
    display: flex;
    flex-direction: row;
}

footer .interface {
    padding: 4%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .coluna2 {
    display: flex;
}

footer .coluna1 img {
    height: auto;
    width: 13vw;
}

footer .coluna2 i {
    font-size: 25px;
    transition: 0.5s;
    color: #ffffff;
}

footer .coluna2 a {
    padding-right: 10%;
}

footer .coluna2 i:hover {
    transform: translate(0, -20%);
    color: #898989;
}