/* Estilos do container PIX - Minimalista */
.pix-container {
    /* Fundo removido (transparente) para integrar com o fundo da página */
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    margin-top: 20px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

/* QR Code precisa de fundo branco para leitura, mas podemos ajustar a borda */
.pix-qr-image {
    width: 220px;
    height: 220px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    margin: 0 auto 24px auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    display: block;
}

.pix-code-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
}

#pixCode {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.1); /* Levemente transparente */
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 11px;
    font-family: 'Courier New', monospace;
    text-align: center;
    outline: none;
    box-sizing: border-box;
    word-break: break-all;
    line-height: 1.4;
    transition: all 0.2s;
}

#pixCode::placeholder {
    color: rgba(255,255,255,0.5);
}

#pixCode:focus {
    border-color: #00f5ff;
    background: rgba(255,255,255,0.15);
}

.copy-btn {
    width: 100%;
    background: linear-gradient(90deg, #ff0050 0%, #00f5ff 100%);
    color: #000;
    border: none;
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    line-height: 1.2;
    margin-bottom: 10px;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    filter: brightness(1.1);
}

.copy-btn:active {
    transform: translateY(0);
}

/* Ajuste do loading */
#loadingMessage {
    color: #00f5ff;
    font-weight: 600;
    margin: 20px 0;
    text-align: center;
    font-size: 14px;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Responsividade */
@media (max-width: 480px) {
    .pix-qr-image {
        width: 200px;
        height: 200px;
    }
}