.pago-section {
    background: #f5f6f8;
    padding: 72px 0;
}

.pago-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.pago-header {
    text-align: center;
    margin-bottom: 52px;
}

.pago-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #393f6f;
    margin-bottom: 8px;
}

.pago-header p {
    font-size: 0.95rem;
    color: #6b7280;
}

.pago-header .don-divider {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #EFB815, #f39c12);
    border-radius: 2px;
    margin: 14px auto 0;
}

.pago-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pago-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(57,63,111,0.08);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pago-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(57,63,111,0.14);
}

.pago-card--center {
    align-items: center;
    text-align: center;
}

.pago-card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.pago-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.pago-badge-paypal  { background: #003087; color: #fff; }
.pago-badge-soles   { background: #393f6f; color: #fff; }
.pago-badge-dolares { background: #EFB815; color: #fff; }

.pago-subtitle {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 10px 0;
}

.pago-qr {
    width: 150px;
    border-radius: 12px;
    border: 1px solid #e2e8f4;
    padding: 8px;
    margin: 10px 0;
}

.pago-logo-paypal {
    max-width: 90px;
    opacity: 0.85;
    margin-bottom: 8px;
}

.pago-logo-banco {
    max-height: 36px;
    object-fit: contain;
}

.pago-datos {
    background: #f8faff;
    border: 1px solid #dde5f5;
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
}

.pago-datos-fila {
    padding: 11px 16px;
    border-bottom: 1px solid #e8edf8;
}

.pago-datos-fila:last-child {
    border-bottom: none;
}

.pago-datos-label {
    font-size: 0.72rem;
    color: #6b7280;
    display: block;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.pago-datos-valor {
    font-size: 0.87rem;
    font-weight: 600;
    color: #393f6f;
}

.pago-btn {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 18px;
    text-decoration: none;
    font-family: inherit;
}

.pago-btn:hover {
    transform: translateY(-2px);
    filter: brightness(0.9);
    color: #fff;
}

.pago-btn-paypal  { background: #003087; color: #fff; }
.pago-btn-soles   { background: #393f6f; color: #fff; }
.pago-btn-dolares { background: #EFB815; color: #fff; }

.pago-nota {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pago-nota i { color: #393f6f; }

.pago-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #16a34a;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(22,163,74,0.35);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
    pointer-events: none;
    white-space: nowrap;
}

.pago-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 900px) {
    .pago-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 576px) {
    .pago-section { padding: 48px 0; }
    .pago-header h1 { font-size: 1.6rem; }
    .pago-card { padding: 24px 20px; }
}