/* =================================================================
   AUTH PAGES V30 — DNA premium unificado
   Páginas: /entrar/ /registrar/ /doar/ /solicitar-convite/
   Carregado via wp_enqueue_style. Specificity contida para não vazar.
   ================================================================= */

/* ==================== KILL background grid global do body
   (esse CSS só carrega em páginas Auth, então é seguro globalmente) ==================== */
body::before,
body::after {
    display: none !important;
    content: none !important;
}
html, body {
    background: #050a14 !important;
    background-image:
        radial-gradient(70% 60% at 80% 0%, rgba(0, 195, 226, 0.10) 0%, transparent 60%),
        radial-gradient(60% 50% at 10% 100%, rgba(255, 213, 74, 0.06) 0%, transparent 70%),
        linear-gradient(180deg, #050a14 0%, #02060d 100%) !important;
    background-attachment: fixed !important;
}

/* ==================== RESET DO BACKGROUND + WRAPPERS ==================== */
body.page-template-page-entrar,
body.page-template-page-registrar,
body.page-template-page-doar,
body.page-template-page-solicitar-convite,
body.bs-auth-page {
    background: #050a14 !important;
}

/* RESET TOTAL — todos os ancestrais NÃO podem ter flex/grid que cause split em colunas */
body.bs-auth-page #dt_contenedor,
body.bs-auth-page #dt_contenedor > *,
body.bs-auth-page main,
body.bs-auth-page main > *:not(.bs-auth-page),
body.bs-auth-page .container,
body.bs-auth-page .module,
body.bs-auth-page .module > *,
body.bs-auth-page .module .content,
body.bs-auth-page .single-page,
body.bs-auth-page #single,
body.bs-auth-page #single > *,
body.bs-auth-page .page-layout,
body.bs-auth-page .portal-section,
body.bs-auth-page .quick-bar,
body.bs-auth-page .page-main,
body.bs-auth-page .page-content,
body.bs-auth-page .page-header,
body.bs-auth-page .page-footer,
body.bs-auth-page article.page-main,
body.bs-auth-page .breadcrumbs-bar,
body.bs-auth-page .stats-bar,
body.bs-auth-page .row,
body.bs-auth-page .col,
body.bs-auth-page .ds1,
body.bs-auth-page .ds2 {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    width: 100% !important;
    flex: none !important;
    flex-direction: column !important;
    display: block !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
body.bs-auth-page .page-sidebar,
body.bs-auth-page aside.page-sidebar,
body.bs-auth-page .sidebar,
body.bs-auth-page aside.sidebar {
    display: none !important;
}
body.bs-auth-page .pro-footer { margin-top: 0 !important; }

/* ==================== WRAPPER PRINCIPAL ==================== */
.bs-auth-page {
    min-height: calc(100vh - 200px);
    padding: 50px 0 90px;
    position: relative;
    background: transparent;
    overflow: visible;
}
.bs-auth-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(0, 212, 255, 0.4), transparent),
        radial-gradient(1px 1px at 60% 70%, rgba(255, 213, 74, 0.3), transparent),
        radial-gradient(1.5px 1.5px at 80% 20%, rgba(0, 212, 255, 0.3), transparent),
        radial-gradient(1px 1px at 30% 85%, rgba(255, 213, 74, 0.2), transparent);
    background-size: 200px 200px, 250px 250px, 180px 180px, 220px 220px;
    pointer-events: none;
    opacity: 0.6;
    animation: bsAuthBgFloat 30s linear infinite;
}
@keyframes bsAuthBgFloat {
    0%   { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 200px 100px, -250px 250px, 180px -180px, -220px 220px; }
}

.bs-auth-container {
    display: block !important;
    max-width: 1180px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ==================== HEADER (eyebrow + título) ==================== */
.bs-auth-header {
    text-align: center;
    margin-bottom: 42px;
    animation: bsAuthFadeUp .6s cubic-bezier(.4, 0, .2, 1) both;
}
@keyframes bsAuthFadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
.bs-auth-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 195, 226, 0.12);
    border: 1px solid rgba(0, 195, 226, 0.4);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #00d4ff;
    margin-bottom: 18px;
}
.bs-auth-eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: bsAuthDotPulse 1.6s ease-in-out infinite;
}
@keyframes bsAuthDotPulse { 0%,100% { opacity:1 } 50% { opacity:0.4 } }

