.containerRed {
    flex: 1; 
    display: flex;
    justify-content: center; 
    align-items: center; 
    gap: 40px; 
    width: 100%;
    height: 100px;

    /* A FAIXA VERMELHA ATRÁS DOS CARDS */
    background-color: #db2424; 
    box-shadow: inset 0 0 0px rgba(0, 0, 0, 0.4); 
}
.containerWhite {
    flex: 1;
    display: flex;
    justify-content: center; 
    align-items: center; 
    gap: 40px; 
    width: 100%;
    height: 150px;

    
    background-color: #fdf1f1; 
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4); 
}

