/* Seção principal */
#pagamentos {
    max-width: 420px;
    margin: 60px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Título */
#pagamentos h1 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #222;
}

/* Saldo */
#pagamentos p {
    margin-bottom: 15px;
    color: #444;
    font-size: 15px;
}

#pagamentos p strong {
    color: #000;
}

/* Inputs e select */
#pagamentos input[type="number"],
#pagamentos select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border 0.3s, box-shadow 0.3s;
}

/* Foco */
#pagamentos input[type="number"]:focus,
#pagamentos select:focus {
    border-color: #2f80ed;
    box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.15);
}

/* Botão */
#pagamentos button{
    width: 100%;
    padding: 12px;
    background: #2f80ed;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

/* Hover do botão */
#pagamentos button:hover {
    background: #2563c7;
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 480px) {
    #pagamentos {
        margin: 30px 15px;
        padding: 20px;
    }

    #pagamentos h1 {
        font-size: 20px;
    }
}