.bs-auth-title {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    font-weight: 900;
    margin: 0 0 14px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, #a8e8f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bs-auth-title .accent-cyan {
    background: linear-gradient(135deg, #00d4ff 0%, #0095c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bs-auth-title .accent-gold {
    background: linear-gradient(135deg, #ffd54a 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bs-auth-subtitle {
    font-size: clamp(14px, 1.5vw, 17px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    max-width: 580px;
    margin: 0 auto;
}

/* ==================== GRID SPLIT (form + side) ==================== */
.bs-auth-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
    align-items: stretch;
    animation: bsAuthFadeUp .7s cubic-bezier(.4, 0, .2, 1) .1s both;
}
@media (max-width: 900px) {
    .bs-auth-grid { grid-template-columns: 1fr !important; gap: 18px !important; }
}

/* ==================== CARD GLASSMORPHISM ==================== */
.bs-auth-card {
    position: relative;
    background:
        radial-gradient(120% 100% at 0% 0%, rgba(0, 195, 226, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, rgba(8, 17, 31, 0.92) 0%, rgba(4, 10, 20, 0.95) 100%);
    border: 1.5px solid rgba(0, 195, 226, 0.28);
    border-radius: 22px;
    padding: 36px 32px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 22px 50px rgba(0, 0, 0, 0.55),
        0 0 60px rgba(0, 195, 226, 0.12);
    overflow: hidden;
    box-sizing: border-box;
}
.bs-auth-card::before {
    content: "";
    position: absolute;
    top: -1.5px; left: 24px; right: 24px; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.7), transparent);
}
.bs-auth-card.gold { border-color: rgba(255, 213, 74, 0.32); }
.bs-auth-card.gold::before { background: linear-gradient(90deg, transparent, rgba(255, 213, 74, 0.8), transparent); }

.bs-auth-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 24px;
    letter-spacing: -0.3px;
}
.bs-auth-card-title i {
    width: 38px; height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00d4ff, #0095c8);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 6px 16px rgba(0, 195, 226, 0.4);
}
.bs-auth-card.gold .bs-auth-card-title i {
    background: linear-gradient(135deg, #ffd54a, #ff9800);
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0.4);
}

/* ==================== FORM ==================== */
.bs-auth-form-group {
    margin-bottom: 16px;
}
.bs-auth-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(0, 212, 255, 0.85);
    margin-bottom: 8px;
}
.bs-auth-label i { font-size: 11px; opacity: 0.8; }

.bs-auth-input,
.bs-auth-select,
.bs-auth-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(0, 195, 226, 0.22);
    border-radius: 12px;
    color: #fff;
    font-size: 14.5px;
    font-family: inherit;
    transition: all .25s ease;
    box-sizing: border-box;
}
.bs-auth-input::placeholder,
.bs-auth-textarea::placeholder { color: rgba(255, 255, 255, 0.32); }
.bs-auth-input:focus,
.bs-auth-select:focus,
.bs-auth-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.06);
    border-color: #00d4ff;
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.14), 0 0 22px rgba(0, 195, 226, 0.22);
}
.bs-auth-textarea { resize: vertical; min-height: 100px; line-height: 1.55; }

/* SELECT dropdown — força options a terem fundo escuro e texto claro
   (sem isso, o navegador renderiza options com fundo branco do SO) */
