/* ==========================================================================
   Carteira — Modern Dark. Mobile-first.
   Tokens semânticos primeiro: nenhuma cor solta dentro de componente.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700&family=Fira+Code:wght@400;500;600&display=swap');

:root {
  /* superfícies — nunca #000 puro (borra em OLED e mata a profundidade) */
  --bg:            #0a0a0d;
  --bg-elev:       #101014;
  --surface:       #16161c;
  --surface-2:     #1d1d25;
  --border:        #26262f;
  --border-soft:   #1e1e26;

  /* texto */
  --fg:            #f4f4f6;
  --fg-muted:      #a1a1ad;
  --fg-dim:        #6d6d7a;

  /* semânticos */
  --accent:        #5b8cff;
  --accent-soft:   rgba(91, 140, 255, .12);
  --up:            #34d399;
  --up-soft:       rgba(52, 211, 153, .12);
  --down:          #fb7185;
  --down-soft:     rgba(251, 113, 133, .12);
  --warn:          #fbbf24;

  /* forma */
  --r-sm: 8px;  --r-md: 14px;  --r-lg: 20px;  --r-full: 999px;
  --sp-1: 4px;  --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px;  --sp-7: 48px;

  --shadow-card: 0 1px 2px rgba(0,0,0,.4), 0 8px 24px -12px rgba(0,0,0,.6);
  --ease: cubic-bezier(.16, 1, .3, 1);

  --z-nav: 40; --z-sticky: 30; --z-toast: 100;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Fira Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  /* luz ambiente sutil — dá profundidade sem custar performance */
  background-image:
    radial-gradient(900px 500px at 12% -8%,  rgba(91,140,255,.10), transparent 60%),
    radial-gradient(700px 420px at 92% 4%,   rgba(52,211,153,.07), transparent 60%);
  background-attachment: fixed;
}

/* números sempre tabulares: coluna de dinheiro não pode dançar */
.num, .money, td.num, th.num { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum' 1; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

/* --------------------------------------------------------------- estrutura */
.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

main { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
@media (min-width: 768px) { main { padding-bottom: var(--sp-7); } }

/* ------------------------------------------------------------------ header */
.topbar {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: rgba(10,10,13,.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
  padding-top: env(safe-area-inset-top);
}
.topbar__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-3); height: 60px;
}
.brand { display: flex; align-items: center; gap: var(--sp-2); font-weight: 600; letter-spacing: -.01em; }
.brand .ico { color: var(--accent); }
.brand small { display: block; font-size: 11px; color: var(--fg-dim); font-weight: 400; line-height: 1; }

.topnav { display: none; gap: var(--sp-1); }
@media (min-width: 768px) { .topnav { display: flex; } }
.topnav a {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--r-full);
  color: var(--fg-muted); font-size: 14px; font-weight: 500;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.topnav a:hover { background: var(--surface); color: var(--fg); }
.topnav a[aria-current="page"] { background: var(--accent-soft); color: var(--accent); }

/* --------------------------------------------------------------- bottom nav */
.bottomnav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-nav);
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: rgba(16,16,20,.88);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-top: 1px solid var(--border);
  padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 768px) { .bottomnav { display: none; } }
.bottomnav a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  min-height: 56px; padding: 8px 2px;
  color: var(--fg-dim); font-size: 10.5px; font-weight: 500;
  white-space: nowrap;
  transition: color .18s var(--ease);
}
.bottomnav a[aria-current="page"] { color: var(--accent); }
.bottomnav a:active { background: var(--surface); }

/* ------------------------------------------------------------------- cards */
.card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-elev) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}

