body {
    padding: 0 2rem;     
}

.cabecalho {
    align-items: center;
    border-bottom: 2px solid hsl(223, 64%, 98%);
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 1.5rem 0;
}

.branco {
    filter: brightness(100);
}


.laranja {
    filter: invert(53%) sepia(91%) saturate(1823%) hue-rotate(348deg) brightness(103%) contrast(101%);    
}

.ativo {
    border: 2px solid hsl(26, 100%, 55%);    
    border-radius: 13px;
    background-color: white;    
}

.ativo img {
    opacity: 0.50;                
}

.ativo__hover {        
    border-radius: 13px;
    background-color: white;    
}

.ativo__hover img {
    opacity: 0.50;                
}

.invisivel {
    display: none;
}

.botao {
    background-color: hsl(26, 100%, 55%);    
    border: none;    
    border-radius: 5px;
    color: white;
    font-weight: 700;   
}

@media screen and (max-width: 900px) {

    body {
        padding: 0;
        margin: 0;
    }

    .cabecalho {
        width: 100%;
        margin-bottom: 0;
        padding: 1rem;
    }
    

}

