.section3{
    padding-top: 120px;
    padding-bottom: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: url("../img/bgdesk/10.png")no-repeat ;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    font-family: 'Poppins', sans-serif;

}
.section3::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.section3 .container{
    z-index: 2;
    margin: 0 auto;
    width: 70%;
    height: 80%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.section3 .container .box{
    width: 250px;
    height: 320px;
    z-index: 3;
    padding-inline: 15px;
    color: rgb(211, 211, 211);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #cdab7c52;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.3);
    font-size: 15px;
    transition: .5s;
}

/* .section3 .container .box:hover{
    transform: scale(1.02);
} */

.section3 .container .box h3{
    margin: 5px 0 0 0;
    text-shadow: 2px 2px 4px rgb(0, 0, 0)
}

.section3 .container .box p{
    height: 57px;
    display: flex;
    align-items: center;
    text-align: center;
    font-weight: 400;
    text-shadow: 2px 2px 3px rgb(0, 0, 0)
}

.section3 .container .box .valor{
    text-shadow: 2px 2px 2px rgb(0, 0, 0);
    display: flex;
    align-items: flex-end;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 2px;
}

.section3 .container .box img{
    z-index: 5;
    width: 100px;
    padding: 2%;
}

.section3 .container .box span{
    position: absolute;
    left: 25%;
    bottom: 1px;
    font-size: 13px; 
    font-weight: 300;
    text-shadow: 2px 2px 2px rgb(0, 0, 0);
}


@media screen and (max-width:500px){
    .section3{
        display: flex;
        align-items: center;
        justify-content: space-around;
        background-image: url("../img/bgmob/17.png");
        background-size: cover;
        background-position: center top;
        background-attachment: fixed;
    }
    .section3::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

}