@media (max-width: 767px) {
    .op-text-block {
        width: 100%;
        /* Ocupar mais a lateral no mobile */
        padding-left: 5%;
        padding-right: 5%;
    }

    .custom-card img {
        width: 120px;
        /* Aumenta o tamanho das imagens no mobile */
        height: 120px;
    }

    .custom-card p {
        font-size: 14px;
        /* Ajusta o tamanho do texto para mobile */
        line-height: 1.4;
    }
}

.custom-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: px;
    min-height: 10vh;
}

.custom-grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

@media(min-width: 600px) {
    .custom-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 900px) {
    .custom-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(min-width: 1200px) {
    .custom-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.custom-card {
    background-color: #ec268f;
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-5px);
}

.custom-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.custom-card h3 {
    font-size: 23px;
    margin-bottom: 15px;
    font-weight: bold;
    color: aliceblue;
}

.custom-card p {
    font-size: 15px;
    line-height: 1.5;
}

/* KITS */

/* Largura da imagem no mobile */
@media (max-width: 767px) {
    .img-fluid.img-oferta {
        max-width: 410px;
    }

}

/* Largura da imagem no desktop */
@media (min-width: 768px) {
    .img-fluid.img-oferta {
        max-width: 310px;
    }

}

.headkit {
    font-size: 27px;
    padding-left: 5px;
    padding-right: 5px;
    line-height: 1.1;
}
