.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}

.status-message {
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.status-message.success {
    background-color: rgba(54, 215, 183, 0.1);
    border-left: 4px solid var(--success);
    color: #2ca58d;
}

.status-message.warning {
    background-color: rgba(255, 206, 86, 0.1);
    border-left: 4px solid var(--warning);
    color: #e6a23c;
}

.status-message.error {
    background-color: rgba(255, 99, 132, 0.1);
    border-left: 4px solid var(--danger);
    color: #e83e6a;
}

.status-message i {
    margin-right: 10px;
    font-size: 1.2em;
}

/* Animação de transição para as etapas */
#step-plan-selection, #step-personal-info, #qrcode-section {
    transition: all 0.3s ease;
}

.button-group {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.btn-disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.payment-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.qrcode-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f9fb;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
}

/* Estilo para dispositivos móveis */
@media (max-width: 768px) {
    .payment-popup {
        width: 95%;
        max-width: none;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .button-group .btn, .payment-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .qrcode-container {
        padding: 15px 10px;
    }
    
    .payment-info {
        width: 100%;
    }