.main {
    margin: 2px;
    /* display: none; */
    display: grid;
    justify-content: center;
    box-sizing: border-box;
}
.titulo {
    border-left: 4px solid #FF3131;
    padding-left: 0.5rem;
    margin-top: 50px;
}
.box_explorar{
    display: grid;
    gap: 22px 6px;
    grid-template-columns: repeat(2,auto);
    margin-bottom: 110px;
}
.card {
    width: auto;
    height: auto;
    cursor: pointer;
}

.card_img {
    width: 6rem;
    height: 9rem;
    overflow: hidden;
    border: 0.5px solid #dadce02b;
    border-radius: 6px;
}

.card_img > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    transition: all .52s;
}
.card_img:hover > a > img {
    filter: blur(1px);
}

.card_inf {
    display: none;
}

.card_inf > a > h2, .card_inf > a > h3 {
    margin: 0;
}

.card_inf > a > h2,.card_inf > a > h3 {
    font-size: 0.9rem;
    font-weight: 300;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 11.5rem;
    margin-top: 5px;
}
.card_inf > a > h3 {
    font-size: 0.7rem;
    margin-top: 2px;
}
.card_inf > a > h2:hover, .card_inf > a > h3:hover {
    color: rgb(228, 226, 226);
}

@media (min-width:300px) {
    .box_explorar {
        grid-template-columns: repeat(3,auto);
    }
}
@media (min-width:340px) {
    .card_img {
        width: 7rem;
        height: 10.5rem;
    }
}
@media (min-width:365px) {
    .card_img {
    width: 8rem;
    height: 12.5rem;
}
}
@media (min-width:430px) {
    .card_img {
        /* width: 7.5rem;
        height: 11rem; */
    }
}

@media (min-width:480px) {
    .box_explorar {
        grid-template-columns: repeat(4,auto);
    }
    .card_img {
        width: 7rem;
        height: 10rem;
    }
}

@media (min-width:580px) {
    .card_img {
        width: 8rem;
        height: 13rem;
    }
}

@media (min-width:705px) {
    .box_explorar {
        grid-template-columns: repeat(3,auto);
    }
    .card_img {
        width: 11.875rem;
        height: 17.800rem;
    }
}
@media (min-width:820px) {
    .box_explorar {
        grid-template-columns: repeat(4,auto);
    }
    .card_inf {
        display: block;
    }
}
@media (min-width:1000px) {
    .box_explorar {
        gap: 28px 15px;
        grid-template-columns: repeat(5,auto);
    }
}