.payment-notice {
    background-color: rgba(250, 56, 62, 0.08);
    border: 1px solid rgba(250, 56, 62, 0.5);
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.payment-notice a {
    color: var(--action-red);
    font-weight: 600;
    text-decoration: none;
}

.payment-notice a:hover {
    text-decoration: underline;
}

.btn-pagar {
    background: linear-gradient(145deg, #fa383e, #e02f34);
    color: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px -5px rgba(250, 56, 62, 0.6);
    transition: all 0.3s ease;
}

.btn-pagar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px -5px rgba(250, 56, 62, 0.8);
}
