/* PIX + Wise Payment - Estilos Principais */

/* Já incluído no template, mas mantendo para consistência */

/* Estilos para checkout */
.woocommerce-checkout .payment_method_pix_wise img {
    max-width: 100px;
    height: auto;
}

.woocommerce-checkout .payment_method_pix_wise {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
}

/* Loading state */
.pix-wise-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.pix-wise-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #32BCAD;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Notificações */
.pix-wise-notice {
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pix-wise-notice.success {
    background: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
}

.pix-wise-notice.error {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    color: #721c24;
}

.pix-wise-notice.info {
    background: #d1ecf1;
    border-left: 4px solid #17a2b8;
    color: #0c5460;
}

/* Responsivo */
@media (max-width: 768px) {
    .pix-wise-payment-container {
        padding: 0 10px;
    }
}
