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

body {
    background-color: #ffffff;
}

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





/* ESTILO DO CABEÇALHO */
    header{
        background-color: #03A47D;
        display:flex;
        justify-content: space-around;
        align-items: center;
    }

    nav ul{
        list-style-type: none;

    }

    nav ul li{
        display: inline-block;
     
    }

    nav ul li a{
        font-size: 1.5rem;
        padding: 35px;
        color:#fff;
        text-decoration: none;
        display: inline-block;
    }

/* ESTILO DO TOPO DO SITE */

 .txt-topo-site p {
    color: #000000;
    margin: 50px 0;
    font-size: 23px;
    text-align: justify;
    
}
/* ESTILO DO RODAPÉ */
.rodape {

    font-size: 25px;
    color: #000000;
 }



 
.icone i{
    font-size: 3rem;
    color: #fff;
}

.cabecalho_titulo{
    text-align: center;
    font-size: 2rem;
  
}
footer {
    display: flex;
    justify-content: space-between;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: #C4C4C4;
}

.coluna{
    display: flex;
    flex-direction: column;
    width: 450px;
    align-items: center;
    justify-content: center;
}

.dados{
    text-align: center;
    margin: 0 2%;
}

.apresentacao__links a{
    display: inline-block;
    text-decoration: none;
    transition: .2s;
}

.apresentacao__links a:hover{
    transform: scale(1.03);
}
button{
    background-color: #000000;
    font-size: 1rem;
    color: #fff;
}
