/* ========= PARCERIAS ========= */

#parcerias {
    background: #000;
    padding: 60px 0;
    text-align: center;
    animation: fadeIn 1.4s ease-in-out;
}

.section-title-parcerias {
    color: #8126c9;
    font-size: 2.5rem;
    font-weight: bold;
}

.linha-parcerias {
    width: 120px;
    height: 4px;
    background-color: #8126c9;
    margin: 12px auto 40px auto;
    border-radius: 3px;
}

.parcerias-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    justify-items: center;
    margin-bottom: 40px;
    
}

.logo-parceria {
    width: 150px;
    height: auto;
    transition: .3s ease;
    
}

.logo-parceria:hover {
    transform: scale(1.08);
    filter: brightness(1.2);
}

/* BOTÃO CUPOM */
#btn-cupom {
    background-color: #8126c9;
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform .3s ease, opacity .3s ease;
}

#btn-cupom:hover {
    transform: scale(1.07);
    opacity: 0.85;
}

/* ========= RESPONSIVO ========= */
@media screen and (max-width: 1170px) {
    .parcerias-logos {
        grid-template-columns: repeat(2, 1fr); /* 2 por linha */
        gap: 25px;
    }

    .logo-parceria {
        width: 140px;
    }

    #btn-cupom {
        font-size: 1.2rem;
    }
}
