
.payment-switch-container {
    display: flex;
    background: #f1f1f1;
    border-radius: 8px;
    padding: 4px;
    position: relative;
    margin-top: 5px;
}

.payment-switch-container input[type="radio"] {
    display: none;
}

.payment-switch-container label {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
    z-index: 2;
    font-weight: 600;
    transition: color 0.3s;
    margin-bottom: 0 !important;
}

/* Cor do texto quando selecionado */
#pag_cartao:checked + label,
#pag_pix:checked + label {
    color: #fff;
}

.switch-selection {
    position: absolute;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: var(--pagbank-yellow);
    border-radius: 6px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Movimentação do fundo */
#pag_pix:checked ~ .switch-selection {
    transform: translateX(100%);
}

/* Estilização básica dos inputs */
.input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
}

.qr-code-placeholder {
    text-align: center;
    padding: 20px;
    border: 2px dashed #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
}