.casos{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 6rem 2rem 8rem;
    max-width: 1500px;
    margin: 0 auto;
    justify-content: space-evenly;
}
.caso-exito{
    text-align: center;
    border-radius: 50%;
    color: white;
    width: clamp(310px,40vw,390px);
    height: clamp(310px,40vw,390px);
    background-size: 100% 100%;
    background-position: center;
    overflow: hidden;
    transition: 300ms;
    cursor: pointer;
}
.caso-exito:hover{
    background-size: 105% 105%;
}
.caso-txt{
    padding: 3rem 2rem;
    box-sizing: border-box;
    gap: 0.5rem;
}
.caso-txt h2{
    line-height: 3rem;
}
.caso-ico{
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

@media (max-device-width: 600px){
    .caso-exito{
        width: 92vw;
        height: 92vw;
        max-width: 400px;
        max-height: 400px;
    }
}