section {
    overflow-y: hidden;
    }

.backgroundnumeros{
    background-image: url("../../images/numeros/backgroundnumeros.png");
    background-image: no-repeat;
    background-size: cover;
}

.containerFlex{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 360px;
    align-items: center;
    gap: 30px;  
}

.containerFlex div {
    transition: transform .1s;
    display: flex;
    width: 300px;
    height: 151px;
    box-shadow: 0px 4px 15px rgba(130, 130, 130, 0.25);
    border-radius: 14.9141px;
    background: #F8F8F8;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title{
    text-align: center;
}

.containerFlex div:hover {
    background: #FFC67E;
    color: #F8F8F8;
    transform: scale(1.1);
}

h2{
    color: inherit;
}


.numh3{
    text-align: center;
    color: black;
    margin-bottom: -2%;
}

@media (max-width: 768px) {

    .backgroundnumeros{
        margin-top: 70px;
    }

    .numh3{
        display: none;
    }

    .containerFlex{
        flex-direction: column;
        height: auto;
    }

    .containerFlex div {
        background: #FFE1BB;
        color: #3F3F3F;
        height: 150px;
        width: 70%;
    }

    .containerFlex h2 {
        color: #FD8E00;
    }

    .containerFlex div:hover {
        background: #FFE1BB;
        color: #3F3F3F;
        transform: scale(1);
    }

    .backgroundnumeros{
    background-image: url("../../images/numeros/backgroundmobile.png");
    background-image: no-repeat;
    background-size: 100%;
    padding-bottom: 10%;
}

    
}

 /* /Monitores de 24 Polegadas/ */
 @media (min-width: 1920px) and (max-width: 2208px){
   .containerFlex{
    gap: 60px;
   }
}

    /* /Monitores de 19 Polegadas/ */
    @media (min-width: 1280px) and (max-width: 1440px){
        .containerFlex div{
            width: 260px;
            
           }
    }