.bs-auth-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'><path fill='%2300d4ff' d='M1 1l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}
.bs-auth-select option,
.bs-auth-select optgroup {
    background-color: #0a1424 !important;
    color: #fff !important;
    font-size: 14px;
    padding: 8px;
}
.bs-auth-select:focus option:checked,
.bs-auth-select option:hover,
.bs-auth-select option:focus,
.bs-auth-select option:active {
    background: linear-gradient(#00c3e2, #00c3e2) !important;
    background-color: #00c3e2 !important;
    color: #fff !important;
}

/* ==================== FANCY SELECT (custom dropdown V30)
   Substitui o <select> nativo (que tem bordas brancas e options nativos do SO)
   por um trigger + lista flutuante 100% controlada pelo CSS/JS.
   O <select> original fica visualmente oculto mas continua válido pro form. ==================== */
.bs-auth-fancy-select {
    position: relative;
    width: 100%;
}
/* Esconde o <select> nativo (mas mantém acessível pra screen readers) */
.bs-auth-fancy-select > select.bs-auth-select {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}
.bs-auth-fancy-select.is-ready > select.bs-auth-select {
    /* Após JS tomar conta */
    pointer-events: none;
}

.bs-fs-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(0,195,226,0.18);
    color: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
    font-family: inherit;
}
.bs-fs-trigger:hover {
    border-color: rgba(0,212,255,0.4);
    background: rgba(255,255,255,0.06);
}
.bs-auth-fancy-select.is-open .bs-fs-trigger,
.bs-fs-trigger:focus-visible {
    outline: none;
    border-color: #00d4ff;
    background: rgba(0,212,255,0.06);
    box-shadow: 0 0 0 4px rgba(0,212,255,0.14), 0 0 22px rgba(0,195,226,0.22);
}
.bs-fs-trigger-icon {
    width: 22px;
    text-align: center;
    color: #00d4ff;
    font-size: 13px;
    flex-shrink: 0;
}
.bs-fs-trigger-label {
    flex: 1;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bs-fs-trigger-label.placeholder { color: rgba(255,255,255,0.45); font-weight: 400; }
.bs-fs-trigger-arrow {
    color: rgba(0,212,255,0.7);
    font-size: 11px;
    transition: transform .25s ease;
    flex-shrink: 0;
}
.bs-auth-fancy-select.is-open .bs-fs-trigger-arrow {
    transform: rotate(180deg);
}

.bs-fs-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(10,20,36,0.97), rgba(4,10,20,0.99));
    border: 1.5px solid rgba(0,212,255,0.32);
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 30px rgba(0,212,255,0.12);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    z-index: 50;
    max-height: 280px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
}
.bs-auth-fancy-select.is-open .bs-fs-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.bs-fs-menu::-webkit-scrollbar { width: 6px; }
.bs-fs-menu::-webkit-scrollbar-thumb {
    background: rgba(0,212,255,0.35);
    border-radius: 3px;
}
.bs-fs-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 10px;
    color: rgba(255,255,255,0.78);
    font-size: 13.5px;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}
.bs-fs-option:hover {
    background: rgba(0,212,255,0.10);
    color: #fff;
    transform: translateX(2px);
}
.bs-fs-option.is-selected {
    background: linear-gradient(135deg, rgba(0,212,255,0.18), rgba(0,212,255,0.08));
    color: #fff;
    font-weight: 700;
}
.bs-fs-option .bs-fs-option-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(0,212,255,0.12);
    color: #00d4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    flex-shrink: 0;
    border: 1px solid rgba(0,212,255,0.22);
}
.bs-fs-option.is-selected .bs-fs-option-icon {
    background: linear-gradient(135deg, #00d4ff, #0095c8);
    color: #0a1424;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(0,212,255,0.4);
}
.bs-fs-option .bs-fs-option-check {
    margin-left: auto;
    color: #00d4ff;
    opacity: 0;
    font-size: 11px;
    transition: opacity .15s ease;
}
.bs-fs-option.is-selected .bs-fs-option-check {
    opacity: 1;
}

/* Senha com toggle eye */
.bs-auth-input-wrap { position: relative; }
.bs-auth-input-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 0;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    font-size: 14px;
    padding: 6px;
    transition: color .2s ease;
}
.bs-auth-input-toggle:hover { color: #00d4ff; }

/* Checkbox */
.bs-auth-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13.5px;
    margin: 12px 0 22px;
}
.bs-auth-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00d4ff;
    margin: 0;
    cursor: pointer;
}

