/* PixGo Payment Integration - Estilos Globais */

:root {
    --pixgo-primary: #00b894;
    --pixgo-primary-dark: #00a383;
    --pixgo-success: #46b450;
    --pixgo-warning: #ffb900;
    --pixgo-error: #dc3232;
    --pixgo-info: #00a0d2;
    --pixgo-border: #ddd;
    --pixgo-text: #333;
    --pixgo-text-light: #666;
}

/* Reset básico */
.pixgo-payment-form * {
    box-sizing: border-box;
}

/* Container principal */
.pixgo-payment-form {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pixgo-result {
    animation: fadeIn 0.3s ease-in-out;
}

/* Responsivo */
@media (max-width: 768px) {
    .pixgo-payment-form {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .pixgo-form-container {
        padding: 20px;
    }
    
    .pixgo-amount-display h3 {
        font-size: 24px;
    }
}

/* Badges de status */
.pixgo-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.pixgo-badge-success {
    background: #d4edda;
    color: #155724;
}

.pixgo-badge-warning {
    background: #fff3cd;
    color: #856404;
}

.pixgo-badge-error {
    background: #f8d7da;
    color: #721c24;
}

.pixgo-badge-info {
    background: #d1ecf1;
    color: #0c5460;
}

/* Utilitários */
.pixgo-text-center {
    text-align: center;
}

.pixgo-mt-20 {
    margin-top: 20px;
}

.pixgo-mb-20 {
    margin-bottom: 20px;
}

.pixgo-hidden {
    display: none !important;
}
