/* =========================================
   MÉTODOS DE PAGAMENTO - CONFIANÇA
   ========================================= */

.payment-methods {
    text-align: center;
    padding: 24px 0;
    margin: 32px 0 0;
}

.payment-methods-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-auxiliary);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icon {
    height: 32px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(10%);
}

.payment-icon:hover {
    opacity: 0.95;
}

/* Ajustes específicos por tipo */
.payment-icon.cards {
    height: 28px;
}

.payment-icon.pix {
    height: 40px;
}

.payment-icon.boleto {
    height: 32px;
}

/* Versão no pricing */
.pricing-card .payment-methods {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E5E5E5;
}

.pricing-card .payment-methods-title {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Versão no footer */
.footer .payment-methods {
    padding: 32px 0 0;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .payment-methods-title {
    color: var(--text-secondary-light);
}

.footer .payment-icon {
    opacity: 0.6;
    filter: brightness(0) invert(1);
}

.footer .payment-icon:hover {
    opacity: 0.8;
}

/* Mobile */
@media (max-width: 768px) {
    .payment-methods {
        padding: 20px 0;
        margin: 24px 0 0;
    }
    
    .payment-icons {
        gap: 16px;
    }
    
    .payment-icon {
        height: 28px;
    }
    
    .payment-icon.cards {
        height: 24px;
    }
    
    .payment-icon.pix {
        height: 36px;
    }
    
    .payment-icon.boleto {
        height: 28px;
    }
}