/* /Components/DashboardCards/EmpresaCard.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   EmpresaCard.razor.css
   ═══════════════════════════════════════════════ */

.ec-loading[b-jtxegfmww4] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 40px 0;
    font-size: 14px;
    color: #6A8590;
}

.ec-spinner[b-jtxegfmww4] {
    width: 18px;
    height: 18px;
    border: 2px solid #DDE7EB;
    border-top-color: #006B5F;
    border-radius: 50%;
    animation: ec-spin-b-jtxegfmww4 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes ec-spin-b-jtxegfmww4 { to { transform: rotate(360deg); } }

/* ── Card ────────────────────────────────────── */
.ec-card[b-jtxegfmww4] {
    background: #FAFCFB;
    border: 1px solid #DDE7EB;
    border-radius: 8px;
    overflow: hidden;
}

.ec-card-header[b-jtxegfmww4] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 28px 20px;
    border-bottom: 1px solid #DDE7EB;
}

.ec-section-label[b-jtxegfmww4] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #006B5F;
    margin-bottom: 4px;
}

.ec-card-title[b-jtxegfmww4] {
    font-family: var(--va-font-display);
    font-size: 20px;
    font-weight: 700;
    color: #0D2B3E;
    margin: 0;
    letter-spacing: -0.2px;
}

.ec-btn-edit[b-jtxegfmww4] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--va-font-body);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    background: transparent;
    color: #006B5F;
    border: 1px solid rgba(0, 107, 95, 0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s;
    flex-shrink: 0;
}

.ec-btn-edit svg[b-jtxegfmww4] { width: 14px; height: 14px; }

.ec-btn-edit:hover[b-jtxegfmww4] {
    background: rgba(0, 107, 95, 0.06);
    border-color: rgba(0, 107, 95, 0.5);
}

/* ── Vista ───────────────────────────────────── */
.ec-fields-grid[b-jtxegfmww4] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
}

.ec-field[b-jtxegfmww4] {
    padding: 18px 28px;
    border-bottom: 1px solid #DDE7EB;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ec-field:nth-child(odd)[b-jtxegfmww4] {
    border-right: 1px solid #DDE7EB;
}

.ec-field:nth-last-child(-n+2)[b-jtxegfmww4] {
    border-bottom: none;
}

.ec-field-label[b-jtxegfmww4] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #96AEBC;
}

.ec-field-value[b-jtxegfmww4] {
    font-size: 15px;
    font-weight: 400;
    color: #1E2F35;
}

/* ── Formulário ──────────────────────────────── */
.ec-form-grid[b-jtxegfmww4] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    padding: 24px 28px 0;
}

.ec-span-2[b-jtxegfmww4] { grid-column: span 2; }

.ec-form-group[b-jtxegfmww4] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ec-form-group label[b-jtxegfmww4] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6A8590;
}

.ec-input[b-jtxegfmww4] {
    font-family: var(--va-font-body);
    font-size: 14px;
    padding: 9px 12px;
    background: #FAFCFB;
    border: 1px solid #C2D0D6;
    border-radius: 5px;
    color: #1E2F35;
    outline: none;
    width: 100%;
    transition: border-color 0.18s, box-shadow 0.18s;
}

.ec-input[b-jtxegfmww4]::placeholder { color: #C2D0D6; }

.ec-input:focus[b-jtxegfmww4] {
    border-color: #006B5F;
    box-shadow: 0 0 0 3px rgba(0, 107, 95, 0.1);
}

[b-jtxegfmww4] .ec-validation { font-size: 11px; color: #fda4af; }
[b-jtxegfmww4] .validation-message { font-size: 11px; color: #fda4af; }

/* Alertas */
.ec-alert-error[b-jtxegfmww4] {
    margin: 16px 28px 0;
    padding: 10px 14px;
    background: #fdf0ee;
    border: 1px solid #f5c6c0;
    border-radius: 5px;
    font-size: 13px;
    color: #922b21;
}

.ec-alert-ok[b-jtxegfmww4] {
    margin: 16px 28px 0;
    padding: 10px 14px;
    background: #eafaf1;
    border: 1px solid #abebc6;
    border-radius: 5px;
    font-size: 13px;
    color: #1e6b3e;
}

/* Ações */
.ec-form-actions[b-jtxegfmww4] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px 28px 24px;
}

.ec-btn-cancel[b-jtxegfmww4] {
    font-family: var(--va-font-body);
    font-size: 14px;
    padding: 9px 20px;
    background: transparent;
    color: #6A8590;
    border: 1px solid #C2D0D6;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.18s, color 0.18s;
}

.ec-btn-cancel:hover:not(:disabled)[b-jtxegfmww4] {
    border-color: #96AEBC;
    color: #3D5560;
}

.ec-btn-save[b-jtxegfmww4] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--va-font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 9px 22px;
    background: #006B5F;
    color: #FAFCFB;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.18s;
}

.ec-btn-save:hover:not(:disabled)[b-jtxegfmww4] { background: #008578; }

.ec-btn-save:disabled[b-jtxegfmww4],
.ec-btn-cancel:disabled[b-jtxegfmww4] {
    opacity: 0.55;
    cursor: not-allowed;
}

.ec-spinner-sm[b-jtxegfmww4] {
    width: 13px;
    height: 13px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ec-spin-b-jtxegfmww4 0.7s linear infinite;
}

@media (max-width: 640px) {
    .ec-form-grid[b-jtxegfmww4] { grid-template-columns: 1fr; }
    .ec-span-2[b-jtxegfmww4] { grid-column: span 1; }
    .ec-fields-grid[b-jtxegfmww4] { grid-template-columns: 1fr; }
    .ec-field:nth-child(odd)[b-jtxegfmww4] { border-right: none; }
    .ec-field:nth-last-child(-n+2)[b-jtxegfmww4] { border-bottom: 1px solid #DDE7EB; }
    .ec-field:last-child[b-jtxegfmww4] { border-bottom: none; }
}
/* /Components/DashboardCards/SubscricoesCard.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   SubscricoesCard.razor.css
   ═══════════════════════════════════════════════ */

.sc-loading[b-y6e8yj7cuo] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 40px 0;
    font-size: 14px;
    color: #6A8590;
}

.sc-spinner[b-y6e8yj7cuo] {
    width: 18px;
    height: 18px;
    border: 2px solid #DDE7EB;
    border-top-color: #006B5F;
    border-radius: 50%;
    animation: sc-spin-b-y6e8yj7cuo 0.7s linear infinite;
}

@keyframes sc-spin-b-y6e8yj7cuo { to { transform: rotate(360deg); } }

/* Labels de secção */
.sc-section-label[b-y6e8yj7cuo] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #96AEBC;
    margin-bottom: 12px;
}

.sc-section-label--mt[b-y6e8yj7cuo] { margin-top: 36px; }

/* ── Lista de subscrições ────────────────────── */
.sc-list[b-y6e8yj7cuo] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sc-card[b-y6e8yj7cuo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #FAFCFB;
    border: 1px solid #DDE7EB;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.18s, box-shadow 0.18s;
    gap: 12px;
}

.sc-card:hover[b-y6e8yj7cuo] {
    border-color: #99EBE3;
    box-shadow: 0 2px 12px rgba(0, 107, 95, 0.07);
}

.sc-card--inativo[b-y6e8yj7cuo] {
    opacity: 0.6;
}

.sc-card-left[b-y6e8yj7cuo] {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.sc-product-icon[b-y6e8yj7cuo] {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sc-product-icon svg[b-y6e8yj7cuo] { width: 18px; height: 18px; }


.sc-product-name[b-y6e8yj7cuo] {
    font-size: 15px;
    font-weight: 500;
    color: #0D2B3E;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sc-validade[b-y6e8yj7cuo] {
    font-size: 12px;
    color: #6A8590;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sc-aviso-expiracao[b-y6e8yj7cuo] {
    color: #D48A0C;
    font-size: 13px;
}

.sc-card-right[b-y6e8yj7cuo] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.sc-estado[b-y6e8yj7cuo] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
}

.sc-estado--ativo[b-y6e8yj7cuo] {
    background: #E6FAF8;
    color: #004F45;
    border: 1px solid #CCF5F1;
}

.sc-estado--inativo[b-y6e8yj7cuo] {
    background: #F2F6F7;
    color: #6A8590;
    border: 1px solid #DDE7EB;
}

.sc-plano[b-y6e8yj7cuo] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
}

/* Starter — navy subtil */
.sc-plano--starter[b-y6e8yj7cuo] {
    background: #E8F3F9;
    color: #1E506E;
    border: 1px solid #C4DDE9;
}

/* Profissional — teal */
.sc-plano--profissional[b-y6e8yj7cuo] {
    background: #E6FAF8;
    color: #006B5F;
    border: 1px solid #99EBE3;
}

/* Enterprise — navy escuro */
.sc-plano--enterprise[b-y6e8yj7cuo] {
    background: #0D2B3E;
    color: #C4DDE9;
    border: 1px solid #163D55;
}

.sc-btn-faturas[b-y6e8yj7cuo] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #006B5F;
    background: none;
    border: 1px solid rgba(0, 107, 95, 0.25);
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.sc-btn-faturas svg[b-y6e8yj7cuo] { width: 13px; height: 13px; }

.sc-btn-faturas:hover[b-y6e8yj7cuo] {
    background: rgba(0, 107, 95, 0.06);
    border-color: rgba(0, 107, 95, 0.4);
}

.sc-btn-renovar[b-y6e8yj7cuo] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #00A090;
    background: none;
    border: 1px solid rgba(0, 160, 144, 0.3);
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.sc-btn-renovar svg[b-y6e8yj7cuo] { width: 13px; height: 13px; }

.sc-btn-renovar:hover[b-y6e8yj7cuo] {
    background: rgba(0, 160, 144, 0.08);
    border-color: rgba(0, 160, 144, 0.5);
}

.sc-btn-complementos[b-y6e8yj7cuo] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #3A7CA5;
    background: none;
    border: 1px solid rgba(58, 124, 165, 0.3);
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.sc-btn-complementos svg[b-y6e8yj7cuo] { width: 13px; height: 13px; }

.sc-btn-complementos:hover[b-y6e8yj7cuo] {
    background: rgba(58, 124, 165, 0.08);
    border-color: rgba(58, 124, 165, 0.5);
}

.sc-toggle-renovacao[b-y6e8yj7cuo] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    padding: 5px 9px;
    border-radius: 5px;
    border: 1px solid rgba(58, 124, 165, 0.35);
    background: transparent;
    color: #3A7CA5;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
    white-space: nowrap;
}

.sc-toggle-renovacao svg[b-y6e8yj7cuo] { width: 12px; height: 12px; flex-shrink: 0; }
.sc-toggle-renovacao:hover:not(:disabled)[b-y6e8yj7cuo] {
    background: rgba(58, 124, 165, 0.08);
    border-color: #3A7CA5;
}

.sc-toggle-renovacao--on[b-y6e8yj7cuo] {
    background: rgba(0, 160, 144, 0.12);
    border-color: #00A090;
    color: #00C6B2;
}
.sc-toggle-renovacao--on:hover:not(:disabled)[b-y6e8yj7cuo] {
    background: rgba(0, 160, 144, 0.2);
}
.sc-toggle-renovacao:disabled[b-y6e8yj7cuo] { opacity: 0.45; cursor: not-allowed; }

.sc-btn-remover-cartao[b-y6e8yj7cuo] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 4px;
    border: 1px solid rgba(248, 113, 113, 0.25);
    background: transparent;
    color: #f87171;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    flex-shrink: 0;
}

.sc-btn-remover-cartao svg[b-y6e8yj7cuo] { width: 13px; height: 13px; }

.sc-btn-remover-cartao:hover:not(:disabled)[b-y6e8yj7cuo] {
    background: rgba(248, 113, 113, 0.08);
    border-color: rgba(248, 113, 113, 0.5);
}

.sc-btn-remover-cartao:disabled[b-y6e8yj7cuo] { opacity: 0.45; cursor: not-allowed; }

.sc-indisponivel[b-y6e8yj7cuo] {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    color: #9CA3AF;
    background: rgba(156, 163, 175, 0.08);
    border: 1px solid rgba(156, 163, 175, 0.2);
    border-radius: 4px;
    padding: 5px 10px;
    white-space: nowrap;
}

.sc-indisponivel--block[b-y6e8yj7cuo] {
    display: block;
    text-align: center;
    width: 100%;
    padding: 9px;
}

/* Empty state */
.sc-empty[b-y6e8yj7cuo] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 52px 0;
    color: #96AEBC;
    font-size: 14px;
}

.sc-empty svg[b-y6e8yj7cuo] { width: 48px; height: 48px; }

/* ── Produtos disponíveis ────────────────────── */
.sc-produtos-grid[b-y6e8yj7cuo] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

.sc-produto-card[b-y6e8yj7cuo] {
    border: 1px solid #DDE7EB;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.18s, box-shadow 0.18s;
}

.sc-produto-card:hover[b-y6e8yj7cuo] {
    border-color: #C4DDE9;
    box-shadow: 0 2px 12px rgba(13, 43, 62, 0.06);
}

.sc-produto-header[b-y6e8yj7cuo] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.sc-produto-nome[b-y6e8yj7cuo] {
    font-size: 15px;
    font-weight: 600;
    color: #0D2B3E;
    font-family: var(--va-font-display);
}

.sc-produto-preco[b-y6e8yj7cuo] {
    font-family: var(--va-font-display);
    font-size: 16px;
    font-weight: 700;
    color: #006B5F;
    white-space: nowrap;
}

.sc-produto-preco span[b-y6e8yj7cuo] {
    font-size: 12px;
    font-weight: 400;
    color: #96AEBC;
}

.sc-produto-desc[b-y6e8yj7cuo] {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.65;
    color: #3D5560;
    margin: 0;
    flex: 1;
}

.sc-btn-subscrever[b-y6e8yj7cuo] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    background: #006B5F;
    color: #FAFCFB;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.18s;
    align-self: flex-start;
}

.sc-btn-subscrever svg[b-y6e8yj7cuo] { width: 13px; height: 13px; }

.sc-btn-subscrever:hover[b-y6e8yj7cuo] { background: #008578; }

/* ── Botão Aceder (link externo para homepage do produto) ── */
.sc-btn-aceder[b-y6e8yj7cuo] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #FAFCFB;
    background: #0D2B3E;
    border: 1px solid #0D2B3E;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s;
    white-space: nowrap;
}

.sc-btn-aceder svg[b-y6e8yj7cuo] { width: 12px; height: 12px; }

.sc-btn-aceder:hover[b-y6e8yj7cuo] {
    background: #163D55;
    border-color: #163D55;
}

/* Variante para cartões de produto disponível — mesmo estilo sólido */
.sc-btn-aceder--ghost[b-y6e8yj7cuo] {
    background: #0D2B3E;
    color: #FAFCFB;
    border-color: #0D2B3E;
}

.sc-btn-aceder--ghost:hover[b-y6e8yj7cuo] {
    background: #163D55;
    border-color: #163D55;
}

/* Footer dos cartões de produto disponível */
.sc-produto-footer[b-y6e8yj7cuo] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

/* ── Mobile ──────────────────────────────────── */
@media (max-width: 600px) {

    /* Card passa a coluna */
    .sc-card[b-y6e8yj7cuo] {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px;
    }

    /* Lado esquerdo: ícone + nome + validade — mantém linha */
    .sc-card-left[b-y6e8yj7cuo] {
        align-items: flex-start;
    }

    .sc-product-name[b-y6e8yj7cuo] {
        white-space: normal;   /* permite quebra de linha */
    }

    /* Lado direito: estado + botões em coluna */
    .sc-card-right[b-y6e8yj7cuo] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Linha de botões: wrap para ocupar largura total */
    .sc-actions[b-y6e8yj7cuo] {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
    }

    /* Botões ocupam metade da linha cada */
    .sc-btn-aceder[b-y6e8yj7cuo],
    .sc-btn-faturas[b-y6e8yj7cuo],
    .sc-btn-renovar[b-y6e8yj7cuo],
    .sc-btn-complementos[b-y6e8yj7cuo],
    .sc-toggle-renovacao[b-y6e8yj7cuo] {
        flex: 1;
        justify-content: center;
        min-width: 0;
    }

    .sc-indisponivel[b-y6e8yj7cuo] {
        width: 100%;
        justify-content: center;
    }

    /* Grid de produtos — 1 coluna */
    .sc-produtos-grid[b-y6e8yj7cuo] {
        grid-template-columns: 1fr;
    }
}
/* /Components/DashboardCards/UtilizadoresCard.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   UtilizadoresCard.razor.css
   ═══════════════════════════════════════════════ */

.uc-loading[b-iiwtobws1u] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 40px 0;
    font-size: 14px;
    color: #6A8590;
}

.uc-spinner[b-iiwtobws1u] {
    width: 18px;
    height: 18px;
    border: 2px solid #DDE7EB;
    border-top-color: #006B5F;
    border-radius: 50%;
    animation: uc-spin-b-iiwtobws1u 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes uc-spin-b-iiwtobws1u { to { transform: rotate(360deg); } }

.uc-alert-error[b-iiwtobws1u] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #fdf0ee;
    border: 1px solid #f5c6c0;
    border-radius: 6px;
    font-size: 13px;
    color: #922b21;
}

.uc-alert-error svg[b-iiwtobws1u] { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Grid ────────────────────────────────────── */
.uc-grid[b-iiwtobws1u] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

/* ── User card ───────────────────────────────── */
.uc-user-card[b-iiwtobws1u] {
    background: #FAFCFB;
    border: 1px solid #DDE7EB;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color 0.18s, box-shadow 0.18s;
}

.uc-user-card:hover[b-iiwtobws1u] {
    border-color: #99EBE3;
    box-shadow: 0 4px 16px rgba(0, 107, 95, 0.07);
}

.uc-user-card--inativo[b-iiwtobws1u] {
    opacity: 0.65;
}

.uc-user-header[b-iiwtobws1u] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px 12px;
    border-bottom: 1px solid #F2F6F7;
}

.uc-avatar[b-iiwtobws1u] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #004F45;
    color: #CCF5F1;
    font-family: var(--va-font-display);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.uc-user-names[b-iiwtobws1u] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.uc-user-fullname[b-iiwtobws1u] {
    font-size: 14px;
    font-weight: 500;
    color: #0D2B3E;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.uc-user-email[b-iiwtobws1u] {
    font-size: 12px;
    color: #6A8590;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.uc-user-body[b-iiwtobws1u] {
    padding: 12px 16px;
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-content: flex-start;
}

.uc-badges[b-iiwtobws1u] {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.uc-badge[b-iiwtobws1u] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 3px;
    background: #E8F3F9;
    color: #1E506E;
    border: 1px solid #C4DDE9;
    text-transform: lowercase;
}

.uc-badge--vetaqua[b-iiwtobws1u] {
    background: #E6FAF8;
    color: #004F45;
    border-color: #99EBE3;
}

.uc-no-perfis[b-iiwtobws1u] {
    font-size: 12px;
    color: #96AEBC;
    font-style: italic;
}

.uc-user-footer[b-iiwtobws1u] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px 14px;
    border-top: 1px solid #F2F6F7;
}

