.bidonesSection{
    width: 100%;
    margin-top:clamp(3.5rem, 3vw, 4.2rem);
    background: #f0f0f0;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    margin-bottom: clamp(3.5rem, 4vw, 6rem);
}
.bidonesSection h1{
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: #444;
}
.bidonesSection .bidCont{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(23rem, 1fr));
    gap: 1rem;
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    background: #f3f3f3;
    box-shadow: 0 5px 10px rgba(0,0,0, .080);
    border: 1px solid #fff;
}

@media(max-width:990px){
    .bidonesSection .bidCont{
        grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));

    }

}

.bidonesSection .bidCont .card{
    display: flex;
    flex-direction: column;
    width: 100%;
    row-gap: .5rem;
    padding: .5rem;
    border-radius: 1rem;
    background: linear-gradient(45deg, #ebebeb, #fefaff, #fff);
    box-shadow: 0 5px 8px rgba(0,0,0, .080);
    border: 1px solid #eee;
}
.bidonesSection .bidCont .card h2{
    font-size: clamp(.8rem, 2vw, 1.2rem);
    font-weight: 400;
    color: var(--suncolor);
}
.bidonesSection .bidCont .card img{
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
    height: 20rem;
    box-shadow: 0 3px 8px rgba(0,0,0, .050);
    border: 1px solid #eee;
}
.bidonesSection .bidCont .card .textInfo{
    margin-bottom: auto;
    padding: .5rem;
    border-radius: 1rem;
    background: #858585;
}
.bidonesSection .bidCont .card .textInfo p{
    font-size: clamp(.6rem, 2vw, 1rem);
    color: #fff;
    text-align:start;
    border-bottom: 1px solid #a0a0a0;
}

.bidonesSection .bidCont .card .fakeBtnInfo{
    margin-top: 1rem;
    width: max-content;
    padding: .3rem 2rem;
    border-radius: .5rem;
    color: #fff;
    box-shadow: 0 0 8px var(--suncolor);
    background: var(--suncolor);
    cursor: pointer;
}
.bidonesSection .bidCont .card .fakeBtnInfo:hover{
    background: blue;
    box-shadow: 0 0 8px rgb(0, 102, 255);
}