/* ==================== BOTÃO PRIMARY ==================== */
.bs-auth-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #00d4ff 0%, #00a3c8 100%);
    color: #001118;
    border: 0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
    box-shadow:
        0 10px 28px rgba(0, 195, 226, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
.bs-auth-submit::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left .6s ease;
}
.bs-auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 195, 226, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.bs-auth-submit:hover::before { left: 100%; }
.bs-auth-submit:active { transform: translateY(0); }
.bs-auth-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.bs-auth-submit.gold {
    background: linear-gradient(135deg, #ffd54a 0%, #ff9800 100%);
    box-shadow: 0 10px 28px rgba(255, 152, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}
.bs-auth-submit.gold:hover {
    box-shadow: 0 16px 36px rgba(255, 152, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* ==================== ALERTS ==================== */
.bs-auth-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 13.5px;
    line-height: 1.45;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.bs-auth-alert i { font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.bs-auth-alert.success {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #6ee7b7;
}
.bs-auth-alert.error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}
.bs-auth-alert.info {
    background: rgba(0, 195, 226, 0.12);
    border: 1px solid rgba(0, 195, 226, 0.4);
    color: #7dd3fc;
}
.bs-auth-alert.warning {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #fcd34d;
}

/* ==================== HERO ARTWORK SVG ==================== */
.bs-auth-art {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 32px;
    gap: 24px;
}
.bs-auth-art-svg {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
    flex-shrink: 0;
}
.bs-auth-art-content { text-align: center; }
.bs-auth-art h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
}
.bs-auth-art p {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 22px;
}

/* ==================== STATS ==================== */
.bs-auth-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 22px 0;
}
.bs-auth-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 195, 226, 0.18);
    border-radius: 14px;
    padding: 16px 14px;
    text-align: center;
    transition: all .3s ease;
}
.bs-auth-stat:hover {
    background: rgba(0, 195, 226, 0.08);
    border-color: rgba(0, 195, 226, 0.4);
    transform: translateY(-2px);
}
.bs-auth-stat-num {
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff, #0095c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1;
}
.bs-auth-stat-label {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 700;
}

/* ==================== CTA LIST (links secundários) ==================== */
.bs-auth-cta-list { display: flex; flex-direction: column; gap: 8px; }
.bs-auth-cta-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    text-decoration: none;
    transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
    color: inherit;
}
.bs-auth-cta-item:hover {
    background: rgba(0, 195, 226, 0.08);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateX(4px);
}
.bs-auth-cta-icon {
    width: 38px; height: 38px;
    border-radius: 11px;
    background: linear-gradient(135deg, #00d4ff, #0095c8);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.bs-auth-cta-icon.gold     { background: linear-gradient(135deg, #ffd54a, #ff9800); color: #1a1a1a; }
.bs-auth-cta-icon.green    { background: linear-gradient(135deg, #10b981, #059669); }
.bs-auth-cta-icon.red      { background: linear-gradient(135deg, #ef4444, #dc2626); }
.bs-auth-cta-icon.telegram { background: linear-gradient(135deg, #0088cc, #005f99); }
.bs-auth-cta-text { flex: 1; min-width: 0; }
.bs-auth-cta-text h5 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2px;
}
.bs-auth-cta-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}
.bs-auth-cta-arrow {
    color: rgba(255, 255, 255, 0.4);
    transition: transform .3s ease, color .3s ease;
}
.bs-auth-cta-item:hover .bs-auth-cta-arrow {
    color: #00d4ff;
    transform: translateX(3px);
}

/* ==================== TRUST BADGES ==================== */
.bs-auth-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px 8px 0;
    margin-top: 22px;
    border-top: 1px dashed rgba(0, 195, 226, 0.22);
}
.bs-auth-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}
.bs-auth-trust-item i { color: #10b981; font-size: 12px; }

/* ==================== FAQ INLINE ==================== */
.bs-auth-faq {
    margin-top: 50px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}
.bs-auth-faq-title {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 22px;
    letter-spacing: -0.3px;
}
.bs-auth-faq-item {
    background: rgba(8, 17, 31, 0.7);
    border: 1px solid rgba(0, 195, 226, 0.18);
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .3s ease;
}
.bs-auth-faq-item:hover { border-color: rgba(0, 195, 226, 0.4); }
.bs-auth-faq-item summary {
    padding: 16px 20px;
    cursor: pointer;
    font-size: 14.5px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    user-select: none;
}
.bs-auth-faq-item summary::-webkit-details-marker { display: none; }
.bs-auth-faq-item summary::after {
    content: "+";
    color: #00d4ff;
    font-weight: 300;
    font-size: 22px;
    margin-left: 10px;
    transition: transform .3s ease;
    line-height: 1;
}
.bs-auth-faq-item[open] summary::after { content: "−"; }
.bs-auth-faq-content {
    padding: 0 20px 18px;
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

/* ==================== FOOTER LINKS ==================== */
.bs-auth-footer-links {
    text-align: center;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px dashed rgba(0, 195, 226, 0.18);
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}
.bs-auth-footer-links a {
    color: #00d4ff;
    font-weight: 700;
    text-decoration: none;
    transition: text-shadow .25s ease;
}
.bs-auth-footer-links a:hover {
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.6);
}

/* ==================== DOAR — Cards de planos ==================== */
.bs-doar-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}
@media (max-width: 540px) {
    .bs-doar-plans { grid-template-columns: 1fr; gap: 10px; }
}
.bs-doar-plan {
    position: relative;
    padding: 22px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    cursor: pointer;
    transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
    text-align: center;
    overflow: hidden;
}
.bs-doar-plan:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(0, 195, 226, 0.06);
}
.bs-doar-plan.selected {
    border-color: #00d4ff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.16), rgba(0, 149, 200, 0.08));
    box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.3) inset, 0 12px 28px rgba(0, 195, 226, 0.32);
}
.bs-doar-plan.featured {
    border-color: rgba(255, 213, 74, 0.5);
    background: linear-gradient(135deg, rgba(255, 213, 74, 0.08), transparent);
}
.bs-doar-plan.featured.selected {
    border-color: #ffd54a;
    background: linear-gradient(135deg, rgba(255, 213, 74, 0.18), rgba(255, 152, 0, 0.06));
    box-shadow: 0 0 0 1px rgba(255, 213, 74, 0.3) inset, 0 12px 28px rgba(255, 152, 0, 0.32);
}
.bs-doar-plan-tag {
    position: absolute;
    top: -1px; right: 14px;
    background: linear-gradient(135deg, #ffd54a, #ff9800);
    color: #1a1a1a;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 3px 9px;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
}
.bs-doar-plan-amount {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 4px;
}
.bs-doar-plan-amount .currency {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 2px;
}
.bs-doar-plan-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(0, 212, 255, 0.85);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 4px;
}
.bs-doar-plan.featured .bs-doar-plan-label { color: #ffd54a; }
.bs-doar-plan-perk {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 8px;
    line-height: 1.45;
}
.bs-doar-plan-radio {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    transition: all .25s ease;
}
.bs-doar-plan.selected .bs-doar-plan-radio {
    border-color: #00d4ff;
    background: #00d4ff;
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.18);
}
.bs-doar-plan.selected .bs-doar-plan-radio::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 6px; height: 6px;
    background: #001118;
    border-radius: 50%;
}

/* ==================== METHODS (PIX/Stripe/MP) ==================== */
.bs-doar-methods { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.bs-doar-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    cursor: pointer;
    transition: all .25s ease;
}
.bs-doar-method:hover { border-color: rgba(0, 212, 255, 0.35); }
.bs-doar-method.selected {
    border-color: #00d4ff;
    background: rgba(0, 195, 226, 0.08);
}
.bs-doar-method input[type="radio"] {
    accent-color: #00d4ff;
    margin: 0;
    width: 18px;
    height: 18px;
}
.bs-doar-method-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}
.bs-doar-method-text { flex: 1; }
.bs-doar-method-text strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}
.bs-doar-method-text span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11.5px;
}
.bs-doar-method-fast {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 100px;
    text-transform: uppercase;
}