/* herói: o patrimônio */
.hero { padding: var(--sp-5); margin-top: var(--sp-5); position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: -40% 40% 40% -20%;
  background: radial-gradient(closest-side, rgba(91,140,255,.16), transparent);
  pointer-events: none;
}
.hero__label {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; letter-spacing: .09em; text-transform: uppercase;
  color: var(--fg-dim); font-weight: 600;
}
.hero__valor {
  font-size: clamp(34px, 9vw, 52px); font-weight: 700; letter-spacing: -.03em;
  line-height: 1.05; margin: var(--sp-2) 0 var(--sp-3);
  font-variant-numeric: tabular-nums;
}
.hero__chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--r-full);
  background: var(--surface-2); border: 1px solid var(--border);
  font-size: 13px; font-weight: 500; color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
}
.chip.up   { background: var(--up-soft);   border-color: rgba(52,211,153,.28);  color: var(--up); }
.chip.down { background: var(--down-soft); border-color: rgba(251,113,133,.28); color: var(--down); }

/* -------------------------------------------------------------- indicadores */
.grid-kpi {
  display: grid; gap: var(--sp-3);
  grid-template-columns: repeat(2, minmax(0,1fr));
  margin-top: var(--sp-3);
}
@media (min-width: 768px) { .grid-kpi { grid-template-columns: repeat(4, minmax(0,1fr)); } }

.kpi { padding: var(--sp-4); display: flex; flex-direction: column; gap: 2px; }
.kpi__t {
  font-size: 11.5px; color: var(--fg-dim); font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  display: flex; align-items: center; gap: 5px;
}
.kpi__v { font-size: 21px; font-weight: 600; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.kpi__s { font-size: 12.5px; color: var(--fg-dim); font-variant-numeric: tabular-nums; }

/* cores semânticas de resultado — sempre acompanhadas de sinal (+/−), nunca só cor */
.up   { color: var(--up); }
.down { color: var(--down); }
.flat { color: var(--fg-muted); }

/* ----------------------------------------------------------------- seções */
.sec { margin-top: var(--sp-6); }
.sec__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--sp-3); margin-bottom: var(--sp-3);
}
.sec__head h2 { font-size: 16px; font-weight: 600; margin: 0; letter-spacing: -.01em; }
.sec__head .hint { font-size: 12.5px; color: var(--fg-dim); }

/* ------------------------------------------------------ lista de ativos (mobile) */
.ativos-cards { display: grid; gap: var(--sp-3); }
@media (min-width: 900px) { .ativos-cards { display: none; } }

