 /* ======================================== */
        /* RODAPÉ - ESTILOS ADICIONAIS */
        /* ======================================== */
        .footer .payment-methods {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer .payment-methods .payment-title {
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .footer .payment-methods .payment-icons {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .footer .payment-methods .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }

        .footer .payment-methods .payment-item img {
            height: 28px;
            width: auto;
            max-width: 100px;
            transition: all 0.3s ease;
            object-fit: contain;
            border-radius: 20px;
        }

        .footer .payment-methods .payment-item:hover img {
            transform: scale(1.05);
            opacity: 1;
        }

        .footer .payment-methods .payment-item .payment-label {
            color: rgba(255, 255, 255, 0.5);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        @media (max-width: 768px) {
            .footer .payment-methods .payment-item img {
                height: 22px;
                max-width: 70px;
            }
        }

        @media (max-width: 480px) {
            .footer .payment-methods .payment-item img {
                height: 20px;
                max-width: 60px;
            }
        }