*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
    text-decoration: none;
    list-style: none;

}


i{
    font-size: 16px;

}


:root{
    --primary:#1b1b1b;
    --secondary:#ffd919;
    --text:#363636;
    --text-light:#f0f0f0;
}


header{
    width: 100%;
    height: 150px;
    background-color: var(--text-light);
    
}

.topo{
    width: 100%;
    height: 60px;
    background-color: #1b1b1b;
    color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 12px;
}



/*Mobile first*/
@media only screen and (max-width: 500px) {
    header,.topo,.container-fluid {
      display:flex;
      flex-direction: column;
      font-size: 0.7rem;
    }
    
    .topo{
        height: 80px;
    }

    

}


.container-fluid{
    width: 100%;
    height: 75vh;
    background-image: url('../img/BANNER_SEG._ELETRONICA.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}