.ativo-card {
  display: block; padding: var(--sp-4);
  transition: transform .18s var(--ease), border-color .18s var(--ease);
}
.ativo-card:active { transform: scale(.985); border-color: var(--accent); }
.ativo-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-2); }
.ativo-card__top > div:first-child { min-width: 0; }   /* deixa o nome truncar em vez de espremer o valor */
.ativo-card__tk { font-family: 'Fira Code', monospace; font-size: 16px; font-weight: 600; letter-spacing: -.01em; }
.ativo-card__nm {
  font-size: 12px; color: var(--fg-dim); margin-top: 1px;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.ativo-card__val { text-align: right; font-variant-numeric: tabular-nums; }
.ativo-card__val b { display: block; font-size: 16px; font-weight: 600; white-space: nowrap; }
.ativo-card__val span { font-size: 12.5px; }
.ativo-card__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-2);
  margin-top: var(--sp-3); padding-top: var(--sp-3); border-top: 1px solid var(--border-soft);
}
.mini { font-variant-numeric: tabular-nums; }
.mini dt { font-size: 10.5px; color: var(--fg-dim); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.mini dd { margin: 1px 0 0; font-size: 13.5px; font-weight: 500; }

/* ------------------------------------------------------ tabela (desktop) */
.tabela-wrap { display: none; }
@media (min-width: 900px) { .tabela-wrap { display: block; overflow: hidden; } }

table { width: 100%; border-collapse: collapse; }
thead th {
  text-align: right; padding: 12px 14px; font-size: 11px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase; color: var(--fg-dim);
  border-bottom: 1px solid var(--border); white-space: nowrap;
}
thead th:first-child, tbody td:first-child { text-align: left; }
tbody td {
  text-align: right; padding: 13px 14px; font-size: 14px;
  border-bottom: 1px solid var(--border-soft); font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
tbody tr { transition: background .16s var(--ease); }
tbody tr:hover { background: var(--surface-2); cursor: pointer; }
tbody tr:last-child td { border-bottom: none; }
.tk { font-family: 'Fira Code', monospace; font-weight: 600; }
.tk small { display: block; font-family: 'Fira Sans', sans-serif; font-weight: 400; font-size: 11.5px; color: var(--fg-dim); max-width: 260px; overflow: hidden; text-overflow: ellipsis; }

/* barra de concentração */
.peso { display: flex; align-items: center; gap: 8px; justify-content: flex-end; }
.peso__bar { width: 54px; height: 5px; border-radius: var(--r-full); background: var(--surface-2); overflow: hidden; }
.peso__fill { height: 100%; border-radius: var(--r-full); background: var(--accent); }

/* ------------------------------------------------------------------ botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  min-height: 44px; padding: 0 18px; border-radius: var(--r-full);
  border: 1px solid var(--border); background: var(--surface-2); color: var(--fg);
  font-size: 14.5px; font-weight: 500; cursor: pointer;
  transition: background .18s var(--ease), border-color .18s var(--ease), transform .12s var(--ease);
  touch-action: manipulation;
}
.btn:hover { background: var(--surface); border-color: var(--fg-dim); }
.btn:active { transform: scale(.97); }
.btn--primary {
  background: var(--accent); border-color: var(--accent); color: #08080b; font-weight: 600;
}
.btn--primary:hover { background: #7aa1ff; border-color: #7aa1ff; }
.btn--ghost { background: transparent; }
.btn--danger { background: transparent; border-color: rgba(251,113,133,.35); color: var(--down); }
.btn--danger:hover { background: var(--down-soft); border-color: var(--down); }
.btn--sm { min-height: 36px; padding: 0 13px; font-size: 13px; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px; border-radius: var(--r-sm);
}

/* ----------------------------------------------------------------- formulário */
.form { display: grid; gap: var(--sp-4); padding: var(--sp-5); }
.campo { display: grid; gap: 6px; }
.campo > label { font-size: 13px; font-weight: 600; color: var(--fg-muted); }
.campo .req { color: var(--accent); }
.campo input, .campo select, .campo textarea {
  min-height: 48px; padding: 10px 14px;
  background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--r-md);
  font-size: 16px;  /* 16px evita o zoom automático do iPhone */
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
  width: 100%; font-variant-numeric: tabular-nums;
}
.campo input:focus, .campo select:focus, .campo textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.campo .ajuda { font-size: 12.5px; color: var(--fg-dim); }
.linha2 { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
@media (min-width: 560px) { .linha2 { grid-template-columns: 1fr 1fr; } }

/* seletor compra/venda */
.segmented { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--r-full); }
.segmented label {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 42px; border-radius: var(--r-full); cursor: pointer;
  font-size: 14.5px; font-weight: 600; color: var(--fg-muted);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented input:checked + label { background: var(--up-soft); color: var(--up); }
.segmented input:checked + label.venda { background: var(--down-soft); color: var(--down); }
.segmented input:focus-visible + label { outline: 2px solid var(--accent); outline-offset: 2px; }

.form__acoes { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.resumo-form {
  padding: var(--sp-3) var(--sp-4); background: var(--accent-soft);
  border: 1px solid rgba(91,140,255,.25); border-radius: var(--r-md);
  font-size: 14px; font-variant-numeric: tabular-nums;
}
.resumo-form b { font-weight: 600; }

/* -------------------------------------------------------------------- avisos */
.flash {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: var(--sp-4); padding: 12px 16px;
  border-radius: var(--r-md); font-size: 14px; border: 1px solid;
}
.flash--ok   { background: var(--up-soft);   border-color: rgba(52,211,153,.3);  color: var(--up); }
.flash--erro { background: var(--down-soft); border-color: rgba(251,113,133,.3); color: var(--down); }
.flash .ico { flex: 0 0 auto; margin-top: 2px; }

.nota {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12.5px; color: var(--fg-dim); line-height: 1.5;
}
.nota .ico { flex: 0 0 auto; color: var(--warn); margin-top: 1px; }

/* ------------------------------------------------------------------- vazio */
.vazio { padding: var(--sp-7) var(--sp-5); text-align: center; }
.vazio__ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: var(--r-full);
  background: var(--accent-soft); color: var(--accent); margin-bottom: var(--sp-4);
}
.vazio h3 { margin: 0 0 var(--sp-2); font-size: 18px; font-weight: 600; }
.vazio p { margin: 0 auto var(--sp-5); color: var(--fg-muted); font-size: 14.5px; max-width: 42ch; }

/* ---------------------------------------------------------------- detalhe */
.voltar {
  display: inline-flex; align-items: center; gap: 6px; min-height: 44px;
  color: var(--fg-muted); font-size: 14px; margin-top: var(--sp-3);
}
.voltar:hover { color: var(--fg); }

.detalhe-head { padding: var(--sp-5); margin-top: var(--sp-3); }
.detalhe-head h1 { margin: 0; font-size: 26px; font-weight: 700; letter-spacing: -.02em; font-family: 'Fira Code', monospace; }
.detalhe-head p { margin: 2px 0 0; color: var(--fg-muted); font-size: 14px; }
.badge {
  display: inline-block; padding: 3px 10px; border-radius: var(--r-full);
  background: var(--surface-2); border: 1px solid var(--border);
  font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--fg-muted);
}

.lista-simples { display: grid; }
.lista-simples > * {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  padding: 13px var(--sp-4); border-bottom: 1px solid var(--border-soft);
  font-size: 14px; font-variant-numeric: tabular-nums;
}
.lista-simples > *:last-child { border-bottom: none; }
.lista-simples .rot { color: var(--fg-muted); display: flex; align-items: center; gap: 8px; }
.lista-simples .rot small { display: block; font-size: 11.5px; color: var(--fg-dim); }

.op-tag { font-size: 11px; font-weight: 700; letter-spacing: .05em; padding: 2px 8px; border-radius: var(--r-full); }
.op-tag--c { background: var(--up-soft); color: var(--up); }
.op-tag--v { background: var(--down-soft); color: var(--down); }

/* ------------------------------------------------------------------ motion */
.reveal { animation: sobe .45s var(--ease) both; }
.reveal:nth-child(2) { animation-delay: .04s; }
.reveal:nth-child(3) { animation-delay: .08s; }
.reveal:nth-child(4) { animation-delay: .12s; }
@keyframes sobe { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
}

/* -------------------------------------------------------------------- login */
.login-wrap { display: flex; align-items: center; justify-content: center; min-height: 76dvh; padding: var(--sp-5) 0; }
.login { width: 100%; max-width: 380px; padding: var(--sp-6) var(--sp-5); text-align: center; }
.login__ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: var(--r-full);
  background: var(--accent-soft); color: var(--accent); margin-bottom: var(--sp-4);
}
.login h1 { margin: 0; font-size: 24px; font-weight: 700; letter-spacing: -.02em; }
.login__sub { margin: 4px 0 var(--sp-5); color: var(--fg-muted); font-size: 14.5px; }
.login .campo { text-align: left; }
.sair { color: var(--fg-dim); font-size: 13px; display: inline-flex; align-items: center; min-height: 44px; }
.sair:hover { color: var(--down); }

