.chaveiros-produtos {
    background: #faf9fc;
}

.chaveiros-produtos .section-heading {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.chaveiros-produtos .section-heading p {
    color: #777;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 10px;
}


.chaveiros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 40px auto 0;
}


.chaveiro-card {
    background: #fff;
    border: 1px solid #ddd6e5;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(55, 36, 110, 0.08);
    transition: .25s;
}


.chaveiro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 32px rgba(55, 36, 110, 0.15);
    border-color: #cdb9e3;
}


/* IMAGEM */

.chaveiro-img {
    width: 100%;
    height: 220px;
    background: #f3edf8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.chaveiro-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 12px;
    transition: .25s;
}


.chaveiro-card:hover .chaveiro-img img {
    transform: scale(1.04);
}


/* TEXTO */

.chaveiro-info {
    padding: 18px;
}


.chaveiro-info h3 {
    font-size: 15px;

    line-height: 1.3;

    margin: 0 0 8px;

    color: #17131d;
}


.chaveiro-info p {
    font-size: 11px;
    line-height: 1.6;
    color: #777;
    margin: 0;
}
.obotao{
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0px;
     background: #faf9fc;
}
.botaodeorcamento {
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 60px;
    margin-top:-30px;
    margin-bottom: 40px;
    background: var(--purple);
    color: #fff;
    padding: 12px 20px;
    border-radius: 7px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: 0.2s;
}

.botaodeorcamento:hover {
    background: #7148a8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(133, 90, 193, 0.30);
}
/* RESPONSIVO */

@media (max-width: 1000px) {

    .chaveiros-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 700px) {

    .chaveiros-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 480px) {

    .chaveiros-grid {
        grid-template-columns: 1fr;
    }

    .chaveiro-img {
        height: 250px;
    }

}