* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-size: 100%;    
}

.cabecalho {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;    
    margin-top: 10px;        
}

.main{
    background-color: #333333;
    margin-top: 20px;
    padding: 10px;
    text-align: center;
}

.main-titulo {
    font-family: 'Exo',arial,sans-serif;       
}

.main-titulo h1{        
    font-size: 40px;
    font-weight: 400;
    color: white;
}

.main-titulo h2{        
    font-size: 20px;    
    color: white
}

.main-imagem-titulo{    
    border-radius: 30px;    
     
}

.vantagens{
    display: flex;
    flex-direction: row;
    align-items: center;    
    justify-content: space-around;         
    margin-top: 20px;   
    margin-bottom: 20px;
}

.vantagens-item {
    display: flex;
    flex-direction: column;    
    align-items: center;  
    gap: 10px;    
    text-align: center;    
    color: #333333;
    font-family: 'Exo',arial,sans-serif;
}

.vantagens h1 {
    font-family: 'Exo',arial,sans-serif;
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    font-weight: bold; 
    color: #333333;    
}

.vantagens h2 {    
    font-size: 20px;       
    color: #127528;    
    font-weight: bold; 
}


.footer{       
    display: flex;
    flex-direction: row;    
    align-items: center;
    justify-content: space-around;       
    margin-top: 30px;
    margin-bottom: 30px;    
}

.linha{
    border-top: 1px solid #8a8a8f;
}


