/* PÁGINA ONDE COMPRAR */
.where-page {
    background: var(--branco);
    padding: 80px 0;
}

/* GRID LOGOS */
.where-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin-top: 50px;
}

/* LOGOS */
.where-logos img {
    max-width: 160px;
    width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: 0.3s;
}

/* HOVER (fica MUITO bonito) */
.where-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* CTA FINAL */
.where-cta {
    text-align: center;
    margin-top: 70px;
}

.where-cta p {
    font-size: 18px;
    margin-bottom: 18px;
    color: var(--marrom);
    font-weight: 600;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .where-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 500px) {
    .where-logos {
        grid-template-columns: 1fr;
    }
}