.uc-estado[b-iiwtobws1u] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.uc-estado-dot[b-iiwtobws1u] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.uc-estado--ativo[b-iiwtobws1u]  { color: #006B5F; }
.uc-estado--ativo .uc-estado-dot[b-iiwtobws1u]  { background: #00A090; }
.uc-estado--inativo[b-iiwtobws1u] { color: #96AEBC; }
.uc-estado--inativo .uc-estado-dot[b-iiwtobws1u] { background: #C2D0D6; }

.uc-btn-editar[b-iiwtobws1u] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #006B5F;
    background: none;
    border: 1px solid rgba(0, 107, 95, 0.25);
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.uc-btn-editar svg[b-iiwtobws1u] { width: 12px; height: 12px; }

.uc-btn-editar:hover[b-iiwtobws1u] {
    background: rgba(0, 107, 95, 0.06);
    border-color: rgba(0, 107, 95, 0.4);
}

/* ── Card "Adicionar" ────────────────────────── */
.uc-add-card[b-iiwtobws1u] {
    background: transparent;
    border: 1.5px dashed #C2D0D6;
    border-radius: 8px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    color: #6A8590;
    font-size: 13px;
    font-weight: 500;
    transition: border-color 0.18s, color 0.18s, background 0.18s;
}

.uc-add-icon svg[b-iiwtobws1u] { width: 40px; height: 40px; }

.uc-add-card:hover[b-iiwtobws1u] {
    border-color: #006B5F;
    color: #006B5F;
    background: rgba(0, 107, 95, 0.03);
}
/* /Components/Layout/CookieBanner.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   CookieBanner.razor.css
═══════════════════════════════════════════════ */

.cb-bar[b-58seuizipj] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: rgba(10, 22, 32, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(0, 160, 144, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 32px;
    animation: cb-slide-b-58seuizipj 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cb-content[b-58seuizipj] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.cb-icon[b-58seuizipj] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #00A090;
    margin-top: 1px;
}

.cb-texto[b-58seuizipj] {
    font-size: 13px;
    color: #8DB8D4;
    margin: 0;
    line-height: 1.55;
}

.cb-link[b-58seuizipj] {
    color: #4DD9CA;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(77, 217, 202, 0.4);
    white-space: nowrap;
    margin-left: 4px;
    transition: color 0.15s;
}

.cb-link:hover[b-58seuizipj] { color: #00C6B2; }

.cb-btn[b-58seuizipj] {
    flex-shrink: 0;
    font-family: var(--va-font-body);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 22px;
    background: #00A090;
    color: #FAFCFB;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.15s, transform 0.12s;
    white-space: nowrap;
}

.cb-btn:hover[b-58seuizipj] {
    background: #00C6B2;
    transform: translateY(-1px);
}

@keyframes cb-slide-b-58seuizipj {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

@media (max-width: 600px) {
    .cb-bar[b-58seuizipj] {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
        gap: 12px;
    }
    .cb-btn[b-58seuizipj] { width: 100%; text-align: center; }
}
/* /Components/Layout/HomepageLayout.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════
   HomepageLayout.razor.css
   ═══════════════════════════════════════════════════ */

.hp-wrapper[b-2r4ax8empa] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ── Header / Navbar ────────────────────────────── */
.hp-header[b-2r4ax8empa] {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 48px;
    background: rgba(13, 43, 62, 0.96);
    border-bottom: 1px solid rgba(0, 160, 144, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Brand */
.hp-brand[b-2r4ax8empa] {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: auto;
}

.hp-brand-icon[b-2r4ax8empa] {
    width: 36px;
    height: 36px;
}

.hp-brand-text[b-2r4ax8empa] {
    font-family: var(--va-font-display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #C4DDE9;
    line-height: 1;
}

.hp-brand-text em[b-2r4ax8empa] {
    font-style: normal;
    color: #00C6B2;
}

/* Nav links */
.hp-nav[b-2r4ax8empa] {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 32px;
}

.hp-nav-link[b-2r4ax8empa] {
    font-family: var(--va-font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #8DB8D4;
    background: none;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: color 0.18s, background 0.18s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.hp-nav-link:hover[b-2r4ax8empa] {
    color: #CCF5F1;
    background: rgba(0, 160, 144, 0.1);
}

/* Actions */
.hp-nav-actions[b-2r4ax8empa] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.hp-btn-primary[b-2r4ax8empa] {
    font-family: var(--va-font-body);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 20px;
    background: #00A090;
    color: #FAFCFB;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.18s;
    white-space: nowrap;
}

.hp-btn-primary:hover[b-2r4ax8empa] {
    background: #00C6B2;
}

.hp-btn-ghost[b-2r4ax8empa] {
    font-family: var(--va-font-body);
    font-size: 13px;
    font-weight: 400;
    padding: 7px 18px;
    background: transparent;
    color: #8DB8D4;
    border: 1px solid rgba(141, 184, 212, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.18s, color 0.18s;
    white-space: nowrap;
}

.hp-btn-ghost:hover[b-2r4ax8empa] {
    border-color: rgba(141, 184, 212, 0.5);
    color: #C4DDE9;
}

.hp-btn-dashboard[b-2r4ax8empa] {
    font-family: var(--va-font-body);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    background: rgba(0, 107, 95, 0.25);
    color: #4DD9CA;
    border: 1px solid rgba(0, 160, 144, 0.3);
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background 0.18s, border-color 0.18s;
    white-space: nowrap;
}

.hp-btn-dashboard svg[b-2r4ax8empa] {
    width: 14px;
    height: 14px;
}

.hp-btn-dashboard:hover[b-2r4ax8empa] {
    background: rgba(0, 107, 95, 0.4);
    border-color: rgba(0, 160, 144, 0.5);
    color: #4DD9CA;
    text-decoration: none;
}

/* Mobile toggle */
.hp-menu-toggle[b-2r4ax8empa] {
    display: none;
    background: none;
    border: none;
    color: #8DB8D4;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: color 0.18s;
    flex-shrink: 0;
}

.hp-menu-toggle svg[b-2r4ax8empa] {
    width: 22px;
    height: 22px;
    display: block;
}

.hp-menu-toggle:hover[b-2r4ax8empa] {
    color: #CCF5F1;
}

/* Mobile menu backdrop */
.hp-mobile-backdrop[b-2r4ax8empa] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    z-index: 98;
}

/* Mobile menu drawer */
.hp-mobile-menu[b-2r4ax8empa] {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 99;
    background: #0D2B3E;
    border-bottom: 1px solid rgba(0, 160, 144, 0.15);
    padding: 16px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 12px 32px rgba(5, 14, 20, 0.4);
}

.hp-mobile-link[b-2r4ax8empa] {
    font-family: var(--va-font-body);
    font-size: 15px;
    font-weight: 400;
    color: #8DB8D4;
    background: none;
    border: none;
    padding: 12px 16px;
    text-align: left;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: background 0.15s, color 0.15s;
}

.hp-mobile-link:hover[b-2r4ax8empa] {
    background: rgba(0, 160, 144, 0.1);
    color: #CCF5F1;
}

.hp-mobile-sep[b-2r4ax8empa] {
    height: 1px;
    background: rgba(141, 184, 212, 0.1);
    margin: 10px 0;
}

.hp-mobile-login[b-2r4ax8empa] {
    color: #00C6B2;
    font-weight: 500;
}

.hp-mobile-logout[b-2r4ax8empa] {
    color: #8DB8D4;
}

/* Main */
main[b-2r4ax8empa] {
    flex: 1;
}

/* Error UI */
#blazor-error-ui[b-2r4ax8empa] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-2r4ax8empa] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
    .hp-header[b-2r4ax8empa] {
        padding: 0 24px;
    }

    .hp-nav[b-2r4ax8empa],
    .hp-nav-actions[b-2r4ax8empa] {
        display: none;
    }

    .hp-menu-toggle[b-2r4ax8empa] {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   MainLayout.razor.css
   ═══════════════════════════════════════════════ */

.ml-page[b-mgouqba4g1] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #F2F6F7;
}

.ml-main[b-mgouqba4g1] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ml-content[b-mgouqba4g1] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 48px;
}

@media (max-width: 640px) {
    .ml-content[b-mgouqba4g1] {
        padding: 0 16px 40px;
    }
}

/* Blazor error UI */
#blazor-error-ui[b-mgouqba4g1] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-mgouqba4g1] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   NavMenu.razor.css  —  topbar horizontal
   ═══════════════════════════════════════════════ */

.nm-bar[b-ofotcc3ztv] {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: #0D2B3E;
    border-bottom: 1px solid rgba(0, 160, 144, 0.14);
    position: sticky;
    top: 0;
    z-index: 100;
    flex-shrink: 0;
}

/* ── Brand ───────────────────────────────────── */
.nm-brand[b-ofotcc3ztv] {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.nm-brand-icon[b-ofotcc3ztv] {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.nm-brand-text[b-ofotcc3ztv] {
    font-family: var(--va-font-display);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: #C4DDE9;
    line-height: 1;
}

.nm-brand-text em[b-ofotcc3ztv] {
    font-style: normal;
    color: #00C6B2;
}

/* ── Botões ──────────────────────────────────── */
.nm-btn-logout[b-ofotcc3ztv],
.nm-btn-login[b-ofotcc3ztv] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--va-font-body);
    font-size: 13px;
    font-weight: 400;
    padding: 6px 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    background: transparent;
}

.nm-btn-logout svg[b-ofotcc3ztv],
.nm-btn-login svg[b-ofotcc3ztv] {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.nm-btn-logout[b-ofotcc3ztv] {
    color: #6A8590;
    border: 1px solid rgba(106, 133, 144, 0.2);
}

.nm-btn-logout:hover[b-ofotcc3ztv] {
    color: #8DB8D4;
    border-color: rgba(141, 184, 212, 0.35);
    background: rgba(255, 255, 255, 0.04);
}

.nm-btn-login[b-ofotcc3ztv] {
    color: #4DD9CA;
    border: 1px solid rgba(0, 160, 144, 0.3);
}

.nm-btn-login:hover[b-ofotcc3ztv] {
    background: rgba(0, 160, 144, 0.1);
    border-color: rgba(0, 160, 144, 0.5);
    color: #99EBE3;
}

/* Mobile: esconde o label de texto, mantém só o ícone */
@media (max-width: 400px) {
    .nm-btn-label[b-ofotcc3ztv] { display: none; }
    .nm-bar[b-ofotcc3ztv] { padding: 0 16px; }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-n65laev7iq],
.components-reconnect-repeated-attempt-visible[b-n65laev7iq],
.components-reconnect-failed-visible[b-n65laev7iq],
.components-pause-visible[b-n65laev7iq],
.components-resume-failed-visible[b-n65laev7iq],
.components-rejoining-animation[b-n65laev7iq] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-n65laev7iq],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-n65laev7iq],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-n65laev7iq],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-n65laev7iq],
#components-reconnect-modal.components-reconnect-retrying[b-n65laev7iq],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-n65laev7iq],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-n65laev7iq],
#components-reconnect-modal.components-reconnect-failed[b-n65laev7iq],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-n65laev7iq] {
    display: block;
}


#components-reconnect-modal[b-n65laev7iq] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-n65laev7iq 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-n65laev7iq 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-n65laev7iq 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-n65laev7iq]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-n65laev7iq 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-n65laev7iq {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-n65laev7iq {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-n65laev7iq {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-n65laev7iq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-n65laev7iq] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-n65laev7iq] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-n65laev7iq] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-n65laev7iq] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-n65laev7iq] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-n65laev7iq] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-n65laev7iq 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-n65laev7iq] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-n65laev7iq {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Layout/SiteFooter.razor.rz.scp.css */
.site-footer[b-fl1awb4tli] {
    background: #050E14;
    padding: 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-brand[b-fl1awb4tli] {
    font-family: var(--va-font-display);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #C4DDE9;
}

.footer-brand span[b-fl1awb4tli] { color: #00C6B2; }

.footer-tagline[b-fl1awb4tli] {
    font-family: var(--va-font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #3A7CA5;
    margin: 0;
}

.footer-links[b-fl1awb4tli] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.footer-link[b-fl1awb4tli] {
    font-size: 12px;
    color: #3A7CA5;
    text-decoration: none;
    transition: color 0.15s;
}

.footer-link:hover[b-fl1awb4tli] { color: #8DB8D4; }

.footer-sep[b-fl1awb4tli] { font-size: 12px; color: #1E506E; }

/* ── Stripe badge ─────────────────────────── */
.footer-stripe[b-fl1awb4tli] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 7px 16px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
}

.footer-stripe-label[b-fl1awb4tli] {
    font-size: 11px;
    color: #2A4A5E;
    white-space: nowrap;
}

.footer-stripe-badge[b-fl1awb4tli] {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    color: #6772E5;
}

.footer-stripe-smark[b-fl1awb4tli] {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.footer-stripe-wordmark[b-fl1awb4tli] {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1;
    margin-top: 1px;
}

.footer-meta[b-fl1awb4tli] {
    font-size: 12px;
    color: #1E506E;
    margin: 4px 0 0;
}

@media (max-width: 600px) {
    .site-footer[b-fl1awb4tli] { padding: 40px 20px; }
}
/* /Components/MinhaAreaCards/ProdutosAtribuidosCard.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   ProdutosAtribuidosCard.razor.css
   ═══════════════════════════════════════════════ */

/* ── Loading ─────────────────────────────────── */
.pac-loading[b-dwypcue1xo] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 40px 0;
    font-size: 14px;
    color: #6A8590;
}

.pac-spinner[b-dwypcue1xo] {
    width: 18px;
    height: 18px;
    border: 2px solid #DDE7EB;
    border-top-color: #006B5F;
    border-radius: 50%;
    animation: pac-spin-b-dwypcue1xo 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes pac-spin-b-dwypcue1xo { to { transform: rotate(360deg); } }

/* ── Estado vazio ────────────────────────────── */
.pac-empty[b-dwypcue1xo] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 60px 24px;
    background: #FAFCFB;
    border: 1px solid #DDE7EB;
    border-radius: 8px;
    text-align: center;
}

.pac-empty svg[b-dwypcue1xo] {
    width: 48px;
    height: 48px;
    color: #C2D0D6;
}

.pac-empty p[b-dwypcue1xo] {
    font-family: var(--va-font-display);
    font-size: 16px;
    font-weight: 600;
    color: #3D5560;
    margin: 0;
}

.pac-empty span[b-dwypcue1xo] {
    font-size: 13px;
    color: #96AEBC;
    font-weight: 300;
    max-width: 320px;
    line-height: 1.6;
}

/* ── Grid de produtos ────────────────────────── */
.pac-grid[b-dwypcue1xo] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.pac-item[b-dwypcue1xo] {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    background: #FAFCFB;
    border: 1px solid #DDE7EB;
    border-radius: 8px;
    transition: border-color 0.18s, box-shadow 0.18s;
}

.pac-item:hover[b-dwypcue1xo] {
    border-color: #99EBE3;
    box-shadow: 0 2px 8px rgba(0, 107, 95, 0.08);
}

.pac-item-icon[b-dwypcue1xo] {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pac-item-icon svg[b-dwypcue1xo] { width: 18px; height: 18px; }

.pac-item-body[b-dwypcue1xo] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.pac-item-nome[b-dwypcue1xo] {
    font-family: var(--va-font-display);
    font-size: 15px;
    font-weight: 600;
    color: #0D2B3E;
    line-height: 1.3;
}

.pac-item-desc[b-dwypcue1xo] {
    font-size: 13px;
    color: #6A8590;
    font-weight: 300;
    line-height: 1.5;
}

.pac-item-footer[b-dwypcue1xo] {
    margin-top: 12px;
}

.pac-btn-aceder[b-dwypcue1xo] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #FAFCFB;
    background: #0D2B3E;
    border: 1px solid #0D2B3E;
    border-radius: 4px;
    padding: 6px 12px;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s;
    white-space: nowrap;
}

.pac-btn-aceder svg[b-dwypcue1xo] { width: 12px; height: 12px; }

.pac-btn-aceder:hover[b-dwypcue1xo] {
    background: #163D55;
    border-color: #163D55;
    color: #FAFCFB;
}
/* /Components/MinhaAreaCards/UtilizadorCardSelf.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   UtilizadorCardSelf.razor.css
   ═══════════════════════════════════════════════ */

.ucs-loading[b-6rosddmwxe] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 40px 0;
    font-size: 14px;
    color: #6A8590;
}

.ucs-spinner[b-6rosddmwxe] {
    width: 18px;
    height: 18px;
    border: 2px solid #DDE7EB;
    border-top-color: #006B5F;
    border-radius: 50%;
    animation: ucs-spin-b-6rosddmwxe 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes ucs-spin-b-6rosddmwxe { to { transform: rotate(360deg); } }

/* ── Card ────────────────────────────────────── */
.ucs-card[b-6rosddmwxe] {
    background: #FAFCFB;
    border: 1px solid #DDE7EB;
    border-radius: 8px;
    overflow: hidden;
}

.ucs-card-header[b-6rosddmwxe] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 28px 20px;
    border-bottom: 1px solid #DDE7EB;
}

.ucs-section-label[b-6rosddmwxe] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #006B5F;
    margin-bottom: 4px;
}

.ucs-card-title[b-6rosddmwxe] {
    font-family: var(--va-font-display);
    font-size: 20px;
    font-weight: 700;
    color: #0D2B3E;
    margin: 0;
    letter-spacing: -0.2px;
}

.ucs-btn-edit[b-6rosddmwxe] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--va-font-body);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    background: transparent;
    color: #006B5F;
    border: 1px solid rgba(0, 107, 95, 0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s;
    flex-shrink: 0;
}

.ucs-btn-edit svg[b-6rosddmwxe] { width: 14px; height: 14px; }

.ucs-btn-edit:hover[b-6rosddmwxe] {
    background: rgba(0, 107, 95, 0.06);
    border-color: rgba(0, 107, 95, 0.5);
}

/* ── Vista ───────────────────────────────────── */
.ucs-fields-grid[b-6rosddmwxe] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
}

.ucs-field[b-6rosddmwxe] {
    padding: 18px 28px;
    border-bottom: 1px solid #DDE7EB;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ucs-field:nth-child(odd)[b-6rosddmwxe] {
    border-right: 1px solid #DDE7EB;
}

.ucs-field:nth-last-child(-n+2)[b-6rosddmwxe] {
    border-bottom: none;
}

.ucs-span-2[b-6rosddmwxe] {
    grid-column: span 2;
    border-right: none !important;
}

.ucs-field-label[b-6rosddmwxe] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #96AEBC;
}

.ucs-field-value[b-6rosddmwxe] {
    font-size: 15px;
    font-weight: 400;
    color: #1E2F35;
}

/* ── Formulário ──────────────────────────────── */
.ucs-form-grid[b-6rosddmwxe] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    padding: 24px 28px 0;
}

.ucs-form-group[b-6rosddmwxe] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ucs-form-group.ucs-span-2[b-6rosddmwxe] { grid-column: span 2; }

.ucs-form-group label[b-6rosddmwxe] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6A8590;
}

.ucs-input[b-6rosddmwxe] {
    font-family: var(--va-font-body);
    font-size: 14px;
    padding: 9px 12px;
    background: #FAFCFB;
    border: 1px solid #C2D0D6;
    border-radius: 5px;
    color: #1E2F35;
    outline: none;
    width: 100%;
    transition: border-color 0.18s, box-shadow 0.18s;
}

.ucs-input[b-6rosddmwxe]::placeholder { color: #C2D0D6; }

.ucs-input:focus[b-6rosddmwxe] {
    border-color: #006B5F;
    box-shadow: 0 0 0 3px rgba(0, 107, 95, 0.1);
}

.ucs-input-readonly[b-6rosddmwxe] {
    background: #F2F6F7;
    color: #6A8590;
    cursor: default;
}

.ucs-hint[b-6rosddmwxe] {
    font-size: 11px;
    color: #96AEBC;
    margin-top: 2px;
}

/* Alertas */
.ucs-alert-error[b-6rosddmwxe] {
    margin: 16px 28px 0;
    padding: 10px 14px;
    background: #fdf0ee;
    border: 1px solid #f5c6c0;
    border-radius: 5px;
    font-size: 13px;
    color: #922b21;
}

.ucs-alert-ok[b-6rosddmwxe] {
    margin: 16px 28px 0;
    padding: 10px 14px;
    background: #eafaf1;
    border: 1px solid #abebc6;
    border-radius: 5px;
    font-size: 13px;
    color: #1e6b3e;
}

/* Validação */
[b-6rosddmwxe] .ucs-validation { font-size: 11px; color: #fda4af; }
[b-6rosddmwxe] .validation-message { font-size: 11px; color: #fda4af; }

/* Ações */
.ucs-form-actions[b-6rosddmwxe] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px 28px 24px;
}

.ucs-btn-cancel[b-6rosddmwxe] {
    font-family: var(--va-font-body);
    font-size: 14px;
    padding: 9px 20px;
    background: transparent;
    color: #6A8590;
    border: 1px solid #C2D0D6;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.18s, color 0.18s;
}

.ucs-btn-cancel:hover:not(:disabled)[b-6rosddmwxe] {
    border-color: #96AEBC;
    color: #3D5560;
}

.ucs-btn-save[b-6rosddmwxe] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--va-font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 9px 22px;
    background: #006B5F;
    color: #FAFCFB;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.18s;
}

.ucs-btn-save:hover:not(:disabled)[b-6rosddmwxe] { background: #008578; }

.ucs-btn-save:disabled[b-6rosddmwxe],
.ucs-btn-cancel:disabled[b-6rosddmwxe] {
    opacity: 0.55;
    cursor: not-allowed;
}

.ucs-spinner-sm[b-6rosddmwxe] {
    width: 13px;
    height: 13px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ucs-spin-b-6rosddmwxe 0.7s linear infinite;
}

@media (max-width: 640px) {
    .ucs-form-grid[b-6rosddmwxe] { grid-template-columns: 1fr; }
    .ucs-form-group.ucs-span-2[b-6rosddmwxe] { grid-column: span 1; }
    .ucs-fields-grid[b-6rosddmwxe] { grid-template-columns: 1fr; }
    .ucs-field:nth-child(odd)[b-6rosddmwxe] { border-right: none; }
    .ucs-field:nth-last-child(-n+2)[b-6rosddmwxe] { border-bottom: 1px solid #DDE7EB; }
    .ucs-field:last-child[b-6rosddmwxe] { border-bottom: none; }
}
/* /Components/Modals/ConfirmModal.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════
   ConfirmModal.razor.css
   ═══════════════════════════════════════════════════════════════ */

.cfm-backdrop[b-6e5xkvgyqj] {
    position: fixed;
    inset: 0;
    background: rgba(5, 14, 20, 0.82);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1055;
    animation: cfm-fade-in-b-6e5xkvgyqj 0.18s ease;
}

.cfm-wrapper[b-6e5xkvgyqj] {
    position: fixed;
    inset: 0;
    z-index: 1065;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: cfm-slide-in-b-6e5xkvgyqj 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.cfm-panel[b-6e5xkvgyqj] {
    width: 100%;
    max-width: 360px;
    background: #0D2B3E;
    border: 1px solid rgba(0, 160, 144, 0.15);
    border-radius: 10px;
    padding: 40px 32px 32px;
    box-shadow: 0 24px 64px rgba(5, 14, 20, 0.6),
                0 0 0 1px rgba(0, 198, 178, 0.05);
    text-align: center;
}

.cfm-icon-wrap[b-6e5xkvgyqj] {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.cfm-icon-wrap svg[b-6e5xkvgyqj] { width: 52px; height: 52px; }

.cfm-title[b-6e5xkvgyqj] {
    font-family: var(--va-font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: #FAFCFB;
    margin: 0 0 10px;
}

.cfm-body[b-6e5xkvgyqj] {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: #8DB8D4;
    margin: 0 0 32px;
}

.cfm-actions[b-6e5xkvgyqj] {
    display: flex;
    gap: 10px;
}

.cfm-btn-cancel[b-6e5xkvgyqj] {
    flex: 1;
    font-family: var(--va-font-body);
    font-size: 14px;
    font-weight: 400;
    padding: 11px;
    background: transparent;
    color: #8DB8D4;
    border: 1px solid rgba(141, 184, 212, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.18s, color 0.18s;
}
.cfm-btn-cancel:hover:not(:disabled)[b-6e5xkvgyqj] {
    border-color: rgba(141, 184, 212, 0.45);
    color: #C4DDE9;
}
.cfm-btn-cancel:disabled[b-6e5xkvgyqj] { opacity: 0.55; cursor: not-allowed; }

.cfm-btn-confirm[b-6e5xkvgyqj] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--va-font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 11px;
    background: rgba(0, 107, 95, 0.25);
    color: #4DD9CA;
    border: 1px solid rgba(0, 160, 144, 0.3);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, transform 0.15s;
}
.cfm-btn-confirm:hover:not(:disabled)[b-6e5xkvgyqj] {
    background: rgba(0, 107, 95, 0.4);
    border-color: rgba(0, 160, 144, 0.5);
    transform: translateY(-1px);
}
.cfm-btn-confirm:disabled[b-6e5xkvgyqj] { opacity: 0.55; cursor: not-allowed; }

.cfm-btn-confirm--destrutivo[b-6e5xkvgyqj] {
    background: rgba(248, 113, 113, 0.15);
    color: #fda4af;
    border-color: rgba(248, 113, 113, 0.35);
}
.cfm-btn-confirm--destrutivo:hover:not(:disabled)[b-6e5xkvgyqj] {
    background: rgba(248, 113, 113, 0.28);
    border-color: rgba(248, 113, 113, 0.55);
}

.cfm-spinner[b-6e5xkvgyqj] {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(77, 217, 202, 0.25);
    border-top-color: #4DD9CA;
    border-radius: 50%;
    animation: cfm-spin-b-6e5xkvgyqj 0.7s linear infinite;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .cfm-wrapper[b-6e5xkvgyqj] { align-items: flex-end; padding: 0 16px 16px; }
    .cfm-panel[b-6e5xkvgyqj]   { border-radius: 14px 14px 10px 10px; }
}

@keyframes cfm-fade-in-b-6e5xkvgyqj {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes cfm-slide-in-b-6e5xkvgyqj {
    from { opacity: 0; transform: translateY(10px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

@keyframes cfm-spin-b-6e5xkvgyqj {
    to { transform: rotate(360deg); }
}
/* /Components/Modals/EditarUtilizadorModal.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   EditarUtilizadorModal.razor.css
   ═══════════════════════════════════════════════ */

.eum-backdrop[b-2px2a8qcr7] {
    position: fixed;
    inset: 0;
    background: rgba(5, 14, 20, 0.7);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1040;
    animation: eum-fade-b-2px2a8qcr7 0.18s ease;
}

.eum-wrapper[b-2px2a8qcr7] {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(520px, 100vw);
    background: #FAFCFB;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(5, 14, 20, 0.18);
    animation: eum-slide-in-b-2px2a8qcr7 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

/* ── Cabeçalho ───────────────────────────────── */
.eum-header[b-2px2a8qcr7] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 28px 20px;
    border-bottom: 1px solid #DDE7EB;
    flex-shrink: 0;
}

.eum-eyebrow[b-2px2a8qcr7] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #006B5F;
    margin-bottom: 4px;
}

.eum-title[b-2px2a8qcr7] {
    font-family: var(--va-font-display);
    font-size: 18px;
    font-weight: 700;
    color: #0D2B3E;
    margin: 0;
}

.eum-close[b-2px2a8qcr7] {
    width: 30px; height: 30px;
    background: #F2F6F7;
    border: 1px solid #DDE7EB;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: #6A8590; cursor: pointer;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
}

.eum-close svg[b-2px2a8qcr7] { width: 15px; height: 15px; }
.eum-close:hover[b-2px2a8qcr7] { background: #DDE7EB; color: #0D2B3E; }

/* ── Body ────────────────────────────────────── */
.eum-body[b-2px2a8qcr7] {
    flex: 1;
    overflow-y: auto;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eum-form-row[b-2px2a8qcr7] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.eum-form-group[b-2px2a8qcr7] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.eum-form-group label[b-2px2a8qcr7] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6A8590;
}

.eum-input[b-2px2a8qcr7] {
    font-family: var(--va-font-body);
    font-size: 14px;
    padding: 9px 12px;
    background: #FAFCFB;
    border: 1px solid #C2D0D6;
    border-radius: 5px;
    color: #1E2F35;
    outline: none;
    width: 100%;
    transition: border-color 0.18s, box-shadow 0.18s;
}

.eum-input[b-2px2a8qcr7]::placeholder { color: #C2D0D6; }
.eum-input:focus[b-2px2a8qcr7] { border-color: #006B5F; box-shadow: 0 0 0 3px rgba(0,107,95,0.1); }
.eum-input:disabled[b-2px2a8qcr7] { background: #F2F6F7; color: #6A8590; cursor: not-allowed; }

[b-2px2a8qcr7] .eum-val { font-size: 11px; color: #fda4af; }
[b-2px2a8qcr7] .validation-message { font-size: 11px; color: #fda4af; }
.eum-hint[b-2px2a8qcr7] { font-size: 11px; color: #96AEBC; }

/* ── Toggles (perfis e produtos) ─────────────── */
.eum-toggles-grid[b-2px2a8qcr7] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}

.eum-toggle[b-2px2a8qcr7] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    background: #F2F6F7;
    border: 1px solid #DDE7EB;
    border-radius: 5px;
    font-size: 13px;
    color: #3D5560;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.eum-toggle input[b-2px2a8qcr7] { display: none; }

.eum-toggle-check[b-2px2a8qcr7] {
    width: 16px; height: 16px;
    border: 1.5px solid #C2D0D6;
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.15s, background 0.15s;
}

.eum-toggle-check svg[b-2px2a8qcr7] { width: 10px; height: 10px; color: #FAFCFB; }

/* Toggle ativo — perfis (teal) */
.eum-toggle--on[b-2px2a8qcr7] {
    background: #E6FAF8;
    border-color: #00A090;
    color: #004F45;
}

.eum-toggle--on .eum-toggle-check[b-2px2a8qcr7] {
    background: #00A090;
    border-color: #00A090;
}

.eum-toggle:hover:not(.eum-toggle--on)[b-2px2a8qcr7] {
    border-color: #96AEBC;
    background: #DDE7EB;
}

/* Toggle de produto — destaque ligeiramente diferente (navy) */
.eum-toggle--produto.eum-toggle--on[b-2px2a8qcr7] {
    background: #E8F3F9;
    border-color: #3A7CA5;
    color: #1E506E;
}

.eum-toggle--produto.eum-toggle--on .eum-toggle-check[b-2px2a8qcr7] {
    background: #3A7CA5;
    border-color: #3A7CA5;
}

/* Hint box */
.eum-hint-box[b-2px2a8qcr7] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: #E8F3F9;
    border: 1px solid #C4DDE9;
    border-radius: 6px;
    font-size: 13px;
    color: #1E506E;
    font-weight: 300;
    line-height: 1.5;
}

.eum-hint-box svg[b-2px2a8qcr7] { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; }

/* Alertas */
.eum-alert-error[b-2px2a8qcr7] {
    padding: 10px 14px;
    background: #fdf0ee;
    border: 1px solid #f5c6c0;
    border-radius: 5px;
    font-size: 13px;
    color: #922b21;
}

.eum-alert-ok[b-2px2a8qcr7] {
    padding: 10px 14px;
    background: #eafaf1;
    border: 1px solid #abebc6;
    border-radius: 5px;
    font-size: 13px;
    color: #1e6b3e;
}

/* Confirmação de eliminação */
.eum-confirm-delete[b-2px2a8qcr7] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #FDF5E0;
    border: 1px solid #F5D08A;
    border-radius: 6px;
}

.eum-confirm-delete svg[b-2px2a8qcr7] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.eum-confirm-delete strong[b-2px2a8qcr7] { font-size: 13px; font-weight: 600; color: #A06600; display: block; }
.eum-confirm-delete p[b-2px2a8qcr7] { font-size: 12px; color: #A06600; margin: 2px 0 0; font-weight: 300; }

.eum-confirm-btns[b-2px2a8qcr7] { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }

.eum-btn-confirmar-del[b-2px2a8qcr7] {
    font-size: 12px; font-weight: 500; padding: 6px 14px;
    background: #922b21; color: #fff; border: none; border-radius: 4px; cursor: pointer;
}
.eum-btn-confirmar-del:hover[b-2px2a8qcr7] { background: #a93226; }

.eum-btn-cancelar-del[b-2px2a8qcr7] {
    font-size: 12px; padding: 6px 14px;
    background: transparent; color: #A06600;
    border: 1px solid #F5D08A; border-radius: 4px; cursor: pointer;
}

/* ── Rodapé ──────────────────────────────────── */
.eum-footer[b-2px2a8qcr7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    border-top: 1px solid #DDE7EB;
    background: #F2F6F7;
    flex-shrink: 0;
    gap: 10px;
}

.eum-footer-right[b-2px2a8qcr7] { display: flex; gap: 10px; margin-left: auto; }

.eum-btn-delete[b-2px2a8qcr7] {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 13px; color: #922b21;
    background: none; border: 1px solid rgba(146,43,33,0.25);
    border-radius: 4px; padding: 7px 14px; cursor: pointer;
    transition: background 0.15s;
}
.eum-btn-delete svg[b-2px2a8qcr7] { width: 13px; height: 13px; }
.eum-btn-delete:hover[b-2px2a8qcr7] { background: rgba(146,43,33,0.06); }
.eum-btn-delete:disabled[b-2px2a8qcr7] { opacity: 0.4; cursor: not-allowed; }

.eum-btn-cancel[b-2px2a8qcr7] {
    font-size: 14px; padding: 9px 18px;
    background: transparent; color: #6A8590;
    border: 1px solid #C2D0D6; border-radius: 5px; cursor: pointer;
    transition: border-color 0.15s;
}
.eum-btn-cancel:hover:not(:disabled)[b-2px2a8qcr7] { border-color: #96AEBC; }
.eum-btn-cancel:disabled[b-2px2a8qcr7] { opacity: 0.5; cursor: not-allowed; }

.eum-btn-save[b-2px2a8qcr7] {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 14px; font-weight: 500; padding: 9px 20px;
    background: #006B5F; color: #FAFCFB;
    border: none; border-radius: 5px; cursor: pointer;
    transition: background 0.18s;
}
.eum-btn-save:hover:not(:disabled)[b-2px2a8qcr7] { background: #008578; }
.eum-btn-save:disabled[b-2px2a8qcr7] { opacity: 0.55; cursor: not-allowed; }

.eum-spinner[b-2px2a8qcr7] {
    width: 13px; height: 13px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff; border-radius: 50%;
    animation: eum-spin-b-2px2a8qcr7 0.7s linear infinite;
}

/* ── Animações ───────────────────────────────── */
@keyframes eum-fade-b-2px2a8qcr7    { from { opacity: 0; } to { opacity: 1; } }
@keyframes eum-spin-b-2px2a8qcr7    { to { transform: rotate(360deg); } }
@keyframes eum-slide-in-b-2px2a8qcr7 {
    from { transform: translateX(100%); }
    to   { transform: translateX(0);    }
}

@media (max-width: 560px) {
    .eum-form-row[b-2px2a8qcr7] { grid-template-columns: 1fr; }
    .eum-footer[b-2px2a8qcr7] { flex-wrap: wrap; }
    .eum-footer-right[b-2px2a8qcr7] { width: 100%; }
}
/* /Components/Modals/GerirComplementosModal.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   GerirComplementosModal.razor.css
   ═══════════════════════════════════════════════ */

.gc-backdrop[b-sf2i6ssgmo] {
    position: fixed;
    inset: 0;
    background: rgba(5, 14, 20, 0.85);
    backdrop-filter: blur(4px);
    z-index: 1040;
    animation: gc-fade-b-sf2i6ssgmo 0.18s ease;
}

.gc-wrapper[b-sf2i6ssgmo] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: gc-in-b-sf2i6ssgmo 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.gc-panel[b-sf2i6ssgmo] {
    width: 100%;
    max-width: 520px;
    background: #0D2B3E;
    border: 1px solid rgba(0, 160, 144, 0.2);
    border-radius: 12px;
    box-shadow: 0 28px 72px rgba(5, 14, 20, 0.65),
                0 0 0 1px rgba(0, 198, 178, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 92vh;
}

/* ── Cabeçalho ───────────────────────────────── */
.gc-header[b-sf2i6ssgmo] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 28px 0;
}

.gc-eyebrow[b-sf2i6ssgmo] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00A090;
    margin-bottom: 4px;
}

.gc-title[b-sf2i6ssgmo] {
    font-family: var(--va-font-display);
    font-size: 20px;
    font-weight: 700;
    color: #FAFCFB;
    margin: 0;
}

.gc-close[b-sf2i6ssgmo] {
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: #6A8590;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}
.gc-close svg[b-sf2i6ssgmo] { width: 14px; height: 14px; }
.gc-close:hover:not(:disabled)[b-sf2i6ssgmo] { background: rgba(255,255,255,0.1); color: #FAFCFB; }
.gc-close:disabled[b-sf2i6ssgmo] { opacity: 0.4; cursor: not-allowed; }

/* ── Body ────────────────────────────────────── */
.gc-body[b-sf2i6ssgmo] {
    padding: 20px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
}

.gc-loading[b-sf2i6ssgmo] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 24px 0;
    font-size: 13px;
    color: #8DB8D4;
}

.gc-empty[b-sf2i6ssgmo] {
    padding: 24px 0;
    font-size: 13px;
    color: #8DB8D4;
    text-align: center;
    margin: 0;
}

/* ── Lista de complementos ───────────────────── */
.gc-lista[b-sf2i6ssgmo] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gc-item[b-sf2i6ssgmo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
}

.gc-item-info[b-sf2i6ssgmo] { min-width: 0; }

.gc-item-nome[b-sf2i6ssgmo] {
    font-size: 14px;
    font-weight: 500;
    color: #FAFCFB;
}

.gc-item-desc[b-sf2i6ssgmo] {
    font-size: 12px;
    color: #8DB8D4;
    margin-top: 2px;
    line-height: 1.5;
}

.gc-item-preco[b-sf2i6ssgmo] {
    font-family: var(--va-font-display);
    font-size: 13px;
    font-weight: 600;
    color: #4DD9CA;
    margin-top: 4px;
}
.gc-item-preco span[b-sf2i6ssgmo] { font-size: 11px; font-weight: 400; color: #6A8590; }

.gc-item-actions[b-sf2i6ssgmo] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.gc-badge[b-sf2i6ssgmo] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 3px;
    white-space: nowrap;
}

.gc-badge--ativo[b-sf2i6ssgmo] {
    background: rgba(0, 160, 144, 0.15);
    color: #4DD9CA;
    border: 1px solid rgba(0, 160, 144, 0.3);
}

.gc-badge--cancela[b-sf2i6ssgmo] {
    background: rgba(212, 138, 12, 0.12);
    color: #f2b25c;
    border: 1px solid rgba(212, 138, 12, 0.3);
}

.gc-btn-ativar[b-sf2i6ssgmo] {
    font-size: 12px;
    font-weight: 500;
    padding: 7px 14px;
    background: #00A090;
    color: #FAFCFB;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}
.gc-btn-ativar:hover:not(:disabled)[b-sf2i6ssgmo] { background: #00C6B2; }
.gc-btn-ativar:disabled[b-sf2i6ssgmo] { opacity: 0.5; cursor: not-allowed; }

.gc-btn-desativar[b-sf2i6ssgmo] {
    font-size: 12px;
    font-weight: 500;
    color: #f87171;
    background: none;
    border: 1px solid rgba(248, 113, 113, 0.3);
    border-radius: 5px;
    padding: 6px 12px;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}
.gc-btn-desativar:hover:not(:disabled)[b-sf2i6ssgmo] { background: rgba(248, 113, 113, 0.1); }
.gc-btn-desativar:disabled[b-sf2i6ssgmo] { opacity: 0.5; cursor: not-allowed; }

.gc-btn-reativar[b-sf2i6ssgmo] {
    font-size: 12px;
    font-weight: 500;
    color: #4DD9CA;
    background: none;
    border: 1px solid rgba(0, 160, 144, 0.3);
    border-radius: 5px;
    padding: 6px 12px;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}
.gc-btn-reativar:hover:not(:disabled)[b-sf2i6ssgmo] { background: rgba(0, 160, 144, 0.1); }
.gc-btn-reativar:disabled[b-sf2i6ssgmo] { opacity: 0.5; cursor: not-allowed; }

/* ── Passo de pagamento on-session ───────────── */
.gc-pagamento[b-sf2i6ssgmo] {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gc-pagamento-titulo[b-sf2i6ssgmo] {
    font-family: var(--va-font-display);
    font-size: 15px;
    font-weight: 600;
    color: #FAFCFB;
    margin: 0;
}

.gc-field[b-sf2i6ssgmo] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gc-label[b-sf2i6ssgmo] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #8DB8D4;
}

.gc-input[b-sf2i6ssgmo] {
    font-family: var(--va-font-body);
    font-size: 14px;
    padding: 10px 13px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #FAFCFB;
    outline: none;
    width: 100%;
    transition: border-color 0.18s, background 0.18s;
}
.gc-input[b-sf2i6ssgmo]::placeholder { color: rgba(141,184,212,0.35); }
.gc-input:focus[b-sf2i6ssgmo] { border-color: #00A090; background: rgba(255,255,255,0.08); }
.gc-input:disabled[b-sf2i6ssgmo] { opacity: 0.5; cursor: not-allowed; }

.gc-card-element[b-sf2i6ssgmo] {
    padding: 12px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    transition: border-color 0.18s;
    min-height: 42px;
}
.gc-card-element:focus-within[b-sf2i6ssgmo] { border-color: #00A090; }

.gc-card-row[b-sf2i6ssgmo] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.gc-checkbox[b-sf2i6ssgmo] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #8DB8D4;
    cursor: pointer;
    user-select: none;
}

/* ── Erro ────────────────────────────────────── */
.gc-error[b-sf2i6ssgmo] {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.2);
    border-radius: 6px;
    font-size: 13px;
    color: #fda4af;
}
.gc-error svg[b-sf2i6ssgmo] { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Footer do passo de pagamento ────────────── */
.gc-pagamento-footer[b-sf2i6ssgmo] {
    display: flex;
    gap: 10px;
}

.gc-btn-cancelar[b-sf2i6ssgmo] {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    color: #8DB8D4;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
}
.gc-btn-cancelar:hover:not(:disabled)[b-sf2i6ssgmo] { background: rgba(255,255,255,0.1); }
.gc-btn-cancelar:disabled[b-sf2i6ssgmo] { opacity: 0.5; cursor: not-allowed; }

.gc-btn-pagar[b-sf2i6ssgmo] {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--va-font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 12px;
    background: #00A090;
    color: #FAFCFB;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.18s, transform 0.18s;
}
.gc-btn-pagar:hover:not(:disabled)[b-sf2i6ssgmo] { background: #00C6B2; transform: translateY(-1px); }
.gc-btn-pagar:disabled[b-sf2i6ssgmo] { opacity: 0.5; cursor: not-allowed; }

.gc-spinner[b-sf2i6ssgmo] {
    width: 14px; height: 14px;
    border: 2px solid rgba(255,255,255,0.25);
    border-top-color: #fff;
    border-radius: 50%;
    animation: gc-spin-b-sf2i6ssgmo 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes gc-spin-b-sf2i6ssgmo { to { transform: rotate(360deg); } }
@keyframes gc-fade-b-sf2i6ssgmo { from { opacity: 0; } to { opacity: 1; } }
@keyframes gc-in-b-sf2i6ssgmo {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Mobile ──────────────────────────────────── */
@media (max-width: 600px) {
    .gc-item[b-sf2i6ssgmo] {
        flex-direction: column;
        align-items: stretch;
    }
    .gc-item-actions[b-sf2i6ssgmo] {
        justify-content: flex-end;
    }
    .gc-card-row[b-sf2i6ssgmo] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Modals/LoginModal.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════
   LoginModal.razor.css
   ═══════════════════════════════════════════════════════════════ */

/* ── Backdrop ───────────────────────────────────────────────── */
.lm-backdrop[b-rtue0xc0me] {
    position: fixed;
    inset: 0;
    background: rgba(5, 14, 20, 0.82);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
    animation: lm-fade-in-b-rtue0xc0me 0.18s ease;
}

/* ── Wrapper (centering) ────────────────────────────────────── */
.lm-wrapper[b-rtue0xc0me] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: lm-slide-in-b-rtue0xc0me 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Panel ──────────────────────────────────────────────────── */
.lm-panel[b-rtue0xc0me] {
    width: 100%;
    max-width: 420px;
    background: #0D2B3E;
    border: 1px solid rgba(0, 160, 144, 0.18);
    border-radius: 10px;
    padding: 36px 36px 28px;
    box-shadow: 0 24px 64px rgba(5, 14, 20, 0.6),
                0 0 0 1px rgba(0, 198, 178, 0.06);
    position: relative;
}

/* ── Header ─────────────────────────────────────────────────── */
.lm-header[b-rtue0xc0me] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.lm-brand[b-rtue0xc0me] {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.lm-brand-icon[b-rtue0xc0me] {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.lm-brand-text[b-rtue0xc0me] {
    font-family: var(--va-font-display);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: #C4DDE9;
    line-height: 1;
}

.lm-brand-text em[b-rtue0xc0me] {
    font-style: normal;
    color: #00C6B2;
}

.lm-close[b-rtue0xc0me] {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    color: #8DB8D4;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
}

.lm-close svg[b-rtue0xc0me] {
    width: 16px;
    height: 16px;
}

.lm-close:hover[b-rtue0xc0me] {
    background: rgba(255,255,255,0.1);
    color: #FAFCFB;
}

/* ── Intro ──────────────────────────────────────────────────── */
.lm-intro[b-rtue0xc0me] {
    margin-bottom: 24px;
}

.lm-title[b-rtue0xc0me] {
    font-family: var(--va-font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #FAFCFB;
    margin: 0 0 4px;
}

.lm-subtitle[b-rtue0xc0me] {
    font-size: 13px;
    font-weight: 300;
    color: #8DB8D4;
    margin: 0;
}

/* ── Error ──────────────────────────────────────────────────── */
.lm-error[b-rtue0xc0me] {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.2);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    color: #fca5a5;
    margin-bottom: 20px;
}

.lm-error svg[b-rtue0xc0me] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ── Campos ─────────────────────────────────────────────────── */
.lm-field[b-rtue0xc0me] {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
}

.lm-field label[b-rtue0xc0me] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8DB8D4;
}

.lm-input[b-rtue0xc0me] {
    font-family: var(--va-font-body);
    font-size: 14px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #FAFCFB;
    outline: none;
    transition: border-color 0.18s, background 0.18s;
    width: 100%;
}

.lm-input[b-rtue0xc0me]::placeholder {
    color: rgba(141, 184, 212, 0.35);
}

.lm-input:focus[b-rtue0xc0me] {
    border-color: #00A090;
    background: rgba(255, 255, 255, 0.08);
}

.lm-input:disabled[b-rtue0xc0me] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Password wrapper */
.lm-password-wrap[b-rtue0xc0me] {
    position: relative;
}

.lm-input-password[b-rtue0xc0me] {
    padding-right: 44px;
}

.lm-eye[b-rtue0xc0me] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #3A7CA5;
    cursor: pointer;
    transition: color 0.15s;
    padding: 0;
}

.lm-eye svg[b-rtue0xc0me] {
    width: 17px;
    height: 17px;
}

.lm-eye:hover[b-rtue0xc0me] {
    color: #8DB8D4;
}

/* Validation messages */
[b-rtue0xc0me] .lm-validation { font-size: 11px; color: #fda4af; }
[b-rtue0xc0me] .validation-message { font-size: 11px; color: #fda4af; }

/* ── Recover link ────────────────────────────────────────────── */
.lm-recover-row[b-rtue0xc0me] {
    display: flex;
    justify-content: flex-end;
    margin: -4px 0 20px;
}

/* ── Links genéricos ─────────────────────────────────────────── */
.lm-link[b-rtue0xc0me] {
    font-family: var(--va-font-body);
    font-size: 12px;
    color: #3A7CA5;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.15s;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(58, 124, 165, 0.4);
}

.lm-link:hover[b-rtue0xc0me] {
    color: #8DB8D4;
    text-decoration-color: rgba(141, 184, 212, 0.5);
}

/* ── Botão de submit ─────────────────────────────────────────── */
.lm-btn-submit[b-rtue0xc0me] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    font-family: var(--va-font-body);
    font-size: 15px;
    font-weight: 500;
    padding: 12px;
    background: #00A090;
    color: #FAFCFB;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s;
    margin-bottom: 4px;
}

.lm-btn-submit svg[b-rtue0xc0me] {
    width: 15px;
    height: 15px;
}

.lm-btn-submit:hover:not(:disabled)[b-rtue0xc0me] {
    background: #00C6B2;
    transform: translateY(-1px);
}

.lm-btn-submit:disabled[b-rtue0xc0me] {
    opacity: 0.55;
    cursor: not-allowed;
}

/* ── Spinner ─────────────────────────────────────────────────── */
.lm-spinner[b-rtue0xc0me] {
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-top-color: #FAFCFB;
    border-radius: 50%;
    animation: lm-spin-b-rtue0xc0me 0.7s linear infinite;
    flex-shrink: 0;
}

/* ── Footer ──────────────────────────────────────────────────── */
.lm-footer[b-rtue0xc0me] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 13px;
    color: #3A7CA5;
}

.lm-link-register[b-rtue0xc0me] {
    font-size: 13px;
    color: #4DD9CA;
    font-weight: 500;
    text-decoration-color: rgba(77, 217, 202, 0.4);
}

.lm-link-register:hover[b-rtue0xc0me] {
    color: #99EBE3;
    text-decoration-color: rgba(153, 235, 227, 0.5);
}

/* ── Animações ───────────────────────────────────────────────── */
@keyframes lm-fade-in-b-rtue0xc0me {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes lm-slide-in-b-rtue0xc0me {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

@keyframes lm-spin-b-rtue0xc0me {
    to { transform: rotate(360deg); }
}

/* ── Responsivo ──────────────────────────────────────────────── */
@media (max-width: 480px) {
    .lm-panel[b-rtue0xc0me] {
        padding: 28px 22px 24px;
        border-radius: 12px 12px 0 0;
    }

    .lm-wrapper[b-rtue0xc0me] {
        align-items: flex-end;
        padding: 0;
    }
}
/* /Components/Modals/LogoutModal.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════
   LogoutModal.razor.css
   ═══════════════════════════════════════════════════════════════ */

/* ── Backdrop ───────────────────────────────────────────────── */
.lout-backdrop[b-f0rxj16bem] {
    position: fixed;
    inset: 0;
    background: rgba(5, 14, 20, 0.82);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
    animation: lout-fade-in-b-f0rxj16bem 0.18s ease;
}

/* ── Wrapper ────────────────────────────────────────────────── */
.lout-wrapper[b-f0rxj16bem] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: lout-slide-in-b-f0rxj16bem 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Panel ──────────────────────────────────────────────────── */
.lout-panel[b-f0rxj16bem] {
    width: 100%;
    max-width: 360px;
    background: #0D2B3E;
    border: 1px solid rgba(0, 160, 144, 0.15);
    border-radius: 10px;
    padding: 40px 32px 32px;
    box-shadow: 0 24px 64px rgba(5, 14, 20, 0.6),
                0 0 0 1px rgba(0, 198, 178, 0.05);
    text-align: center;
}

/* ── Ícone ──────────────────────────────────────────────────── */
.lout-icon-wrap[b-f0rxj16bem] {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.lout-icon-wrap svg[b-f0rxj16bem] {
    width: 52px;
    height: 52px;
}

/* ── Texto ──────────────────────────────────────────────────── */
.lout-title[b-f0rxj16bem] {
    font-family: var(--va-font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: #FAFCFB;
    margin: 0 0 10px;
}

.lout-body[b-f0rxj16bem] {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: #8DB8D4;
    margin: 0 0 32px;
}

/* ── Ações ──────────────────────────────────────────────────── */
.lout-actions[b-f0rxj16bem] {
    display: flex;
    gap: 10px;
}

.lout-btn-cancel[b-f0rxj16bem] {
    flex: 1;
    font-family: var(--va-font-body);
    font-size: 14px;
    font-weight: 400;
    padding: 11px;
    background: transparent;
    color: #8DB8D4;
    border: 1px solid rgba(141, 184, 212, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.18s, color 0.18s;
}

.lout-btn-cancel:hover[b-f0rxj16bem] {
    border-color: rgba(141, 184, 212, 0.45);
    color: #C4DDE9;
}

.lout-btn-confirm[b-f0rxj16bem] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--va-font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 11px;
    background: rgba(0, 107, 95, 0.25);
    color: #4DD9CA;
    border: 1px solid rgba(0, 160, 144, 0.3);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, transform 0.15s;
}

.lout-btn-confirm svg[b-f0rxj16bem] {
    width: 15px;
    height: 15px;
}

.lout-btn-confirm:hover:not(:disabled)[b-f0rxj16bem] {
    background: rgba(0, 107, 95, 0.4);
    border-color: rgba(0, 160, 144, 0.5);
    transform: translateY(-1px);
}

.lout-btn-confirm:disabled[b-f0rxj16bem] {
    opacity: 0.55;
    cursor: not-allowed;
}

/* ── Spinner ─────────────────────────────────────────────────── */
.lout-spinner[b-f0rxj16bem] {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(77, 217, 202, 0.25);
    border-top-color: #4DD9CA;
    border-radius: 50%;
    animation: lout-spin-b-f0rxj16bem 0.7s linear infinite;
    flex-shrink: 0;
}

/* ── Animações ───────────────────────────────────────────────── */
@media (max-width: 480px) {
    .lout-wrapper[b-f0rxj16bem] { align-items: flex-end; padding: 0 16px 16px; }
    .lout-panel[b-f0rxj16bem]   { border-radius: 14px 14px 10px 10px; }
}

@keyframes lout-fade-in-b-f0rxj16bem {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes lout-slide-in-b-f0rxj16bem {
    from { opacity: 0; transform: translateY(10px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

@keyframes lout-spin-b-f0rxj16bem {
    to { transform: rotate(360deg); }
}
/* /Components/Modals/PagamentoModal.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   PagamentoModal.razor.css
   ═══════════════════════════════════════════════ */

.pm-backdrop[b-j93qm7szx3] {
    position: fixed;
    inset: 0;
    background: rgba(5, 14, 20, 0.85);
    backdrop-filter: blur(4px);
    z-index: 1040;
    animation: pm-fade-b-j93qm7szx3 0.18s ease;
}

.pm-wrapper[b-j93qm7szx3] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: pm-in-b-j93qm7szx3 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-panel[b-j93qm7szx3] {
    width: 100%;
    max-width: 480px;
    background: #0D2B3E;
    border: 1px solid rgba(0, 160, 144, 0.2);
    border-radius: 12px;
    box-shadow: 0 28px 72px rgba(5, 14, 20, 0.65),
                0 0 0 1px rgba(0, 198, 178, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 92vh;
}

/* Painel largo — modo de pagamento normal, com as duas zonas lado a lado */
.pm-panel--largo[b-j93qm7szx3] {
    max-width: 900px;
}

/* ── Cabeçalho ───────────────────────────────── */
.pm-header[b-j93qm7szx3] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 28px 0;
}

.pm-eyebrow[b-j93qm7szx3] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00A090;
    margin-bottom: 4px;
}

.pm-title[b-j93qm7szx3] {
    font-family: var(--va-font-display);
    font-size: 20px;
    font-weight: 700;
    color: #FAFCFB;
    margin: 0;
}

.pm-close[b-j93qm7szx3] {
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: #6A8590;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}
.pm-close svg[b-j93qm7szx3] { width: 14px; height: 14px; }
.pm-close:hover:not(:disabled)[b-j93qm7szx3] { background: rgba(255,255,255,0.1); color: #FAFCFB; }
.pm-close:disabled[b-j93qm7szx3] { opacity: 0.4; cursor: not-allowed; }

/* ── Body ────────────────────────────────────── */
.pm-body[b-j93qm7szx3] {
    padding: 20px 28px 8px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ── Duas zonas: cálculo (esquerda/topo) + pagamento (direita/baixo) ── */
.pm-body--duas-zonas[b-j93qm7szx3] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    overflow-y: auto;
}

.pm-zona[b-j93qm7szx3] {
    padding: 20px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.pm-zona-calculo[b-j93qm7szx3] {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.pm-zona-titulo[b-j93qm7szx3] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #4DD9CA;
}

.pm-zona-pagamento[b-j93qm7szx3] {
    display: flex;
    flex-direction: column;
}

.pm-zona-pagamento-footer[b-j93qm7szx3] {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
}

/* ── Lista de complementos ───────────────────── */
.pm-complementos-lista[b-j93qm7szx3] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pm-complemento-item[b-j93qm7szx3] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 7px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.pm-complemento-item:hover[b-j93qm7szx3] {
    border-color: rgba(0, 160, 144, 0.35);
    background: rgba(0, 160, 144, 0.05);
}

.pm-complemento-item input[type="checkbox"][b-j93qm7szx3] { display: none; }

.pm-complemento-check[b-j93qm7szx3] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border: 1.5px solid rgba(141, 184, 212, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: background 0.15s, border-color 0.15s;
}

.pm-complemento-item input:checked + .pm-complemento-check[b-j93qm7szx3] {
    background: #00A090;
    border-color: #00A090;
    color: #fff;
}

.pm-complemento-check svg[b-j93qm7szx3] { width: 10px; height: 10px; }

.pm-complemento-info[b-j93qm7szx3] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pm-complemento-nome[b-j93qm7szx3] {
    font-size: 13px;
    font-weight: 500;
    color: #FAFCFB;
}

.pm-complemento-desc[b-j93qm7szx3] {
    font-size: 11.5px;
    color: #8DB8D4;
    line-height: 1.5;
}

.pm-complemento-preco[b-j93qm7szx3] {
    font-family: var(--va-font-display);
    font-size: 13px;
    font-weight: 600;
    color: #4DD9CA;
    white-space: nowrap;
    flex-shrink: 0;
}

.pm-complemento-preco small[b-j93qm7szx3] {
    font-size: 10px;
    font-weight: 400;
    color: #6A8590;
}

.pm-total-row--pagamento[b-j93qm7szx3] {
    background: rgba(0, 160, 144, 0.08);
    border: 1px solid rgba(0, 160, 144, 0.18);
}

.pm-total-row--atraso[b-j93qm7szx3] {
    background: rgba(217, 119, 6, 0.08);
    border: 1px solid rgba(217, 119, 6, 0.18);
}
.pm-total-row--atraso strong[b-j93qm7szx3] {
    color: #F0B429;
}

/* ── Info produto ────────────────────────────── */
.pm-produto-info[b-j93qm7szx3] {
    background: rgba(0, 160, 144, 0.06);
    border: 1px solid rgba(0, 160, 144, 0.12);
    border-radius: 8px;
    padding: 14px 16px;
}

.pm-preco-row[b-j93qm7szx3] {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pm-preco[b-j93qm7szx3] {
    font-family: var(--va-font-display);
    font-size: 26px;
    font-weight: 700;
    color: #FAFCFB;
}

.pm-preco-label[b-j93qm7szx3] {
    font-size: 13px;
    color: #8DB8D4;
}

/* ── Field ───────────────────────────────────── */
.pm-field[b-j93qm7szx3] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pm-label[b-j93qm7szx3] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #8DB8D4;
}

.pm-input[b-j93qm7szx3] {
    font-family: var(--va-font-body);
    font-size: 14px;
    padding: 10px 13px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #FAFCFB;
    outline: none;
    width: 100%;
    transition: border-color 0.18s, background 0.18s;
}
.pm-input[b-j93qm7szx3]::placeholder { color: rgba(141,184,212,0.35); }
.pm-input:focus[b-j93qm7szx3] { border-color: #00A090; background: rgba(255,255,255,0.08); }
.pm-input:disabled[b-j93qm7szx3] { opacity: 0.5; cursor: not-allowed; }

/* ── Seletor de plano ────────────────────────── */
.pm-planos-grid[b-j93qm7szx3] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.pm-plano-btn[b-j93qm7szx3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s;
    text-align: center;
}

.pm-plano-btn:hover:not(:disabled)[b-j93qm7szx3] {
    border-color: rgba(0,160,144,0.4);
    background: rgba(0,160,144,0.06);
}

.pm-plano-btn:disabled[b-j93qm7szx3] { opacity: 0.5; cursor: not-allowed; }

.pm-plano-nome[b-j93qm7szx3] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8DB8D4;
}

.pm-plano-preco[b-j93qm7szx3] {
    font-family: var(--va-font-display);
    font-size: 17px;
    font-weight: 700;
    color: #FAFCFB;
    line-height: 1;
}

.pm-plano-preco small[b-j93qm7szx3] {
    font-size: 10px;
    font-weight: 400;
    color: #6A8590;
    margin-left: 1px;
}

/* Estado activo — borda teal, fundo ligeiro */
.pm-plano-btn--active[b-j93qm7szx3] {
    border-color: #00A090;
    background: rgba(0,160,144,0.12);
}

.pm-plano-btn--active .pm-plano-nome[b-j93qm7szx3] { color: #4DD9CA; }
.pm-plano-btn--active .pm-plano-preco[b-j93qm7szx3] { color: #FAFCFB; }

/* Variante Enterprise — fundo navy mais escuro quando activo */
.pm-plano-btn--enterprise.pm-plano-btn--active[b-j93qm7szx3] {
    background: rgba(13,43,62,0.7);
    border-color: #C4DDE9;
}
.pm-plano-btn--enterprise.pm-plano-btn--active .pm-plano-nome[b-j93qm7szx3] { color: #C4DDE9; }

/* ── Seletor de meses ────────────────────────── */
.pm-meses-grid[b-j93qm7szx3] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.pm-mes-btn[b-j93qm7szx3] {
    padding: 9px 6px;
    font-family: var(--va-font-body);
    font-size: 13px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #8DB8D4;
    cursor: pointer;
    transition: all 0.15s;
    text-align: center;
}
.pm-mes-btn:hover[b-j93qm7szx3] { border-color: #00A090; color: #4DD9CA; }
.pm-mes-btn--active[b-j93qm7szx3] {
    border-color: #00A090;
    background: rgba(0, 160, 144, 0.15);
    color: #4DD9CA;
    font-weight: 500;
}

.pm-total-row[b-j93qm7szx3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    font-size: 13px;
    color: #8DB8D4;
}
.pm-total-row strong[b-j93qm7szx3] {
    font-size: 16px;
    color: #FAFCFB;
}

/* ── Info setup (cartão sem custo) ──────────── */
.pm-setup-info[b-j93qm7szx3] {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(0, 160, 144, 0.07);
    border: 1px solid rgba(0, 160, 144, 0.2);
    border-radius: 7px;
    padding: 12px 14px;
    margin-bottom: 16px;
}
.pm-setup-info svg[b-j93qm7szx3] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.pm-setup-info p[b-j93qm7szx3]   { margin: 0; font-size: 12px; color: #8DB8D4; line-height: 1.6; }
.pm-setup-info strong[b-j93qm7szx3] { color: #4DD9CA; }

.pm-nota-mensal[b-j93qm7szx3] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 13px;
    background: rgba(58, 124, 165, 0.08);
    border-left: 2px solid #3A7CA5;
    border-radius: 0 6px 6px 0;
    font-size: 12px;
    color: #8DB8D4;
    line-height: 1.6;
}

.pm-nota-mensal svg[b-j93qm7szx3]   { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.pm-nota-mensal p[b-j93qm7szx3]     { margin: 0; font-size: 12px; color: #8DB8D4; line-height: 1.6; }
.pm-nota-mensal strong[b-j93qm7szx3] { color: #C4DDE9; font-weight: 500; display: inline; }

/* ── Toggle renovação automática ─────────────── */
.pm-toggle-renovacao[b-j93qm7szx3] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
    cursor: pointer;
    user-select: none;
}

.pm-toggle-renovacao input[type="checkbox"][b-j93qm7szx3] { display: none; }

.pm-toggle-renovacao-check[b-j93qm7szx3] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border: 1.5px solid rgba(141, 184, 212, 0.3);
    border-radius: 4px;
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: background 0.15s, border-color 0.15s;
}

.pm-toggle-renovacao input:checked + .pm-toggle-renovacao-check[b-j93qm7szx3] {
    background: #00A090;
    border-color: #00A090;
    color: #fff;
}

.pm-toggle-renovacao-check svg[b-j93qm7szx3] { width: 10px; height: 10px; }

.pm-toggle-renovacao span:last-child[b-j93qm7szx3] {
    font-size: 12px;
    color: #8DB8D4;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pm-toggle-renovacao small[b-j93qm7szx3] {
    font-size: 11px;
    color: #4A6878;
}

/* ── Stripe card elements ────────────────────── */
.pm-card-element[b-j93qm7szx3] {
    padding: 12px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    transition: border-color 0.18s;
    min-height: 42px;
}
.pm-card-element:focus-within[b-j93qm7szx3] { border-color: #00A090; }

.pm-card-row[b-j93qm7szx3] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ── Erro ────────────────────────────────────── */
.pm-error[b-j93qm7szx3] {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.2);
    border-radius: 6px;
    font-size: 13px;
    color: #fda4af;
}
.pm-error svg[b-j93qm7szx3] { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Footer ──────────────────────────────────── */
.pm-footer[b-j93qm7szx3] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 28px 24px;
}

.pm-stripe-badge[b-j93qm7szx3] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: #6A8590;
}
.pm-stripe-badge svg[b-j93qm7szx3] { width: 12px; height: 12px; }

.pm-btn-pagar[b-j93qm7szx3] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-family: var(--va-font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 13px;
    background: #00A090;
    color: #FAFCFB;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s;
}
.pm-btn-pagar:hover:not(:disabled)[b-j93qm7szx3] { background: #00C6B2; transform: translateY(-1px); }
.pm-btn-pagar:disabled[b-j93qm7szx3] { opacity: 0.5; cursor: not-allowed; }

/* ── Sucesso ─────────────────────────────────── */
.pm-sucesso[b-j93qm7szx3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 36px 28px 36px;
    text-align: center;
}
.pm-sucesso svg[b-j93qm7szx3] { width: 56px; height: 56px; }
.pm-sucesso h3[b-j93qm7szx3] {
    font-family: var(--va-font-display);
    font-size: 20px;
    font-weight: 700;
    color: #FAFCFB;
    margin: 0;
}
.pm-sucesso p[b-j93qm7szx3] {
    font-size: 13px;
    font-weight: 300;
    color: #8DB8D4;
    margin: 0;
    line-height: 1.6;
}

.pm-btn-fechar[b-j93qm7szx3] {
    margin-top: 8px;
    padding: 11px 32px;
    font-family: var(--va-font-body);
    font-size: 14px;
    font-weight: 500;
    background: rgba(0,160,144,0.12);
    border: 1px solid rgba(0,160,144,0.3);
    border-radius: 6px;
    color: #4DD9CA;
    cursor: pointer;
    transition: background 0.15s;
}
.pm-btn-fechar:hover[b-j93qm7szx3] { background: rgba(0,160,144,0.22); }

/* ── Spinner ─────────────────────────────────── */
.pm-spinner[b-j93qm7szx3] {
    width: 14px; height: 14px;
    border: 2px solid rgba(255,255,255,0.25);
    border-top-color: #fff;
    border-radius: 50%;
    animation: pm-spin-b-j93qm7szx3 0.7s linear infinite;
    flex-shrink: 0;
}

/* ── Preço com desconto ──────────────────────── */
.pm-preco-original[b-j93qm7szx3] {
    font-size: 16px;
    color: rgba(141,184,212,0.5);
    text-decoration: line-through;
    margin-right: 6px;
}

.pm-preco--desconto[b-j93qm7szx3] {
    color: #4DD9CA;
}

/* ── Campo desconto ──────────────────────────── */
.pm-field--desconto[b-j93qm7szx3] {
    margin-bottom: 4px;
}

.pm-desconto-row[b-j93qm7szx3] {
    display: flex;
    gap: 8px;
}

.pm-input--desconto[b-j93qm7szx3] {
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pm-input--ok[b-j93qm7szx3]    { border-color: #00A090 !important; }
.pm-input--erro[b-j93qm7szx3]  { border-color: #f87171 !important; }

.pm-btn-validar[b-j93qm7szx3] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 16px;
    height: 40px;
    background: rgba(0,160,144,0.15);
    border: 1px solid rgba(0,160,144,0.35);
    border-radius: 8px;
    color: #4DD9CA;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, border-color 0.15s;
    flex-shrink: 0;
}

.pm-btn-validar:hover:not(:disabled)[b-j93qm7szx3] {
    background: rgba(0,160,144,0.28);
    border-color: #00A090;
}

.pm-btn-validar:disabled[b-j93qm7szx3] {
    opacity: 0.4;
    cursor: not-allowed;
}

.pm-spinner--sm[b-j93qm7szx3] {
    width: 12px;
    height: 12px;
    border-width: 1.5px;
}

.pm-codigo-msg[b-j93qm7szx3] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    margin: 5px 0 0;
}

.pm-codigo-msg svg[b-j93qm7szx3] { width: 13px; height: 13px; flex-shrink: 0; }

.pm-codigo-msg--ok[b-j93qm7szx3]   { color: #4DD9CA; }
.pm-codigo-msg--erro[b-j93qm7szx3] { color: #f87171; }

/* ── Animações ───────────────────────────────── */
@keyframes pm-fade-b-j93qm7szx3 { from { opacity: 0; } to { opacity: 1; } }
@keyframes pm-spin-b-j93qm7szx3  { to { transform: rotate(360deg); } }
@keyframes pm-in-b-j93qm7szx3 {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Duas zonas empilhadas (cálculo em cima, pagamento em baixo) — tablet/mobile */
@media (max-width: 768px) {
    .pm-panel--largo[b-j93qm7szx3] { max-width: 520px; }
    .pm-body--duas-zonas[b-j93qm7szx3] { grid-template-columns: 1fr; max-height: 80vh; }
    .pm-zona-calculo[b-j93qm7szx3] {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 540px) {
    .pm-wrapper[b-j93qm7szx3] { padding: 0; align-items: flex-end; }
    .pm-panel[b-j93qm7szx3] { border-radius: 16px 16px 0 0; max-width: 100%; }
    .pm-panel--largo[b-j93qm7szx3] { max-width: 100%; }
    .pm-meses-grid[b-j93qm7szx3] { grid-template-columns: repeat(2, 1fr); }
    .pm-body--duas-zonas[b-j93qm7szx3] { max-height: 75vh; }
}
/* /Components/Modals/RecoverPasswordModal.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   RecoverPasswordModal.razor.css
   ═══════════════════════════════════════════════ */

.rpm-backdrop[b-mg8sor4prl] {
    position: fixed;
    inset: 0;
    background: rgba(5, 14, 20, 0.82);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
    animation: rpm-fade-b-mg8sor4prl 0.18s ease;
}

.rpm-wrapper[b-mg8sor4prl] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: rpm-in-b-mg8sor4prl 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.rpm-panel[b-mg8sor4prl] {
    width: 100%;
    max-width: 420px;
    background: #0D2B3E;
    border: 1px solid rgba(0, 160, 144, 0.18);
    border-radius: 10px;
    padding: 32px 36px 28px;
    box-shadow: 0 24px 64px rgba(5, 14, 20, 0.6),
                0 0 0 1px rgba(0, 198, 178, 0.05);
    overflow: hidden;
}

/* ── Cabeçalho ───────────────────────────────── */
.rpm-header[b-mg8sor4prl] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

/* Steps */
.rpm-steps[b-mg8sor4prl] {
    display: flex;
    align-items: center;
    gap: 0;
}

.rpm-step[b-mg8sor4prl] {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid rgba(141, 184, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rpm-step span[b-mg8sor4prl] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    color: #3A7CA5;
}

.rpm-step svg[b-mg8sor4prl] {
    width: 10px;
    height: 10px;
    color: #00C6B2;
}

.rpm-step--active[b-mg8sor4prl] {
    border-color: #00A090;
    background: rgba(0, 160, 144, 0.15);
}

.rpm-step--active span[b-mg8sor4prl] { color: #4DD9CA; }

.rpm-step--done[b-mg8sor4prl] {
    border-color: #006B5F;
    background: rgba(0, 107, 95, 0.2);
}

.rpm-step--done span[b-mg8sor4prl] { color: #00C6B2; }

.rpm-step-line[b-mg8sor4prl] {
    width: 28px;
    height: 1px;
    background: rgba(141, 184, 212, 0.15);
}

.rpm-close[b-mg8sor4prl] {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6A8590;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.rpm-close svg[b-mg8sor4prl] { width: 14px; height: 14px; }
.rpm-close:hover[b-mg8sor4prl] { background: rgba(255,255,255,0.1); color: #FAFCFB; }

/* ── Intro ───────────────────────────────────── */
.rpm-intro[b-mg8sor4prl] { margin-bottom: 22px; }

.rpm-title[b-mg8sor4prl] {
    font-family: var(--va-font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: #FAFCFB;
    margin: 0 0 4px;
}

.rpm-subtitle[b-mg8sor4prl] {
    font-size: 13px;
    font-weight: 300;
    color: #8DB8D4;
    margin: 0;
    line-height: 1.6;
}

/* ── Erro ────────────────────────────────────── */
.rpm-error[b-mg8sor4prl] {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.2);
    border-radius: 6px;
    font-size: 13px;
    color: #fca5a5;
    margin-bottom: 18px;
}

.rpm-error svg[b-mg8sor4prl] { width: 15px; height: 15px; flex-shrink: 0; }

/* ── Campos ──────────────────────────────────── */
.rpm-field[b-mg8sor4prl] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
}

.rpm-field label[b-mg8sor4prl] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8DB8D4;
}

.rpm-input[b-mg8sor4prl] {
    font-family: var(--va-font-body);
    font-size: 14px;
    padding: 10px 13px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #FAFCFB;
    outline: none;
    width: 100%;
    transition: border-color 0.18s, background 0.18s;
}

.rpm-input[b-mg8sor4prl]::placeholder { color: rgba(141, 184, 212, 0.35); }
.rpm-input:focus[b-mg8sor4prl] { border-color: #00A090; background: rgba(255,255,255,0.08); }
.rpm-input:disabled[b-mg8sor4prl] { opacity: 0.5; cursor: not-allowed; }

.rpm-input-code[b-mg8sor4prl] {
    font-family: var(--va-font-mono);
    font-size: 22px;
    letter-spacing: 0.3em;
    text-align: center;
    padding: 12px;
}

.rpm-pw-wrap[b-mg8sor4prl] { position: relative; }

.rpm-input-pw[b-mg8sor4prl] { padding-right: 42px; }

.rpm-eye[b-mg8sor4prl] {
    position: absolute;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: none;
    border: none;
    color: #3A7CA5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s;
}

.rpm-eye svg[b-mg8sor4prl] { width: 16px; height: 16px; }
.rpm-eye:hover[b-mg8sor4prl] { color: #8DB8D4; }

[b-mg8sor4prl] .rpm-val { font-size: 11px; color: #fda4af; }
[b-mg8sor4prl] .validation-message { font-size: 11px; color: #fda4af; }

/* ── Botão principal ─────────────────────────── */
.rpm-btn-submit[b-mg8sor4prl] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-family: var(--va-font-body);
    font-size: 15px;
    font-weight: 500;
    padding: 12px;
    background: #00A090;
    color: #FAFCFB;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.18s, transform 0.15s;
}

.rpm-btn-submit svg[b-mg8sor4prl] { width: 14px; height: 14px; }

.rpm-btn-submit:hover:not(:disabled)[b-mg8sor4prl] {
    background: #00C6B2;
    transform: translateY(-1px);
}

.rpm-btn-submit:disabled[b-mg8sor4prl] { opacity: 0.55; cursor: not-allowed; }

/* ── Botão voltar ────────────────────────────── */
.rpm-btn-back[b-mg8sor4prl] {
    display: block;
    width: 100%;
    margin-top: 12px;
    background: none;
    border: none;
    font-size: 12px;
    color: #3A7CA5;
    cursor: pointer;
    text-align: center;
    transition: color 0.15s;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(58,124,165,0.35);
}

.rpm-btn-back:hover[b-mg8sor4prl] { color: #8DB8D4; }

/* ── Sucesso ─────────────────────────────────── */
.rpm-sucesso[b-mg8sor4prl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 20px 0 24px;
    text-align: center;
}

.rpm-sucesso svg[b-mg8sor4prl] { width: 52px; height: 52px; }

.rpm-sucesso p[b-mg8sor4prl] {
    font-size: 14px;
    font-weight: 300;
    color: #8DB8D4;
    margin: 0;
}

/* ── Spinner ─────────────────────────────────── */
.rpm-spinner[b-mg8sor4prl] {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.25);
    border-top-color: #fff;
    border-radius: 50%;
    animation: rpm-spin-b-mg8sor4prl 0.7s linear infinite;
}

/* ── Animações ───────────────────────────────── */
@keyframes rpm-fade-b-mg8sor4prl { from { opacity: 0; } to { opacity: 1; } }
@keyframes rpm-spin-b-mg8sor4prl { to { transform: rotate(360deg); } }
@keyframes rpm-in-b-mg8sor4prl {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
}
/* /Components/Modals/RegisterAccountModal.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   RegisterAccountModal.razor.css
   ═══════════════════════════════════════════════ */

.ram-backdrop[b-qdvcijlgqa] {
    position: fixed;
    inset: 0;
    background: rgba(5, 14, 20, 0.82);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
    animation: ram-fade-b-qdvcijlgqa 0.18s ease;
}

.ram-wrapper[b-qdvcijlgqa] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    animation: ram-in-b-qdvcijlgqa 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.ram-panel[b-qdvcijlgqa] {
    width: 100%;
    max-width: 580px;
    margin: auto;
    background: #0D2B3E;
    border: 1px solid rgba(0, 160, 144, 0.18);
    border-radius: 10px;
    box-shadow: 0 24px 64px rgba(5, 14, 20, 0.6),
                0 0 0 1px rgba(0, 198, 178, 0.05);
    display: flex;
    flex-direction: column;
}

/* ── Cabeçalho ───────────────────────────────── */
.ram-header[b-qdvcijlgqa] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px 0;
    flex-shrink: 0;
}

/* Steps — 4 agora */
.ram-steps[b-qdvcijlgqa] {
    display: flex;
    align-items: center;
}

.ram-step[b-qdvcijlgqa] {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid rgba(141, 184, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
}

.ram-step span[b-qdvcijlgqa] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    color: #3A7CA5;
}

.ram-step svg[b-qdvcijlgqa] {
    width: 10px;
    height: 10px;
    color: #00C6B2;
}

.ram-step--active[b-qdvcijlgqa] {
    border-color: #00A090;
    background: rgba(0, 160, 144, 0.15);
}

.ram-step--active span[b-qdvcijlgqa] { color: #4DD9CA; }

.ram-step--done[b-qdvcijlgqa] {
    border-color: #006B5F;
    background: rgba(0, 107, 95, 0.25);
}

.ram-step-line[b-qdvcijlgqa] {
    width: 20px;
    height: 1px;
    background: rgba(141, 184, 212, 0.15);
}

.ram-close[b-qdvcijlgqa] {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6A8590;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.ram-close svg[b-qdvcijlgqa] { width: 14px; height: 14px; }
.ram-close:hover[b-qdvcijlgqa] { background: rgba(255,255,255,0.1); color: #FAFCFB; }

/* ── Intro ───────────────────────────────────── */
.ram-intro[b-qdvcijlgqa] {
    padding: 16px 32px 0;
    flex-shrink: 0;
}

.ram-title[b-qdvcijlgqa] {
    font-family: var(--va-font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: #FAFCFB;
    margin: 0 0 4px;
}

.ram-subtitle[b-qdvcijlgqa] {
    font-size: 13px;
    font-weight: 300;
    color: #8DB8D4;
    margin: 0;
    line-height: 1.6;
}

.ram-subtitle strong[b-qdvcijlgqa] { color: #4DD9CA; font-weight: 500; }

/* ── Erro ────────────────────────────────────── */
.ram-error[b-qdvcijlgqa] {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 12px 32px 0;
    padding: 9px 13px;
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.2);
    border-radius: 6px;
    font-size: 13px;
    color: #fca5a5;
    flex-shrink: 0;
}

.ram-error svg[b-qdvcijlgqa] { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Body ────────────────────────────────────── */
.ram-body[b-qdvcijlgqa] {
    flex: 1;
    padding: 16px 32px 24px;
}

.ram-form-row[b-qdvcijlgqa] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
}

.ram-span-2[b-qdvcijlgqa] { grid-column: span 2; }

.ram-field[b-qdvcijlgqa] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ram-field label[b-qdvcijlgqa] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #8DB8D4;
}

.ram-input[b-qdvcijlgqa] {
    font-family: var(--va-font-body);
    font-size: 14px;
    padding: 9px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #FAFCFB;
    outline: none;
    width: 100%;
    transition: border-color 0.18s, background 0.18s;
}

.ram-input[b-qdvcijlgqa]::placeholder { color: rgba(141, 184, 212, 0.32); }
.ram-input:focus[b-qdvcijlgqa] { border-color: #00A090; background: rgba(255,255,255,0.08); }
.ram-input:disabled[b-qdvcijlgqa] { opacity: 0.5; cursor: not-allowed; }

[b-qdvcijlgqa] .ram-val { font-size: 11px; color: #fda4af; }
[b-qdvcijlgqa] .validation-message { font-size: 11px; color: #fda4af; }

/* Password */
.ram-pw-wrap[b-qdvcijlgqa] { position: relative; }
.ram-input-pw[b-qdvcijlgqa] { padding-right: 40px; }

.ram-eye[b-qdvcijlgqa] {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #3A7CA5;
    cursor: pointer;
    display: flex;
    padding: 4px;
    transition: color 0.15s;
}

.ram-eye svg[b-qdvcijlgqa] { width: 15px; height: 15px; }
.ram-eye:hover[b-qdvcijlgqa] { color: #8DB8D4; }

/* ── Linha de navegação (Voltar + Próximo) ───── */
.ram-nav-row[b-qdvcijlgqa] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
}

.ram-nav-row .ram-btn-submit[b-qdvcijlgqa] {
    flex: 1;
    margin-top: 0;
}

.ram-nav-row .ram-btn-back[b-qdvcijlgqa] {
    flex-shrink: 0;
}

/* ── Botão submit ────────────────────────────── */
.ram-btn-submit[b-qdvcijlgqa] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-family: var(--va-font-body);
    font-size: 15px;
    font-weight: 500;
    padding: 12px;
    background: #00A090;
    color: #FAFCFB;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.18s, transform 0.15s;
}

.ram-btn-submit svg[b-qdvcijlgqa] { width: 14px; height: 14px; }
.ram-btn-submit:hover:not(:disabled)[b-qdvcijlgqa] { background: #00C6B2; transform: translateY(-1px); }
.ram-btn-submit:disabled[b-qdvcijlgqa] { opacity: 0.55; cursor: not-allowed; }

/* ── Botão voltar ────────────────────────────── */
.ram-btn-back[b-qdvcijlgqa] {
    background: none;
    border: none;
    font-size: 13px;
    color: #3A7CA5;
    cursor: pointer;
    transition: color 0.15s;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(58,124,165,0.35);
    padding: 0;
}

.ram-btn-back:hover[b-qdvcijlgqa] { color: #8DB8D4; }
.ram-btn-back:disabled[b-qdvcijlgqa] { opacity: 0.4; cursor: not-allowed; }

.ram-btn-back--center[b-qdvcijlgqa] {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

/* ── Código ──────────────────────────────────── */
.ram-codigo-wrap[b-qdvcijlgqa] {
    padding: 8px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ram-input-code[b-qdvcijlgqa] {
    font-family: var(--va-font-mono);
    font-size: 28px;
    letter-spacing: 0.4em;
    text-align: center;
    padding: 16px;
}

/* ── Sucesso ─────────────────────────────────── */
.ram-sucesso[b-qdvcijlgqa] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 28px 32px 32px;
    text-align: center;
}

.ram-sucesso svg[b-qdvcijlgqa] { width: 52px; height: 52px; }

.ram-sucesso p[b-qdvcijlgqa] {
    font-size: 14px;
    font-weight: 300;
    color: #8DB8D4;
    margin: 0;
    line-height: 1.7;
}

/* ── Spinner ─────────────────────────────────── */
.ram-spinner[b-qdvcijlgqa] {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.25);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ram-spin-b-qdvcijlgqa 0.7s linear infinite;
}

/* ── Animações ───────────────────────────────── */
@keyframes ram-fade-b-qdvcijlgqa { from { opacity: 0; } to { opacity: 1; } }
@keyframes ram-spin-b-qdvcijlgqa { to { transform: rotate(360deg); } }
@keyframes ram-in-b-qdvcijlgqa {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

@media (max-width: 640px) {
    .ram-wrapper[b-qdvcijlgqa] { padding: 0; align-items: flex-start; }
    .ram-panel[b-qdvcijlgqa] { border-radius: 0; margin: 0; }
    .ram-form-row[b-qdvcijlgqa] { grid-template-columns: 1fr; }
    .ram-span-2[b-qdvcijlgqa] { grid-column: span 1; }
    .ram-body[b-qdvcijlgqa], .ram-header[b-qdvcijlgqa], .ram-intro[b-qdvcijlgqa],
    .ram-error[b-qdvcijlgqa], .ram-codigo-wrap[b-qdvcijlgqa], .ram-sucesso[b-qdvcijlgqa] {
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* /Components/Modals/SubscricaoFaturasModal.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   SubscricaoFaturasModal.razor.css
   ═══════════════════════════════════════════════ */

.sfm-backdrop[b-gvcr01l93r] {
    position: fixed;
    inset: 0;
    background: rgba(5, 14, 20, 0.7);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1040;
    animation: sfm-fade-b-gvcr01l93r 0.18s ease;
}

.sfm-wrapper[b-gvcr01l93r] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: sfm-in-b-gvcr01l93r 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.sfm-panel[b-gvcr01l93r] {
    width: 100%;
    max-width: 520px;
    background: #FAFCFB;
    border: 1px solid #DDE7EB;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(5, 14, 20, 0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

/* ── Cabeçalho ───────────────────────────────── */
.sfm-header[b-gvcr01l93r] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 22px 24px 18px;
    border-bottom: 1px solid #DDE7EB;
    flex-shrink: 0;
}

.sfm-eyebrow[b-gvcr01l93r] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #006B5F;
    margin-bottom: 4px;
}

.sfm-title[b-gvcr01l93r] {
    font-family: var(--va-font-display);
    font-size: 18px;
    font-weight: 700;
    color: #0D2B3E;
    margin: 0;
    letter-spacing: -0.2px;
}

.sfm-close[b-gvcr01l93r] {
    width: 28px;
    height: 28px;
    background: #F2F6F7;
    border: 1px solid #DDE7EB;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6A8590;
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0;
}

.sfm-close svg[b-gvcr01l93r] { width: 14px; height: 14px; }
.sfm-close:hover[b-gvcr01l93r] { background: #DDE7EB; color: #0D2B3E; }

/* ── Body ────────────────────────────────────── */
.sfm-body[b-gvcr01l93r] {
    padding: 20px 24px 24px;
    overflow-y: auto;
}

.sfm-loading[b-gvcr01l93r] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 32px 0;
    font-size: 14px;
    color: #6A8590;
}

.sfm-spinner[b-gvcr01l93r] {
    width: 16px;
    height: 16px;
    border: 2px solid #DDE7EB;
    border-top-color: #006B5F;
    border-radius: 50%;
    animation: sfm-spin-b-gvcr01l93r 0.7s linear infinite;
}

.sfm-empty[b-gvcr01l93r] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px 0;
    color: #96AEBC;
    font-size: 14px;
    text-align: center;
}

.sfm-empty svg[b-gvcr01l93r] { width: 40px; height: 40px; }
.sfm-empty p[b-gvcr01l93r] { margin: 0; }

.sfm-section-label[b-gvcr01l93r] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #96AEBC;
    margin-bottom: 12px;
}

/* ── Faturas ─────────────────────────────────── */
.sfm-faturas-list[b-gvcr01l93r] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sfm-fatura-row[b-gvcr01l93r] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #F2F6F7;
    border: 1px solid #DDE7EB;
    border-radius: 7px;
    transition: border-color 0.15s;
}

.sfm-fatura-row:hover[b-gvcr01l93r] { border-color: #C4DDE9; }

.sfm-fatura-icon[b-gvcr01l93r] {
    width: 34px;
    height: 34px;
    background: #E6FAF8;
    border: 1px solid #CCF5F1;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #006B5F;
    flex-shrink: 0;
}

.sfm-fatura-icon svg[b-gvcr01l93r] { width: 16px; height: 16px; }

.sfm-fatura-info[b-gvcr01l93r] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.sfm-fatura-validade[b-gvcr01l93r] {
    font-size: 14px;
    font-weight: 500;
    color: #0D2B3E;
}

.sfm-fatura-estado[b-gvcr01l93r] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
}

.sfm-ativo[b-gvcr01l93r]   { color: #006B5F; }
.sfm-inativo[b-gvcr01l93r] { color: #96AEBC; }

.sfm-btn-download[b-gvcr01l93r] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    background: #FAFCFB;
    color: #006B5F;
    border: 1px solid rgba(0, 107, 95, 0.25);
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    flex-shrink: 0;
}

.sfm-btn-download svg[b-gvcr01l93r] { width: 13px; height: 13px; }

.sfm-btn-download:hover[b-gvcr01l93r] {
    background: rgba(0, 107, 95, 0.06);
    border-color: rgba(0, 107, 95, 0.4);
}

/* ── Animações ───────────────────────────────── */
@keyframes sfm-fade-b-gvcr01l93r { from { opacity: 0; } to { opacity: 1; } }
@keyframes sfm-spin-b-gvcr01l93r { to { transform: rotate(360deg); } }
@keyframes sfm-in-b-gvcr01l93r {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
}
/* /Components/Pages/Ajuda.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   Ajuda.razor.css
   Paleta brandbook VetAqua v2.0
   ═══════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────── */
.hj-hero[b-161btbqllg] {
    background: #0D2B3E; /* navy-800 */
    padding: 72px 24px 64px;
    position: relative;
    overflow: hidden;
}

.hj-hero[b-161btbqllg]::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, #006B5F 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.hj-container[b-161btbqllg] {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}

.hj-eyebrow[b-161btbqllg] {
    display: block;
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #4DD9CA; /* teal-300 */
    margin-bottom: 12px;
}

.hj-title[b-161btbqllg] {
    font-family: var(--va-font-display);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #FAFCFB; /* white */
    margin: 0 0 12px;
}

.hj-subtitle[b-161btbqllg] {
    font-family: var(--va-font-body);
    font-size: 16px;
    color: #99EBE3; /* teal-200 */
    margin: 0;
    line-height: 1.55;
    font-weight: 300;
}

/* ── Body ──────────────────────────────────── */
.hj-body[b-161btbqllg] {
    background: #F2F6F7; /* neutral-50 */
    padding: 48px 24px 80px;
}

/* ── Tabs ──────────────────────────────────── */
.hj-tabs[b-161btbqllg] {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid #DDE7EB; /* neutral-100 */
    margin-bottom: 32px;
}

.hj-tab[b-161btbqllg] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--va-font-body);
    font-size: 14px;
    font-weight: 400;
    padding: 10px 20px 12px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    color: #6A8590; /* neutral-400 */
    cursor: pointer;
    transition: color 0.18s, border-color 0.18s;
    border-radius: 4px 4px 0 0;
}

.hj-tab svg[b-161btbqllg] {
    width: 16px;
    height: 16px;
}

.hj-tab:hover[b-161btbqllg] {
    color: #1E2F35; /* neutral-800 */
    background: #DDE7EB; /* neutral-100 */
}

.hj-tab--active[b-161btbqllg] {
    color: #006B5F; /* teal-700 */
    font-weight: 500;
    border-bottom-color: #006B5F;
}

.hj-tab--active:hover[b-161btbqllg] {
    background: none;
}

/* ── Content ────────────────────────────────── */
.hj-content[b-161btbqllg] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* ── Accordion ──────────────────────────────── */
.hj-acc[b-161btbqllg] {
    background: #FAFCFB; /* white */
    border: 1px solid #DDE7EB; /* neutral-100 */
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.18s;
}

.hj-acc--open[b-161btbqllg] {
    box-shadow: 0 2px 12px rgba(0, 107, 95, 0.08);
}

.hj-acc-header[b-161btbqllg] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 12px;
    transition: background 0.15s;
}

.hj-acc-header:hover[b-161btbqllg] {
    background: #F2F6F7; /* neutral-50 */
}

.hj-acc-title[b-161btbqllg] {
    font-family: var(--va-font-body);
    font-size: 15px;
    font-weight: 500;
    color: #1E2F35; /* neutral-800 */
    line-height: 1.4;
}

.hj-acc-chevron[b-161btbqllg] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #6A8590; /* neutral-400 */
    transition: transform 0.2s;
}

.hj-acc--open .hj-acc-chevron[b-161btbqllg] {
    transform: rotate(180deg);
}

.hj-acc-body[b-161btbqllg] {
    padding: 0 22px 22px;
    animation: hj-fade-b-161btbqllg 0.18s ease;
}

.hj-acc-body p[b-161btbqllg],
.hj-acc-body ol[b-161btbqllg],
.hj-acc-body ul[b-161btbqllg] {
    font-family: var(--va-font-body);
    font-size: 14px;
    color: #3D5560; /* neutral-600 */
    line-height: 1.65;
    margin: 0 0 14px;
    font-weight: 300;
}

.hj-acc-body ol[b-161btbqllg],
.hj-acc-body ul[b-161btbqllg] {
    padding-left: 20px;
}

.hj-acc-body li[b-161btbqllg] {
    margin-bottom: 6px;
}

.hj-acc-body h4[b-161btbqllg] {
    font-family: var(--va-font-display);
    font-size: 13px;
    font-weight: 600;
    color: #1E2F35; /* neutral-800 */
    letter-spacing: 0.02em;
    margin: 18px 0 8px;
}

.hj-acc-body strong[b-161btbqllg] {
    color: #1E2F35; /* neutral-800 */
    font-weight: 600;
}

@keyframes hj-fade-b-161btbqllg {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Note (callout) ─────────────────────────── */
.hj-note[b-161btbqllg] {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    background: #E6FAF8; /* teal-50 */
    border-left: 3px solid #00A090; /* teal-500 */
    border-radius: 0 6px 6px 0;
    padding: 11px 14px;
    font-family: var(--va-font-body);
    font-size: 13px;
    color: #004F45; /* teal-800 */
    line-height: 1.55;
    font-style: italic;
    margin-top: 4px;
    margin-bottom: 0;
}

.hj-note svg[b-161btbqllg] {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: #006B5F; /* teal-700 */
    margin-top: 1px;
}

/* ── Table ──────────────────────────────────── */
.hj-table-wrap[b-161btbqllg] {
    overflow-x: auto;
    margin: 12px 0 4px;
    border-radius: 8px;
    border: 1px solid #DDE7EB; /* neutral-100 */
}

.hj-table[b-161btbqllg] {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--va-font-body);
    font-size: 13px;
}

.hj-table th[b-161btbqllg] {
    background: #F2F6F7; /* neutral-50 */
    color: #6A8590; /* neutral-400 */
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 9px 14px;
    text-align: left;
    border-bottom: 1px solid #DDE7EB;
}

.hj-table td[b-161btbqllg] {
    padding: 10px 14px;
    color: #3D5560; /* neutral-600 */
    border-bottom: 1px solid #F2F6F7; /* neutral-50 */
    vertical-align: middle;
    font-weight: 300;
}

.hj-table tr:last-child td[b-161btbqllg] {
    border-bottom: none;
}

/* ── Badges ─────────────────────────────────── */
.hj-badge[b-161btbqllg] {
    display: inline-block;
    font-family: var(--va-font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 2px 9px;
    border-radius: 2px;
}

/* Perfis */
.hj-badge--gestor[b-161btbqllg]      { background: #E6FAF8; color: #006B5F; border: 1px solid #99EBE3; } /* teal-50 / teal-700 / teal-200 */
.hj-badge--auditor[b-161btbqllg]     { background: #E8F3F9; color: #163D55; border: 1px solid #C4DDE9; } /* navy-50 / navy-700 / navy-100 */
.hj-badge--colaborador[b-161btbqllg] { background: #F2F6F7; color: #6A8590; border: 1px solid #DDE7EB; } /* neutral-50 / neutral-400 / neutral-100 */

/* Interno */
.hj-badge--tecnico[b-161btbqllg]      { background: #FFF8E1; color: #7A5500; border: 1px solid #FFE082; }

/* Perfis produto */
.hj-badge--admin[b-161btbqllg]        { background: #F3E5F5; color: #6A1B9A; border: 1px solid #CE93D8; }
.hj-badge--rqualidade[b-161btbqllg]   { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.hj-badge--auditor-ext[b-161btbqllg]  { background: #E3F2FD; color: #1565C0; border: 1px solid #90CAF9; }
.hj-badge--operacional[b-161btbqllg]  { background: #FFF3E0; color: #BF360C; border: 1px solid #FFCC80; }

/* Planos */
.hj-badge--basic[b-161btbqllg]  { background: #F2F6F7; color: #6A8590; border: 1px solid #DDE7EB; }
.hj-badge--inter[b-161btbqllg]  { background: #E8F3F9; color: #163D55; border: 1px solid #C4DDE9; }
.hj-badge--full[b-161btbqllg]   { background: #E6FAF8; color: #006B5F; border: 1px solid #99EBE3; }

/* ── Checklist grades ───────────────────────── */
/* Cores semânticas do brandbook: Pass #2E7D32, Warning #F57F17, Fail #C62828, Neutro #6A8590 */
.hj-grades[b-161btbqllg] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.hj-grade[b-161btbqllg] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--va-font-body);
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 4px;
    border: 1px solid transparent;
}

.hj-grade strong[b-161btbqllg] {
    font-family: var(--va-font-mono);
    font-size: 14px;
    font-weight: 500;
    min-width: 18px;
}

.hj-grade--a[b-161btbqllg]  { background: #E8F5E9; border-color: #A5D6A7; color: #1B5E20; } /* Pass */
.hj-grade--b[b-161btbqllg]  { background: #FFF8E1; border-color: #FFE082; color: #E65100; } /* Warning-light */
.hj-grade--c[b-161btbqllg]  { background: #FFF3E0; border-color: #FFCC80; color: #BF360C; } /* Warning */
.hj-grade--d[b-161btbqllg]  { background: #FFEBEE; border-color: #EF9A9A; color: #B71C1C; } /* Fail */
.hj-grade--na[b-161btbqllg] { background: #F2F6F7; border-color: #DDE7EB; color: #6A8590; } /* Neutro / neutral-400 */

/* ── Contact section ────────────────────────── */
.hj-contact-section[b-161btbqllg] {
    margin-top: 56px;
}

.hj-contact-header[b-161btbqllg] {
    text-align: center;
    margin-bottom: 28px;
}

.hj-contact-title[b-161btbqllg] {
    font-family: var(--va-font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #0D2B3E; /* navy-800 */
    margin: 0 0 6px;
}

.hj-contact-sub[b-161btbqllg] {
    font-family: var(--va-font-body);
    font-size: 14px;
    color: #6A8590; /* neutral-400 */
    margin: 0;
    font-weight: 300;
}

/* ── Form panel ─────────────────────────────── */
.hj-form-panel[b-161btbqllg] {
    background: #FAFCFB; /* white */
    border: 1px solid #DDE7EB; /* neutral-100 */
    border-radius: 14px;
    padding: 32px;
}

.hj-form-row-2[b-161btbqllg] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hj-form-group[b-161btbqllg] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.hj-form-group label[b-161btbqllg] {
    font-family: var(--va-font-body);
    font-size: 13px;
    font-weight: 500;
    color: #1E2F35; /* neutral-800 */
}

.hj-form-group label span[b-161btbqllg] {
    color: #006B5F;
}

.hj-input[b-161btbqllg] {
    font-family: var(--va-font-body);
    font-size: 14px;
    color: #1E2F35;
    background: #F2F6F7; /* neutral-50 */
    border: 1px solid #DDE7EB; /* neutral-100 */
    border-radius: 8px;
    padding: 10px 14px;
    outline: none;
    transition: border-color 0.18s, background 0.18s;
    width: 100%;
    box-sizing: border-box;
    appearance: none;
}

.hj-input:focus[b-161btbqllg] {
    border-color: #4DD9CA; /* teal-300 */
    background: #FAFCFB;
}

.hj-input[b-161btbqllg]::placeholder {
    color: #6A8590;
    font-weight: 300;
}

.hj-textarea[b-161btbqllg] {
    resize: vertical;
    min-height: 120px;
}

.hj-field-error[b-161btbqllg] {
    font-family: var(--va-font-body);
    font-size: 12px;
    color: #C62828; /* Fail */
    margin: 0;
}

.hj-form-erro[b-161btbqllg] {
    background: #FFEBEE;
    border: 1px solid #EF9A9A;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    color: #B71C1C;
    margin-bottom: 16px;
}

/* ── Submit button ──────────────────────────── */
.hj-btn-submit[b-161btbqllg] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #006B5F; /* teal-700 */
    color: #FAFCFB;
    font-family: var(--va-font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 11px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.18s;
    width: 100%;
    margin-top: 4px;
}

.hj-btn-submit:hover:not(:disabled)[b-161btbqllg] {
    background: #004F45; /* teal-800 */
}

.hj-btn-submit:disabled[b-161btbqllg] {
    opacity: 0.65;
    cursor: not-allowed;
}

.hj-btn-submit svg[b-161btbqllg] {
    width: 15px;
    height: 15px;
}

/* ── Spinner ────────────────────────────────── */
.hj-spinner[b-161btbqllg] {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #FAFCFB;
    border-radius: 50%;
    animation: hj-spin-b-161btbqllg 0.7s linear infinite;
}

@keyframes hj-spin-b-161btbqllg {
    to { transform: rotate(360deg); }
}

/* ── Success state ──────────────────────────── */
.hj-form-sucesso[b-161btbqllg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 32px 16px;
    text-align: center;
}

.hj-form-sucesso svg[b-161btbqllg] {
    width: 52px;
    height: 52px;
}

.hj-form-sucesso h3[b-161btbqllg] {
    font-family: var(--va-font-display);
    font-size: 20px;
    font-weight: 700;
    color: #0D2B3E;
    margin: 0;
}

.hj-form-sucesso p[b-161btbqllg] {
    font-family: var(--va-font-body);
    font-size: 14px;
    color: #6A8590;
    margin: 0;
    font-weight: 300;
}

.hj-btn-reset[b-161btbqllg] {
    margin-top: 8px;
    background: none;
    border: 1px solid #DDE7EB;
    border-radius: 8px;
    padding: 9px 20px;
    font-family: var(--va-font-body);
    font-size: 13px;
    color: #3D5560;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
}

.hj-btn-reset:hover[b-161btbqllg] {
    border-color: #99EBE3;
    color: #006B5F;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 640px) {
    .hj-hero[b-161btbqllg] {
        padding: 52px 20px 48px;
    }

    .hj-title[b-161btbqllg] {
        font-size: 28px;
    }

    .hj-body[b-161btbqllg] {
        padding: 32px 16px 60px;
    }

    .hj-tab[b-161btbqllg] {
        padding: 10px 14px 12px;
        font-size: 13px;
    }

    .hj-acc-header[b-161btbqllg] {
        padding: 16px 18px;
    }

    .hj-acc-body[b-161btbqllg] {
        padding: 0 18px 18px;
    }

    .hj-form-panel[b-161btbqllg] {
        padding: 20px 16px;
    }

    .hj-form-row-2[b-161btbqllg] {
        grid-template-columns: 1fr;
    }

    .hj-grades[b-161btbqllg] {
        flex-direction: column;
    }
}
/* /Components/Pages/Catalogo.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════
   Catalogo.razor.css — CSS isolado (Blazor scoped)
   ═══════════════════════════════════════════════════════════════ */

.container[b-lkxprtlb51] {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 48px;
}

.section[b-lkxprtlb51] {
    padding: 100px 0;
}

.section-light[b-lkxprtlb51] { background: #FAFCFB; }

/* ── Cabeçalho de secção ── */
.section-header[b-lkxprtlb51] {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 52px;
    padding-bottom: 22px;
    border-bottom: 1px solid #DDE7EB;
}

.section-number[b-lkxprtlb51] {
    font-family: var(--va-font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #006B5F;
    flex-shrink: 0;
}

.section-title[b-lkxprtlb51] {
    font-family: var(--va-font-display);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: #0D2B3E;
    margin: 0;
}

/* ── Feature check ── */
.feature-check[b-lkxprtlb51] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='8' stroke='%23006B5F' stroke-width='1' stroke-dasharray='3 2'/%3E%3Cpath d='M5.5 9L8 11.5L12.5 7' stroke='%23006B5F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ── Famílias ── */
.familias-wrap[b-lkxprtlb51] { margin: 0 0 2rem; }

.familias-titulo[b-lkxprtlb51] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6A8590;
    margin-bottom: 16px;
}

.familias-grid[b-lkxprtlb51] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.familia-bloco[b-lkxprtlb51] {
    border: 1px solid #DDE7EB;
    overflow: hidden;
}

.familia-bloco-header[b-lkxprtlb51] {
    padding: 14px 20px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.familia-bloco-area[b-lkxprtlb51] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.familia-bloco-nome[b-lkxprtlb51] {
    font-family: var(--va-font-display);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
}

.familia-bloco-produtos[b-lkxprtlb51] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #FAFCFB;
}

.fam-card[b-lkxprtlb51] {
    padding: 20px 20px 16px;
    border-right: 1px solid #DDE7EB;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.fam-card:last-child[b-lkxprtlb51] { border-right: none; }

.fam-card[b-lkxprtlb51]::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #00A090;
}

.fam-card-nivel[b-lkxprtlb51] {
    font-family: var(--va-font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #0D2B3E;
    margin-bottom: -2px;
}

.fam-card-label[b-lkxprtlb51] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #96AEBC;
}

.fam-card-score[b-lkxprtlb51] {
    font-family: var(--va-font-display);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: #006B5F;
    margin: 4px 0;
}

.fam-card-pct[b-lkxprtlb51] {
    font-size: 14px;
    font-weight: 400;
}

.fam-card-features[b-lkxprtlb51] {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.fam-card-features li[b-lkxprtlb51] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #3D5560;
    font-weight: 300;
    line-height: 1.5;
}

.fam-card-planos[b-lkxprtlb51] {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #DDE7EB;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.fam-card-planos-label[b-lkxprtlb51] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6A8590;
    margin-bottom: 4px;
}

.fam-card-plano[b-lkxprtlb51] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.fam-card-plano-nome[b-lkxprtlb51] {
    font-family: var(--va-font-mono);
    font-size: 13px;
    color: #3D5560;
}

.fam-card-plano-valor[b-lkxprtlb51] {
    font-family: var(--va-font-mono);
    font-size: 13px;
    font-weight: 500;
    color: #0D2B3E;
}

.fam-card-iva[b-lkxprtlb51] {
    font-family: var(--va-font-mono);
    font-size: 9px;
    color: #96AEBC;
    margin-top: 2px;
}

.fam-card-ver-mais[b-lkxprtlb51] {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--va-font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 11px 22px;
    background: transparent;
    color: #006B5F;
    border: 1.5px solid #006B5F;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s;
    width: 100%;
}

.fam-card-ver-mais:hover[b-lkxprtlb51] {
    background: rgba(0, 107, 95, 0.06);
    transform: translateY(-1px);
}

.fam-card-ver-mais svg[b-lkxprtlb51] { width: 15px; height: 15px; }

/* ── Tabela preços ── */
.precos-tabela-wrap[b-lkxprtlb51] {
    margin: 2.5rem 0 2rem;
}

.precos-tabela-titulo[b-lkxprtlb51] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6A8590;
    margin-bottom: 12px;
}

.precos-tabela-iva[b-lkxprtlb51] {
    text-transform: none;
    letter-spacing: 0;
}

.precos-tabela-overflow[b-lkxprtlb51] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.precos-tabela[b-lkxprtlb51] {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    min-width: 340px;
}

.precos-tabela th[b-lkxprtlb51] {
    text-align: left;
    padding: 8px 10px;
    background: #F2F6F7;
    color: #6A8590;
    font-family: var(--va-font-mono);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid #DDE7EB;
}

.precos-tabela td[b-lkxprtlb51] {
    padding: 10px 10px;
    border-bottom: 1px solid #F2F6F7;
    color: #3D5560;
}

.precos-tabela tbody tr:hover td[b-lkxprtlb51] {
    background: #F2F6F7;
}

.precos-plano-nome[b-lkxprtlb51] {
    font-weight: 500;
    color: #0D2B3E;
}

.precos-mes[b-lkxprtlb51] {
    font-family: var(--va-font-mono);
    font-size: 9px;
    color: #96AEBC;
    margin-left: 1px;
}

/* ── Personalização ── */
.produtos-personaliz[b-lkxprtlb51] {
    margin: 28px 0 20px;
    border: 1px solid #DDE7EB;
    border-radius: 8px;
    overflow: hidden;
}

.pp-header[b-lkxprtlb51] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: #EEF6F5;
    border-bottom: 1px solid #DDE7EB;
    font-family: var(--va-font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #006B5F;
    font-weight: 600;
}

.pp-icon[b-lkxprtlb51] { width: 16px; height: 16px; flex-shrink: 0; }

.pp-grid[b-lkxprtlb51] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.pp-col[b-lkxprtlb51] {
    padding: 20px 22px;
    border-right: 1px solid #DDE7EB;
}

.pp-col:last-child[b-lkxprtlb51] { border-right: none; }

.pp-col-title[b-lkxprtlb51] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #96AEBC;
    margin: 0 0 12px;
}

.pp-list[b-lkxprtlb51] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.pp-list li[b-lkxprtlb51] {
    font-size: 13px;
    font-weight: 300;
    color: #1E2F35;
    line-height: 1.5;
    padding-left: 14px;
    position: relative;
}

.pp-list li[b-lkxprtlb51]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 1px;
    background: #00A090;
}

/* ── Roadmap note ── */
.roadmap-note[b-lkxprtlb51] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 13px 18px;
    background: #E8F3F9;
    border-left: 3px solid #3A7CA5;
    border-radius: 0 4px 4px 0;
    font-size: 13px;
    font-weight: 300;
    color: #1E506E;
}

.roadmap-note svg[b-lkxprtlb51] { width: 17px; height: 17px; flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .container[b-lkxprtlb51] { padding: 0 32px; }
}

@media (max-width: 768px) {
    .section[b-lkxprtlb51] { padding: 72px 0; }
    .container[b-lkxprtlb51] { padding: 0 20px; }
    .pp-grid[b-lkxprtlb51] { grid-template-columns: 1fr; }
    .pp-col[b-lkxprtlb51] { border-right: none; border-bottom: 1px solid #DDE7EB; }
    .pp-col:last-child[b-lkxprtlb51] { border-bottom: none; }
}

@media (max-width: 680px) {
    .familia-bloco-produtos[b-lkxprtlb51] { grid-template-columns: 1fr; }
    .fam-card[b-lkxprtlb51] { border-right: none; border-bottom: 1px solid #DDE7EB; }
    .fam-card:last-child[b-lkxprtlb51] { border-bottom: none; }
}
/* /Components/Pages/Dashboard.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   Dashboard.razor.css
   ═══════════════════════════════════════════════ */

.db-wrapper[b-1277e1frh1] {
    padding: 32px 0 48px;
}

/* ── Cabeçalho ──────────────────────────────── */
.db-header[b-1277e1frh1] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.db-eyebrow[b-1277e1frh1] {
    display: block;
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #006B5F;
    margin-bottom: 6px;
}

.db-title[b-1277e1frh1] {
    font-family: var(--va-font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: #0D2B3E;
    margin: 0;
}

/* ── Botão de ajuda ──────────────────────────── */
.db-header-right[b-1277e1frh1] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.db-help-btn[b-1277e1frh1] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #F2F6F7;
    border: 1px solid #DDE7EB;
    color: #6A8590;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.db-help-btn svg[b-1277e1frh1] {
    width: 16px;
    height: 16px;
}

.db-help-btn:hover[b-1277e1frh1] {
    background: #E6FAF8;
    border-color: #99EBE3;
    color: #006B5F;
}

/* Badge de utilizador */
.db-user-badge[b-1277e1frh1] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 8px;
    background: #F2F6F7;
    border: 1px solid #DDE7EB;
    border-radius: 40px;
}

.db-user-avatar[b-1277e1frh1] {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #004F45;
    color: #CCF5F1;
    font-family: var(--va-font-display);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.db-user-info[b-1277e1frh1] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.db-user-tenant[b-1277e1frh1] {
    font-size: 13px;
    font-weight: 500;
    color: #0D2B3E;
    line-height: 1;
}

.db-user-status[b-1277e1frh1] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #6A8590;
}

.db-status-dot[b-1277e1frh1] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00A090;
    flex-shrink: 0;
}

/* ── Tabs ────────────────────────────────────── */
.db-tabs[b-1277e1frh1] {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid #DDE7EB;
    margin-bottom: 28px;
}

.db-tab[b-1277e1frh1] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--va-font-body);
    font-size: 14px;
    font-weight: 400;
    padding: 10px 18px 12px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    color: #6A8590;
    cursor: pointer;
    transition: color 0.18s, border-color 0.18s;
    border-radius: 4px 4px 0 0;
}

.db-tab svg[b-1277e1frh1] {
    width: 16px;
    height: 16px;
}

.db-tab:hover[b-1277e1frh1] {
    color: #0D2B3E;
    background: #F2F6F7;
}

.db-tab--active[b-1277e1frh1] {
    color: #006B5F;
    font-weight: 500;
    border-bottom-color: #006B5F;
}

.db-tab--active:hover[b-1277e1frh1] {
    background: none;
}

/* ── Conteúdo ────────────────────────────────── */
.db-content[b-1277e1frh1] {
    animation: db-fade-in-b-1277e1frh1 0.2s ease;
}

@keyframes db-fade-in-b-1277e1frh1 {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0);   }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════
   Home.razor.css  —  CSS isolado (Blazor scoped)
   Não usar ::deep aqui salvo para penetrar componentes filho.
   As variáveis --va-* são definidas em wwwroot/app.css.
   ═══════════════════════════════════════════════════════════════ */

/* ── Contentor e secções ────────────────────────────────────── */
.container[b-wgcmy7azsd] {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 48px;
}

.section[b-wgcmy7azsd] {
    padding: 100px 0;
}

.section-light[b-wgcmy7azsd]      { background: #FAFCFB; }
.section-dark[b-wgcmy7azsd]       { background: #0D2B3E; position: relative; overflow: hidden; }
.section-teal-subtle[b-wgcmy7azsd] { background: #E6FAF8; }

/* ── Cabeçalhos de secção ───────────────────────────────────── */
.section-header[b-wgcmy7azsd] {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 52px;
    padding-bottom: 22px;
    border-bottom: 1px solid #DDE7EB;
}

.section-header-inv[b-wgcmy7azsd] { border-bottom-color: rgba(255,255,255,0.1); }

.section-number[b-wgcmy7azsd] {
    font-family: var(--va-font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #006B5F;
    flex-shrink: 0;
}

.section-number-inv[b-wgcmy7azsd] { color: #4DD9CA; }

.section-title[b-wgcmy7azsd] {
    font-family: var(--va-font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #0D2B3E;
    margin: 0;
}

.section-title-inv[b-wgcmy7azsd] { color: #FAFCFB; }

.section-intro[b-wgcmy7azsd] {
    max-width: 600px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #3D5560;
    margin: -24px 0 44px;
}

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero[b-wgcmy7azsd] {
    min-height: calc(100vh - 64px); /* 64px = altura do hp-header */
    background: #0D2B3E;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 48px;
}

/* Experiência 2026-07-26: fundo de imagem desativado temporariamente para comparar o
   widget sozinho contra o fundo liso original — reativar removendo "display: none". */
.hero-bg-image[b-wgcmy7azsd] {
    display: none;
    position: absolute;
    inset: 0;
    background: url('/img/hero-haccplano-bg.svg') center right / cover no-repeat;
    filter: brightness(1.35) saturate(1.1);
}

.hero-bg-gradient[b-wgcmy7azsd] {
    display: none;
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(13,43,62,0.9) 0%, rgba(13,43,62,0.8) 38%, rgba(13,43,62,0.5) 100%);
}

.hero-split[b-wgcmy7azsd] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.hero-visual[b-wgcmy7azsd] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-grid[b-wgcmy7azsd] {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,160,144,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,160,144,.07) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero-accent[b-wgcmy7azsd] {
    position: absolute;
    bottom: -140px; right: -100px;
    width: 580px; height: 580px;
    border-radius: 50%;
    background: radial-gradient(circle, #006B5F 0%, transparent 70%);
    opacity: 0.28;
    pointer-events: none;
}

.hero-accent2[b-wgcmy7azsd] {
    position: absolute;
    top: -80px; left: 44%;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, #00A090 0%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

.hero-content[b-wgcmy7azsd] {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.hero-eyebrow[b-wgcmy7azsd] {
    display: block;
    font-family: var(--va-font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #00C6B2;
    margin-bottom: 28px;
}

.hero-title[b-wgcmy7azsd] {
    font-family: var(--va-font-display);
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    color: #FAFCFB;
    margin: 0 0 26px;
}

.hero-title-accent[b-wgcmy7azsd] { color: #00C6B2; }

.hero-subtitle[b-wgcmy7azsd] {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    color: #8DB8D4;
    max-width: 540px;
    margin: 0 0 44px;
}

.hero-cta-row[b-wgcmy7azsd] {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-primary-hero[b-wgcmy7azsd] {
    font-family: var(--va-font-body);
    font-size: 15px;
    font-weight: 500;
    padding: 13px 30px;
    background: #00A090;
    color: #FAFCFB;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s;
}

.btn-primary-hero:hover[b-wgcmy7azsd] {
    background: #00C6B2;
    transform: translateY(-1px);
}

.btn-ghost-hero[b-wgcmy7azsd] {
    font-family: var(--va-font-body);
    font-size: 15px;
    font-weight: 400;
    padding: 12px 30px;
    background: transparent;
    color: #4DD9CA;
    border: 1px solid rgba(77,217,202,0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.18s, color 0.18s, transform 0.15s;
}

.btn-ghost-hero:hover[b-wgcmy7azsd] {
    border-color: #4DD9CA;
    color: #99EBE3;
    transform: translateY(-1px);
}

.hero-tagline[b-wgcmy7azsd] {
    font-family: var(--va-font-mono);
    font-size: 12px;
    color: #3A7CA5;
    letter-spacing: 0.06em;
}

.hero-tagline-mark[b-wgcmy7azsd] {
    color: #006B5F;
    margin-right: 8px;
}

/* ════════════════════════════════════════════════════════════
   PRODUTOS — CARROSSEL
════════════════════════════════════════════════════════════ */
.carrossel[b-wgcmy7azsd] {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.produto-card[b-wgcmy7azsd] {
    flex: 1;
    min-width: 0;
}

.carrossel-nav[b-wgcmy7azsd] {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,107,95,0.3);
    background: #FAFCFB;
    color: #006B5F;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s, transform 0.15s;
    padding: 0;
}

.carrossel-nav svg[b-wgcmy7azsd] { width: 16px; height: 16px; flex-shrink: 0; }

.carrossel-nav:hover[b-wgcmy7azsd] {
    border-color: #00A090;
    background: #E6FAF8;
    transform: scale(1.06);
}

.carrossel-nav:active[b-wgcmy7azsd] { transform: scale(0.96); }

.carrossel-dots[b-wgcmy7azsd] {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 20px;
}

.carrossel-dot[b-wgcmy7azsd] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #C2D0D6;
    cursor: pointer;
    padding: 0;
    transition: background 0.18s, transform 0.18s;
}

.carrossel-dot--active[b-wgcmy7azsd] {
    background: #006B5F;
    transform: scale(1.3);
}

/* ════════════════════════════════════════════════════════════
   PRODUTOS — CARTÃO
════════════════════════════════════════════════════════════ */
.produto-card[b-wgcmy7azsd] {
    border: 1px solid #DDE7EB;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(13,43,62,0.07);
}

.produto-card-header[b-wgcmy7azsd] {
    background: #0D2B3E;
    padding: 18px 36px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.produto-badge[b-wgcmy7azsd] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 12px;
    background: rgba(0,198,178,0.15);
    color: #4DD9CA;
    border: 1px solid rgba(0,198,178,0.25);
    border-radius: 2px;
}

.produto-categoria[b-wgcmy7azsd] {
    font-family: var(--va-font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8DB8D4;
}

.produto-card-body[b-wgcmy7azsd] {
    display: grid;
    grid-template-columns: 1fr 260px;
    background: #FAFCFB;
}

.produto-info[b-wgcmy7azsd] {
    padding: 44px 40px;
    border-right: 1px solid #DDE7EB;
}

.produto-nome[b-wgcmy7azsd] {
    font-family: var(--va-font-display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #0D2B3E;
    margin: 0 0 14px;
}

.produto-desc[b-wgcmy7azsd] {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: #3D5560;
    margin: 0 0 28px;
}

.produto-features[b-wgcmy7azsd] {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.produto-features li[b-wgcmy7azsd] {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 14px;
    line-height: 1.6;
    color: #1E2F35;
}

.feature-check[b-wgcmy7azsd] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='8' stroke='%23006B5F' stroke-width='1' stroke-dasharray='3 2'/%3E%3Cpath d='M5.5 9L8 11.5L12.5 7' stroke='%23006B5F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ══════════════════════════════════════════════
   NOSSA EQUIPA
══════════════════════════════════════════════ */
.equipa-intro[b-wgcmy7azsd] {
    max-width: 720px;
    margin-bottom: 56px;
}

.equipa-lead[b-wgcmy7azsd] {
    font-size: 17px;
    color: #C2D0D6;
    line-height: 1.75;
    margin: 0 0 14px;
    font-weight: 300;
}

.equipa-lead strong[b-wgcmy7azsd] { color: #4DD9CA; font-weight: 500; }

.equipa-sub[b-wgcmy7azsd] {
    font-size: 14px;
    color: #6A8590;
    line-height: 1.7;
    margin: 0;
}

.equipa-grid[b-wgcmy7azsd] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 56px;
}

.equipa-card[b-wgcmy7azsd] {
    display: flex;
    gap: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(0,160,144,0.14);
    border-radius: 10px;
    padding: 28px;
    transition: border-color 0.2s, background 0.2s;
}

.equipa-card:hover[b-wgcmy7azsd] {
    background: rgba(255,255,255,0.07);
    border-color: rgba(0,160,144,0.3);
}

.equipa-avatar[b-wgcmy7azsd] {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.equipa-avatar svg[b-wgcmy7azsd] { width: 80px; height: 80px; }

.equipa-avatar img[b-wgcmy7azsd] {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.equipa-info[b-wgcmy7azsd] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.equipa-nome[b-wgcmy7azsd] {
    font-size: 16px;
    font-weight: 700;
    color: #FAFCFB;
    margin: 0;
}

.equipa-cargo[b-wgcmy7azsd] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #00A090;
    margin-bottom: 8px;
}

.equipa-bio[b-wgcmy7azsd] {
    font-size: 13px;
    color: #8DB8D4;
    line-height: 1.65;
    margin: 0;
    font-weight: 300;
}

.equipa-cta[b-wgcmy7azsd] {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 8px;
    flex-wrap: wrap;
}

.equipa-cta p[b-wgcmy7azsd] {
    font-size: 15px;
    color: #8DB8D4;
    margin: 0;
}

.equipa-cta .btn-ghost-hero[b-wgcmy7azsd] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.equipa-cta .btn-ghost-hero svg[b-wgcmy7azsd] { width: 16px; height: 16px; }

@media (max-width: 768px) {
    .equipa-grid[b-wgcmy7azsd] { grid-template-columns: 1fr; }
    .equipa-card[b-wgcmy7azsd] { flex-direction: column; align-items: flex-start; }
}

/* ── Preço do produto ─────────────────────────── */
.produto-preco[b-wgcmy7azsd] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 12px 0 20px;
}

.produto-preco-desde[b-wgcmy7azsd] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #96AEBC;
    display: block;
    margin-bottom: 8px;
}

.produto-preco-planos[b-wgcmy7azsd] {
    display: flex;
    flex-direction: row;
    gap: 6px;
}

.produto-preco-plano[b-wgcmy7azsd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex: 1;
    border: 1.5px solid #C2D0D6;
    border-radius: 8px;
    padding: 8px 6px;
}

.produto-preco-plano-nome[b-wgcmy7azsd] {
    font-size: 10px;
    font-weight: 600;
    color: #6A8590;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.produto-preco-plano-valor[b-wgcmy7azsd] {
    font-size: 17px;
    font-weight: 700;
    color: #0D2B3E;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.produto-preco-iva[b-wgcmy7azsd] {
    font-size: 10px;
    color: #96AEBC;
    margin-top: 6px;
    display: block;
}

/* ── Linha de botões ──────────────────────────── */
.produto-actions[b-wgcmy7azsd] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.btn-produto[b-wgcmy7azsd] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--va-font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 11px 22px;
    background: #006B5F;
    color: #FAFCFB;
    border: 1.5px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s;
}

.btn-produto svg[b-wgcmy7azsd] { width: 15px; height: 15px; }

.btn-produto:hover[b-wgcmy7azsd] {
    background: #008578;
    transform: translateY(-1px);
}

/* Variante secundária (Criar Conta) */
.btn-produto--secondary[b-wgcmy7azsd] {
    background: #00A090;
    color: #FAFCFB;
}

.btn-produto--secondary:hover[b-wgcmy7azsd] {
    background: #00B8A6;
    transform: translateY(-1px);
}

/* Variante ghost (Ver Mais) */
.btn-produto--ghost[b-wgcmy7azsd] {
    background: transparent;
    color: #006B5F;
    border-color: #006B5F;
}

.btn-produto--ghost:hover[b-wgcmy7azsd] {
    background: rgba(0, 107, 95, 0.06);
    transform: translateY(-1px);
}

/* Painel visual */
.produto-visual[b-wgcmy7azsd] {
    padding: 36px 28px;
    background: #F2F6F7;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pv-label[b-wgcmy7azsd] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #96AEBC;
    margin-bottom: 10px;
}

.pv-score[b-wgcmy7azsd] {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 2px;
}

.pv-score-num[b-wgcmy7azsd] {
    font-family: var(--va-font-display);
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -3px;
    color: #006B5F;
    line-height: 1;
}

.pv-score-unit[b-wgcmy7azsd] {
    font-family: var(--va-font-display);
    font-size: 22px;
    font-weight: 700;
    color: #00A090;
}

.pv-score-sub[b-wgcmy7azsd] {
    font-size: 12px;
    color: #96AEBC;
    margin-bottom: 24px;
}

.pv-bars[b-wgcmy7azsd] { display: flex; flex-direction: column; gap: 9px; }

.pv-bar[b-wgcmy7azsd] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pv-bar span[b-wgcmy7azsd] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    color: #96AEBC;
    width: 50px;
    flex-shrink: 0;
}

.pv-bar-track[b-wgcmy7azsd] {
    flex: 1;
    height: 4px;
    background: #C2D0D6;
    border-radius: 2px;
    overflow: hidden;
}

.pv-bar-fill[b-wgcmy7azsd] {
    height: 100%;
    background: #00A090;
    border-radius: 2px;
}

/* ── TESTE: cartões por família ───────────────────── */
.familias-wrap[b-wgcmy7azsd] { margin: 2.5rem 0 2rem; }

/* padrão .color-group-label do Brandbook */
.familias-titulo[b-wgcmy7azsd] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6A8590;
    margin-bottom: 16px;
}

.familias-grid[b-wgcmy7azsd] {
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    scrollbar-width: thick;
    scrollbar-color: #006B5F #F2F6F7;
}

.familias-grid[b-wgcmy7azsd]::-webkit-scrollbar {
    height: 14px;
}

.familias-grid[b-wgcmy7azsd]::-webkit-scrollbar-track {
    background: #F2F6F7;
    border-radius: 4px;
}

.familias-grid[b-wgcmy7azsd]::-webkit-scrollbar-thumb {
    background: #006B5F;
    border-radius: 4px;
}

.familias-grid[b-wgcmy7azsd]::-webkit-scrollbar-thumb:hover {
    background: #00A090;
}

.familias-grid[b-wgcmy7azsd]::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

/* padrão .value-card do Brandbook — flat, sem border-radius */
.familia-bloco[b-wgcmy7azsd] {
    flex: 0 0 88%;
    scroll-snap-align: start;
    border: 1px solid #DDE7EB;
    overflow: hidden;
}

/* header com cor do produto — excepção aprovada pelo utilizador */
.familia-bloco-header[b-wgcmy7azsd] {
    padding: 14px 20px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

/* padrão .color-group-label — DM Mono, uppercase */
.familia-bloco-area[b-wgcmy7azsd] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

/* padrão .section-title / .pillar-title do Brandbook — Syne bold */
.familia-bloco-nome[b-wgcmy7azsd] {
    font-family: var(--va-font-display);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.5px;
}

.familias-acoes[b-wgcmy7azsd] {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.familias-acoes .btn-produto[b-wgcmy7azsd],
.familias-acoes .btn-produto--ghost[b-wgcmy7azsd] {
    text-decoration: none;
}

/* 3 cartões lado a lado */
.familia-bloco-produtos[b-wgcmy7azsd] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #FAFCFB;
}

/* padrão .value-card do Brandbook: border, padding, ::before accent */
.fam-card[b-wgcmy7azsd] {
    padding: 28px 28px 20px;
    min-height: 340px;
    border-right: 1px solid #DDE7EB;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.fam-card:last-child[b-wgcmy7azsd] { border-right: none; }

/* accent bar no topo — padrão .value-card::before */
.fam-card[b-wgcmy7azsd]::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--fam-accent, #00A090); /* teal-500 por omissão */
}

/* padrão .ui-table th — DM Mono, uppercase, neutral-500 */
.fam-card-nivel[b-wgcmy7azsd] {
    font-family: var(--va-font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #0D2B3E;
    margin-bottom: -2px;
}

/* padrão .pillar-label */
.fam-card-label[b-wgcmy7azsd] {
    font-family: var(--va-font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #96AEBC;
}

/* padrão .ui-stat-value — Syne bold, teal-700 */
.fam-card-score[b-wgcmy7azsd] {
    font-family: var(--va-font-display);
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    color: #006B5F;
    margin: 6px 0;
}

.fam-card-pct[b-wgcmy7azsd] {
    font-size: 16px;
    font-weight: 700;
}

/* padrão .roadmap-items do Brandbook */
.fam-card-features[b-wgcmy7azsd] {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.fam-card-features li[b-wgcmy7azsd] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #3D5560;
    font-weight: 300;
    line-height: 1.6;
}

/* padrão .callout / .pillar — separador com borda */
.fam-card-planos[b-wgcmy7azsd] {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #DDE7EB;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* padrão .color-group-label */
.fam-card-planos-label[b-wgcmy7azsd] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6A8590;
    margin-bottom: 4px;
}

.fam-card-plano[b-wgcmy7azsd] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

/* padrão .ui-table td */
.fam-card-plano-nome[b-wgcmy7azsd] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    font-weight: 600;
    color: #6A8590;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fam-card-plano-valor[b-wgcmy7azsd] {
    font-family: var(--va-font-body);
    font-size: 14px;
    font-weight: 400;
    color: #0D2B3E;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.fam-card-iva[b-wgcmy7azsd] {
    font-family: var(--va-font-mono);
    font-size: 9px;
    color: #96AEBC;
    margin-top: 2px;
}

/* igual ao btn-produto--ghost do carrossel */
.fam-card-ver-mais[b-wgcmy7azsd] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--va-font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 11px 22px;
    background: transparent;
    color: #006B5F;
    border: 1.5px solid #006B5F;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s;
    width: 100%;
    text-decoration: none;
}

.fam-card-ver-mais:hover[b-wgcmy7azsd] {
    background: rgba(0, 107, 95, 0.06);
    transform: translateY(-1px);
}

.fam-card-ver-mais svg[b-wgcmy7azsd] { width: 15px; height: 15px; }

/* ── HACCPlano: 3 mini-cartões de plano (padrão replicado de HACCPlano.Web #planos) ── */
.hcp-bloco-body[b-wgcmy7azsd] {
    background: #FAFCFB;
    padding: 32px 28px;
}

.hcp-descricao[b-wgcmy7azsd] {
    font-family: var(--va-font-body);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: #3D5560;
    max-width: 640px;
    margin: 0 0 28px;
}

.hcp-planos-grid[b-wgcmy7azsd] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.hcp-plano-card[b-wgcmy7azsd] {
    position: relative;
    background: #fff;
    border: 1.5px solid #DDE7EB;
    border-radius: 8px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.hcp-plano-card:hover[b-wgcmy7azsd] {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(13, 43, 62, 0.08);
}

.hcp-plano-card--destaque[b-wgcmy7azsd] {
    border-color: #1A73AC;
    box-shadow: 0 8px 24px rgba(26, 115, 172, 0.12);
}

.hcp-plano-badge[b-wgcmy7azsd] {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: #1A73AC;
    color: #fff;
    font-family: var(--va-font-mono);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

.hcp-plano-nome[b-wgcmy7azsd] {
    font-family: var(--va-font-display);
    font-size: 18px;
    font-weight: 800;
    color: #0D2B3E;
    letter-spacing: -0.3px;
    margin-bottom: 4px;
}

.hcp-plano-preco[b-wgcmy7azsd] {
    font-family: var(--va-font-display);
    font-size: 24px;
    font-weight: 800;
    color: #8C3517;
    margin-bottom: 16px;
}

.hcp-plano-preco-sub[b-wgcmy7azsd] {
    font-family: var(--va-font-body);
    font-size: 12px;
    font-weight: 400;
    color: #96AEBC;
}

.hcp-plano-features[b-wgcmy7azsd] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}

.hcp-plano-features li[b-wgcmy7azsd] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: var(--va-font-body);
    font-size: 12.5px;
    line-height: 1.5;
    color: #1E2F35;
}

.hcp-plano-check[b-wgcmy7azsd] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='8' fill='%23D6EFFA'/%3E%3Cpath d='M5.5 9L8 11.5L12.5 7' stroke='%23145C8E' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.hcp-iva[b-wgcmy7azsd] {
    display: block;
    font-family: var(--va-font-mono);
    font-size: 9px;
    color: #96AEBC;
    margin: 14px 0 18px;
}

.hcp-ver-mais[b-wgcmy7azsd] { width: auto; }

/* ── Complementos disponíveis (subcapítulo de 01 Produtos) ── */
.complementos-wrap[b-wgcmy7azsd] { margin-top: 3rem; }
.complementos-titulo[b-wgcmy7azsd] { font-size: 18px; margin-bottom: 6px; }
.complementos-intro[b-wgcmy7azsd] { max-width: 640px; margin-bottom: 0; }
.complementos-grid[b-wgcmy7azsd] { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); margin-top: 1.5rem; }
.complemento-nome[b-wgcmy7azsd] { margin-bottom: 8px; }

@media (max-width: 680px) {
    .familia-bloco[b-wgcmy7azsd] { flex: 0 0 92%; }
    .familia-bloco-produtos[b-wgcmy7azsd] { grid-template-columns: 1fr; }
    .fam-card[b-wgcmy7azsd] { border-right: none; border-bottom: 1px solid #DDE7EB; }
    .fam-card:last-child[b-wgcmy7azsd] { border-bottom: none; }
    .hcp-planos-grid[b-wgcmy7azsd] { grid-template-columns: 1fr; }
}

/* ── Tabela preços por nível/plano ────────────────── */
.precos-tabela-wrap[b-wgcmy7azsd] {
    margin: 2.5rem 0 2rem;
}

/* estilo .color-group-label do Brandbook */
.precos-tabela-titulo[b-wgcmy7azsd] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6A8590; /* neutral-400 */
    margin-bottom: 12px;
}

.precos-tabela-iva[b-wgcmy7azsd] {
    text-transform: none;
    letter-spacing: 0;
}

.precos-tabela-overflow[b-wgcmy7azsd] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* padrão .ui-table do Brandbook */
.precos-tabela[b-wgcmy7azsd] {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    min-width: 340px;
}

.precos-tabela th[b-wgcmy7azsd] {
    text-align: left;
    padding: 8px 10px;
    background: #F2F6F7; /* neutral-50 */
    color: #6A8590;      /* neutral-500 */
    font-family: var(--va-font-mono);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid #DDE7EB; /* neutral-100 */
}

.precos-tabela td[b-wgcmy7azsd] {
    padding: 10px 10px;
    border-bottom: 1px solid #F2F6F7; /* neutral-50 */
    color: #3D5560;                    /* neutral-600 */
}

.precos-tabela tbody tr:hover td[b-wgcmy7azsd] {
    background: #F2F6F7;
}

.precos-plano-nome[b-wgcmy7azsd] {
    font-weight: 500;
    color: #0D2B3E; /* navy-800 */
}

.precos-mes[b-wgcmy7azsd] {
    font-family: var(--va-font-mono);
    font-size: 9px;
    color: #96AEBC; /* neutral-300 */
    margin-left: 1px;
}

/* ── Personalização de produtos ───────────────────── */
.produtos-personaliz[b-wgcmy7azsd] {
    margin: 28px 0 20px;
    border: 1px solid #DDE7EB;
    border-radius: 8px;
    overflow: hidden;
}

.pp-header[b-wgcmy7azsd] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: #EEF6F5;
    border-bottom: 1px solid #DDE7EB;
    font-family: var(--va-font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #006B5F;
    font-weight: 600;
}

.pp-icon[b-wgcmy7azsd] { width: 16px; height: 16px; flex-shrink: 0; }

.pp-grid[b-wgcmy7azsd] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.pp-col[b-wgcmy7azsd] {
    padding: 20px 22px;
    border-right: 1px solid #DDE7EB;
}

.pp-col:last-child[b-wgcmy7azsd] { border-right: none; }

.pp-col-title[b-wgcmy7azsd] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #96AEBC;
    margin: 0 0 12px;
}

.pp-list[b-wgcmy7azsd] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.pp-list li[b-wgcmy7azsd] {
    font-size: 13px;
    font-weight: 300;
    color: #1E2F35;
    line-height: 1.5;
    padding-left: 14px;
    position: relative;
}

.pp-list li[b-wgcmy7azsd]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 1px;
    background: #00A090;
}

@media (max-width: 768px) {
    .pp-grid[b-wgcmy7azsd] { grid-template-columns: 1fr; }
    .pp-col[b-wgcmy7azsd] { border-right: none; border-bottom: 1px solid #DDE7EB; }
    .pp-col:last-child[b-wgcmy7azsd] { border-bottom: none; }
}

/* Nota roadmap */
.roadmap-note[b-wgcmy7azsd] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 13px 18px;
    background: #E8F3F9;
    border-left: 3px solid #3A7CA5;
    border-radius: 0 4px 4px 0;
    font-size: 13px;
    font-weight: 300;
    color: #1E506E;
}

.roadmap-note svg[b-wgcmy7azsd] { width: 17px; height: 17px; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   CONTACTO
════════════════════════════════════════════════════════════ */
.contacto-grid[b-wgcmy7azsd] {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 72px;
    align-items: start;
}

.contacto-lead[b-wgcmy7azsd] {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #8DB8D4;
    margin: 0 0 32px;
}

.contacto-info[b-wgcmy7azsd] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.contacto-info-row[b-wgcmy7azsd] {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 14px;
    color: #C4DDE9;
}

.contacto-info-row svg[b-wgcmy7azsd] { width: 20px; height: 20px; flex-shrink: 0; }

.contacto-quote[b-wgcmy7azsd] {
    border-left: 2px solid #006B5F;
    padding-left: 18px;
    font-family: var(--va-font-display);
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.65;
    color: #4DD9CA;
    margin: 0;
}

/* Form panel */
.form-panel[b-wgcmy7azsd] {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 40px;
}

.form-row-2[b-wgcmy7azsd] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group[b-wgcmy7azsd] {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}

.form-group label[b-wgcmy7azsd] {
    font-family: var(--va-font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8DB8D4;
}

.form-group label span[b-wgcmy7azsd] { color: #4DD9CA; }

.form-ctrl[b-wgcmy7azsd] {
    font-family: var(--va-font-body);
    font-size: 14px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: #FAFCFB;
    outline: none;
    transition: border-color 0.18s, background 0.18s;
    width: 100%;
}

.form-ctrl[b-wgcmy7azsd]::placeholder { color: rgba(141,184,212,0.38); }

.form-ctrl:focus[b-wgcmy7azsd] {
    border-color: #00A090;
    background: rgba(255,255,255,0.09);
}

.form-ctrl option[b-wgcmy7azsd] {
    background: #0D2B3E;
    color: #FAFCFB;
}

.form-textarea[b-wgcmy7azsd] {
    resize: vertical;
    min-height: 120px;
}

[b-wgcmy7azsd] .field-error { font-size: 12px; color: #fda4af; }
[b-wgcmy7azsd] .validation-message { font-size: 12px; color: #fda4af; }

.form-erro[b-wgcmy7azsd] {
    font-size: 13px;
    color: #fca5a5;
    background: rgba(248,113,113,0.08);
    border: 1px solid rgba(248,113,113,0.18);
    border-radius: 4px;
    padding: 10px 14px;
    margin-bottom: 14px;
}

.btn-submit[b-wgcmy7azsd] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    font-family: var(--va-font-body);
    font-size: 15px;
    font-weight: 500;
    padding: 13px;
    background: #00A090;
    color: #FAFCFB;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s;
}

.btn-submit svg[b-wgcmy7azsd] { width: 15px; height: 15px; }

.btn-submit:hover:not(:disabled)[b-wgcmy7azsd] {
    background: #00C6B2;
    transform: translateY(-1px);
}

.btn-submit:disabled[b-wgcmy7azsd] { opacity: 0.55; cursor: not-allowed; }

.spinner[b-wgcmy7azsd] {
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255,255,255,0.25);
    border-top-color: #FAFCFB;
    border-radius: 50%;
    animation: spin-b-wgcmy7azsd 0.7s linear infinite;
}

@keyframes spin-b-wgcmy7azsd { to { transform: rotate(360deg); } }

/* Sucesso */
.form-sucesso[b-wgcmy7azsd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 44px 20px;
    gap: 14px;
}

.form-sucesso svg[b-wgcmy7azsd] { width: 52px; height: 52px; }

.form-sucesso h3[b-wgcmy7azsd] {
    font-family: var(--va-font-display);
    font-size: 20px;
    font-weight: 700;
    color: #4DD9CA;
    margin: 0;
}

.form-sucesso p[b-wgcmy7azsd] {
    font-size: 14px;
    font-weight: 300;
    color: #8DB8D4;
    margin: 0;
}

.btn-reset-form[b-wgcmy7azsd] {
    margin-top: 6px;
    font-family: var(--va-font-body);
    font-size: 13px;
    padding: 9px 22px;
    background: transparent;
    color: #4DD9CA;
    border: 1px solid rgba(0,198,178,0.25);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.18s, color 0.18s;
}

.btn-reset-form:hover[b-wgcmy7azsd] {
    border-color: rgba(0,198,178,0.5);
    color: #99EBE3;
}

/* ════════════════════════════════════════════════════════════
   SOBRE A VETAQUA
════════════════════════════════════════════════════════════ */
.sobre-grid[b-wgcmy7azsd] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.sobre-lead[b-wgcmy7azsd] {
    font-family: var(--va-font-display);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: #0D2B3E;
    margin: 0 0 22px;
}

.sobre-lead em[b-wgcmy7azsd] {
    font-style: normal;
    color: #006B5F;
}

.sobre-body[b-wgcmy7azsd] {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #3D5560;
    margin: 0 0 18px;
}

/* Pillars */
.pillar[b-wgcmy7azsd] {
    padding: 22px 0;
    border-bottom: 1px solid #DDE7EB;
}

.pillar:last-child[b-wgcmy7azsd] { border-bottom: none; }

.pillar-label[b-wgcmy7azsd] {
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: #006B5F;
    margin-bottom: 8px;
}

.pillar-title[b-wgcmy7azsd] {
    font-family: var(--va-font-display);
    font-size: 15px;
    font-weight: 600;
    color: #0D2B3E;
    margin: 0 0 9px;
    line-height: 1.4;
}

.pillar-text[b-wgcmy7azsd] {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: #3D5560;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════
   VALORES DA MARCA
════════════════════════════════════════════════════════════ */
.valores-grid[b-wgcmy7azsd] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.valor-card[b-wgcmy7azsd] {
    background: #FAFCFB;
    border: 1px solid #DDE7EB;
    border-radius: 6px;
    padding: 30px 26px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.valor-card:hover[b-wgcmy7azsd] {
    border-color: #99EBE3;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,107,95,0.08);
}

.valor-icon[b-wgcmy7azsd] {
    width: 42px;
    height: 42px;
    display: block;
    margin-bottom: 18px;
}

.valor-nome[b-wgcmy7azsd] {
    font-family: var(--va-font-display);
    font-size: 16px;
    font-weight: 700;
    color: #0D2B3E;
    margin: 0 0 10px;
}

.valor-desc[b-wgcmy7azsd] {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: #3D5560;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.site-footer[b-wgcmy7azsd] {
    background: #050E14;
    padding: 48px 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-brand[b-wgcmy7azsd] {
    font-family: var(--va-font-display);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #C4DDE9;
}

.footer-brand span[b-wgcmy7azsd] { color: #00C6B2; }

.footer-tagline[b-wgcmy7azsd] {
    font-family: var(--va-font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #3A7CA5;
    margin: 0;
}

.footer-links[b-wgcmy7azsd] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.footer-link[b-wgcmy7azsd] {
    font-size: 12px;
    color: #3A7CA5;
    text-decoration: none;
    transition: color 0.15s;
}

.footer-link:hover[b-wgcmy7azsd] { color: #8DB8D4; }

.footer-sep[b-wgcmy7azsd] {
    font-size: 12px;
    color: #1E506E;
}

.footer-stripe[b-wgcmy7azsd] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
}

.footer-stripe-label[b-wgcmy7azsd] {
    font-size: 11px;
    color: #2A4A5E;
    white-space: nowrap;
}

.footer-stripe-logo[b-wgcmy7azsd] {
    height: 18px;
    width: auto;
    color: #3A7CA5;
    opacity: 0.7;
}

.footer-meta[b-wgcmy7azsd] {
    font-size: 12px;
    color: #1E506E;
    margin: 4px 0 0;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .container[b-wgcmy7azsd] { padding: 0 32px; }

    .produto-card-body[b-wgcmy7azsd] {
        grid-template-columns: 1fr;
    }

    .produto-visual[b-wgcmy7azsd] {
        border-right: none;
        border-top: 1px solid #DDE7EB;
        padding: 28px 40px;
        flex-direction: row;
        gap: 40px;
        align-items: center;
    }

    .pv-bars[b-wgcmy7azsd] { flex: 1; }

    .contacto-grid[b-wgcmy7azsd],
    .sobre-grid[b-wgcmy7azsd] {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .valores-grid[b-wgcmy7azsd] { grid-template-columns: repeat(2, 1fr); }

    .hcp-planos-grid[b-wgcmy7azsd] { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .hero-split[b-wgcmy7azsd] { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual[b-wgcmy7azsd] { order: -1; }
}

@media (max-width: 768px) {
    .hero[b-wgcmy7azsd] {
        padding: 64px 24px 56px;
        min-height: auto;
    }

    .hero-title[b-wgcmy7azsd] {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .section[b-wgcmy7azsd] { padding: 72px 0; }

    .container[b-wgcmy7azsd] { padding: 0 20px; }

    .carrossel-nav[b-wgcmy7azsd] { display: none; }
    .carrossel[b-wgcmy7azsd] { gap: 0; touch-action: pan-y; }

    .form-row-2[b-wgcmy7azsd] { grid-template-columns: 1fr; }

    .form-panel[b-wgcmy7azsd] { padding: 24px 20px; }

    .valores-grid[b-wgcmy7azsd] { grid-template-columns: 1fr; }

    .site-footer[b-wgcmy7azsd] { padding: 40px 20px; }

    .produto-card-header[b-wgcmy7azsd] { padding: 14px 20px; }

    .produto-info[b-wgcmy7azsd] { padding: 28px 24px; }

    .produto-visual[b-wgcmy7azsd] {
        display: none;
    }
}
/* /Components/Pages/MinhaArea.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   MinhaArea.razor.css
   ═══════════════════════════════════════════════ */

.db-wrapper[b-fvfynfdbou] {
    padding: 32px 0 48px;
}

/* ── Cabeçalho ──────────────────────────────── */
.db-header[b-fvfynfdbou] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.db-eyebrow[b-fvfynfdbou] {
    display: block;
    font-family: var(--va-font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #006B5F;
    margin-bottom: 6px;
}

.db-title[b-fvfynfdbou] {
    font-family: var(--va-font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: #0D2B3E;
    margin: 0;
}

/* ── Cabeçalho direito ───────────────────────── */
.db-header-right[b-fvfynfdbou] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.db-help-btn[b-fvfynfdbou] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #F2F6F7;
    border: 1px solid #DDE7EB;
    color: #6A8590;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.db-help-btn svg[b-fvfynfdbou] {
    width: 16px;
    height: 16px;
}

.db-help-btn:hover[b-fvfynfdbou] {
    background: #E6FAF8;
    border-color: #99EBE3;
    color: #006B5F;
}

/* Badge de utilizador */
.db-user-badge[b-fvfynfdbou] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 8px;
    background: #F2F6F7;
    border: 1px solid #DDE7EB;
    border-radius: 40px;
}

.db-user-avatar[b-fvfynfdbou] {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #004F45;
    color: #CCF5F1;
    font-family: var(--va-font-display);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.db-user-info[b-fvfynfdbou] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.db-user-tenant[b-fvfynfdbou] {
    font-size: 13px;
    font-weight: 500;
    color: #0D2B3E;
    line-height: 1;
}

.db-user-status[b-fvfynfdbou] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #6A8590;
}

.db-status-dot[b-fvfynfdbou] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00A090;
    flex-shrink: 0;
}

/* ── Tabs ────────────────────────────────────── */
.db-tabs[b-fvfynfdbou] {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid #DDE7EB;
    margin-bottom: 28px;
}

.db-tab[b-fvfynfdbou] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--va-font-body);
    font-size: 14px;
    font-weight: 400;
    padding: 10px 18px 12px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    color: #6A8590;
    cursor: pointer;
    transition: color 0.18s, border-color 0.18s;
    border-radius: 4px 4px 0 0;
}

.db-tab svg[b-fvfynfdbou] {
    width: 16px;
    height: 16px;
}

.db-tab:hover[b-fvfynfdbou] {
    color: #0D2B3E;
    background: #F2F6F7;
}

.db-tab--active[b-fvfynfdbou] {
    color: #006B5F;
    font-weight: 500;
    border-bottom-color: #006B5F;
}

.db-tab--active:hover[b-fvfynfdbou] {
    background: none;
}

/* ── Conteúdo ────────────────────────────────── */
.db-content[b-fvfynfdbou] {
    animation: db-fade-in-b-fvfynfdbou 0.2s ease;
}

@keyframes db-fade-in-b-fvfynfdbou {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0);   }
}
/* /Components/Widgets/HeroTemperaturaDemo.razor.rz.scp.css */
.htd-phone[b-l0zvn0dfwl] {
    position: relative;
    width: 340px;
    padding: 26px 12px;
    background: #10161A;
    border: 3px solid #8C3517;
    border-radius: 42px;
    box-shadow: 0 28px 70px rgba(0,0,0,0.5);
}

.htd-notch[b-l0zvn0dfwl] {
    width: 70px;
    height: 7px;
    margin: 0 auto 14px;
    background: #4A5964;
    border-radius: 4px;
}

.htd-home-indicator[b-l0zvn0dfwl] {
    width: 90px;
    height: 5px;
    margin: 14px auto 0;
    background: #4A5964;
    border-radius: 3px;
}

.htd-screen[b-l0zvn0dfwl] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #F2F6F7;
    border-radius: 22px;
    padding: 22px 20px 20px;
}

.htd-app-header[b-l0zvn0dfwl] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}

.htd-brand-row[b-l0zvn0dfwl] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.htd-brand-icon[b-l0zvn0dfwl] { width: 24px; height: 24px; flex-shrink: 0; }

.htd-brand[b-l0zvn0dfwl] {
    font-family: var(--va-font-display);
    font-size: 16px;
    font-weight: 700;
    color: #1E2F35;
}

.htd-brand em[b-l0zvn0dfwl] { font-style: normal; color: #8C3517; }

.htd-badge[b-l0zvn0dfwl] {
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8C3517;
    border: 1px solid rgba(140,53,23,0.35);
    background: rgba(140,53,23,0.08);
    border-radius: 10px;
    padding: 3px 9px;
}

.htd-titulo[b-l0zvn0dfwl] {
    font-size: 17px;
    font-weight: 700;
    color: #1E2F35;
    margin: 4px 0 4px;
}

.htd-label[b-l0zvn0dfwl] {
    font-size: 11.5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6A8590;
    margin-top: 6px;
}

.htd-select[b-l0zvn0dfwl],
.htd-input[b-l0zvn0dfwl] {
    width: 100%;
    background: #FAFCFB;
    border: 1.5px solid #DDE7EB;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14.5px;
    color: #1E2F35;
    font-family: var(--va-font-body);
}

.htd-select:focus[b-l0zvn0dfwl],
.htd-input:focus[b-l0zvn0dfwl] {
    outline: none;
    border-color: #8C3517;
}

.htd-ref[b-l0zvn0dfwl] {
    font-size: 11.5px;
    color: #6A8590;
    margin: 0;
}

.htd-btn[b-l0zvn0dfwl] {
    margin-top: 10px;
    padding: 12px;
    background: #8C3517;
    color: #FAFCFB;
    border: none;
    border-radius: 8px;
    font-family: var(--va-font-body);
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s;
}

.htd-btn:hover:not(:disabled)[b-l0zvn0dfwl] { background: #0D2B3E; }
.htd-btn:disabled[b-l0zvn0dfwl] { opacity: 0.55; cursor: default; }

.htd-resultado[b-l0zvn0dfwl] {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 16px;
    font-size: 12.5px;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 6px;
}

.htd-resultado svg[b-l0zvn0dfwl] { width: 16px; height: 16px; flex-shrink: 0; }

.htd-resultado--ok[b-l0zvn0dfwl] {
    background: rgba(27,94,32,0.1);
    color: #1B5E20;
}

.htd-resultado--aviso[b-l0zvn0dfwl] {
    background: rgba(183,28,28,0.1);
    color: #B71C1C;
}

.htd-nota[b-l0zvn0dfwl] {
    font-size: 10.5px;
    color: #6A8590;
    text-align: center;
    margin: 6px 0 0;
}

@media (max-width: 1024px) {
    .htd-phone[b-l0zvn0dfwl] { width: 300px; }
}