/* ------------------------------------------------------------------ filtros */
.filtros {
  display: flex; gap: var(--sp-2); overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.filtros::-webkit-scrollbar { display: none; }
.filtro {
  flex: 0 0 auto; display: inline-flex; align-items: center;
  min-height: 40px; padding: 0 15px; border-radius: var(--r-full);
  background: var(--surface); border: 1px solid var(--border);
  color: var(--fg-muted); font-size: 14px; font-weight: 500; white-space: nowrap;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.filtro:hover { color: var(--fg); border-color: var(--fg-dim); }
.filtro--on { background: var(--accent-soft); border-color: rgba(91,140,255,.4); color: var(--accent); font-weight: 600; }

/* --------------------------------------------------------- barras mês a mês */
.barras {
  display: flex; align-items: flex-end; gap: 6px;
  height: 150px; overflow-x: auto; padding-top: var(--sp-4);
  scrollbar-width: none;
}
.barras::-webkit-scrollbar { display: none; }
.barra {
  flex: 1 0 34px; display: flex; flex-direction: column; align-items: center;
  justify-content: flex-end; height: 100%; gap: 5px; min-width: 34px;
}
.barra__t {
  width: 100%; max-width: 30px; border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--up) 0%, rgba(52,211,153,.35) 100%);
  animation: sobebarra .5s var(--ease) both;
}
.barra__v { font-size: 10.5px; color: var(--fg-muted); font-variant-numeric: tabular-nums; }
.barra__r { font-size: 10.5px; color: var(--fg-dim); }
@keyframes sobebarra { from { transform: scaleY(0); transform-origin: bottom; } to { transform: none; } }