/* ==================== UTILITIES ==================== */
.bs-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.bs-auth-divider::before,
.bs-auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 195, 226, 0.25), transparent);
}

/* ==================== MOBILE (≤640px) ==================== */
@media (max-width: 640px) {
    .bs-auth-page { padding: 30px 0 60px; }
    .bs-auth-container { padding: 0 14px; }
    .bs-auth-card { padding: 26px 20px; border-radius: 18px; }
    .bs-auth-art { padding: 30px 20px; }
    .bs-auth-art-svg { max-width: 200px; }
    .bs-auth-card-title { font-size: 19px; }
    .bs-auth-card-title i { width: 34px; height: 34px; font-size: 14px; }
    .bs-auth-input,
    .bs-auth-textarea { padding: 12px 14px; font-size: 13.5px; }
    .bs-auth-submit { padding: 14px; font-size: 13px; }
    .bs-auth-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
    .bs-auth-stat { padding: 12px 10px; }
    .bs-auth-stat-num { font-size: 22px; }
    .bs-auth-trust { gap: 10px; padding-top: 14px; }
    .bs-auth-trust-item { font-size: 11px; }
    .bs-auth-faq-item summary { padding: 14px 16px; font-size: 13.5px; }
    .bs-auth-faq-content { padding: 0 16px 14px; font-size: 12.5px; }
    .bs-doar-plan-amount { font-size: 26px; }
}
