/*SECCIÓN RESEÑAS*/
.resenias {
    padding-bottom: 20px;
}

.resenias h2{
    font-size: 25px;
    padding: 20px 60px;
    font-weight: 800;
    color: #3f91dd;
}

.resenias-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.resenias .card{
    display: flex;
    width: 90%;
    height: 100%;
    max-width: 400px;
    flex-direction: column;
    padding-top: 1.25rem;
}

.resenias .card .card-img-top {
    width: 120px;
    height: 120px;
    align-self: center;
    border-radius: 100%;
}

/*Agrego media Query*/
@media (min-width: 600px) {
    /*SECCIÓN RESEÑAS*/
    .resenias{
        padding: 30px;
    }
    
    .resenias h2{
        font-size: 40px;
        padding: 20px 120px;
    }
    
    .resenias-grid{
        grid-template-columns: repeat(3,350px);
        gap: 50px;
    }
    
    .resenias-grid .card {
        width: 90%;
    }
}