/* ------------------------------------------------- aplicado x atual (hero) */
.duplo {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3);
  margin-top: var(--sp-4); padding-top: var(--sp-4);
  border-top: 1px solid var(--border-soft);
}
.duplo > div { min-width: 0; }
.duplo dt {
  font-size: 11px; color: var(--fg-dim); font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
}
.duplo dd {
  margin: 2px 0 0; font-size: 19px; font-weight: 600;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}

/* ------------------------------------------------------- puxar pra atualizar */
#ptr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70;
  display: flex; align-items: center; justify-content: center;
  height: 0; overflow: visible; pointer-events: none;
  padding-top: env(safe-area-inset-top);
}
#ptrBadge {
  position: relative; width: 52px; height: 52px; margin-top: 8px;
  border-radius: var(--r-full); background: var(--surface);
  box-shadow: 0 6px 20px -4px rgba(0,0,0,.55), 0 0 0 1px rgba(91,140,255,.3);
  opacity: 0; transform: scale(.6);
  transition: opacity .12s, transform .12s;
}
#ptrBadge .ptr__anel { position: absolute; inset: 0; transform: rotate(-90deg); }
#ptrBadge .ptr__seta { position: absolute; top: 16px; left: 16px; }
#ptrArco { transition: stroke-dashoffset .05s linear; }
@keyframes ptrGira { to { transform: rotate(360deg); } }
@keyframes ptrPop  { 0% { transform: scale(1); } 40% { transform: scale(1.18); } 100% { transform: scale(1); } }
#ptrBadge.ptr--girando .ptr__anel { animation: ptrGira .7s linear infinite; transform-origin: center; }
#ptrBadge.ptr--pop { animation: ptrPop .35s ease-out; }

/* A barra de baixo é ancorada por JS no viewport VISÍVEL (visualViewport).
   Sem isso, no iOS ela flutua no meio da tela quando a barra do navegador
   encolhe ao rolar. O will-change evita o tremor durante o reposicionamento. */
.bottomnav { will-change: transform; transform: translate3d(0,0,0); }

/* No app instalado não existe barra de navegador: a área de baixo do iPhone
   (o risquinho do gesto) precisa do respiro, senão o menu fica embaixo dele. */
@media (display-mode: standalone) {
  .bottomnav a { min-height: 52px; }
  body { overscroll-behavior-y: contain; }   /* segura o "elástico" do iOS */
}

/* --- gráfico de preço (SVG inline, sem biblioteca) --- */
.spark-wrap      { margin-top: var(--sp-3); }
.spark           { display: block; width: 100%; height: 72px; }
.spark-legenda   { display: flex; justify-content: space-between; margin-top: 2px; }
@media (max-width: 420px) { .spark { height: 60px; } }

/* o eco do campo quantidade: amarelo quando o ponto virou milhar sem querer */
.ajuda[data-alerta] { color: var(--down); font-weight: 600; }
