/* MeuNomeNoDO — landing clara: fundo #F6F7F9, verde #00E676, marinho #0A1929 */
:root {
  --green: #00e676;
  --green-dark: #00c463;
  --green-soft: #e6f9ef;
  --ink: #0f1b2d;
  --muted: #5b6470;
  --bg: #f6f7f9;
  --card: #ffffff;
  --pill: #f4f4f5;
  --line: #e8ebf0;
  --navy: #0a1929;
  --navy-card: #101f33;
  --navy-line: rgba(255, 255, 255, 0.09);
  --radius: 12px;
  --shadow-soft: 0 14px 34px rgba(15, 27, 45, 0.08);
  --shadow-lift: 0 22px 48px rgba(15, 27, 45, 0.14);
  --font-display: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
::selection { background: #b9f5d3; color: var(--ink); }

/* fundo: plano, sem mesh */
.mesh, .blob, .glass-shell { display: none; }

/* ---------- cursor custom ---------- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; border-radius: 50%; }
.cursor-dot { width: 8px; height: 8px; background: var(--ink); transform: translate(-50%, -50%); }
.cursor-ring {
  width: 38px; height: 38px; border: 2px solid rgba(15, 27, 45, 0.35);
  transform: translate(-50%, -50%);
  transition: width 0.18s ease, height 0.18s ease, background 0.18s ease, border 0.18s ease;
}
.cursor-ring.is-hover { width: 64px; height: 64px; background: rgba(0, 230, 118, 0.14); border-color: var(--green); }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- layout ---------- */
.wrap { width: min(1120px, 92vw); margin: 0 auto; }
main.wrap { padding-top: 6rem; }
section.block { padding: 3.5rem 0; }
section.block.white { background: #fff; }
.full-bleed { width: 100%; }

/* ---------- header minimalista ---------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 0; }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--ink); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; }
.brand-col { flex-direction: column; gap: 2px; }
.brand-do { color: var(--green); }
.brand-logo { height: 42px; width: auto; display: block; border-radius: 8px; transition: transform 0.18s ease; }
.brand:hover .brand-logo { transform: translateY(-2px); }
.nav { display: flex; gap: 1.6rem; align-items: center; }
.nav a.link { color: var(--muted); text-decoration: none; font-weight: 500; font-size: 0.92rem; position: relative; padding: 0.2rem 0; transition: color 0.18s ease; }
.nav a.link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.22s ease;
}
.nav a.link:hover { color: var(--ink); }
.nav a.link:hover::after { transform: scaleX(1); }

/* link de texto com o mesmo sublinhado do menu */
.text-link {
  color: var(--wa-green-dark); font-weight: 700; text-decoration: none;
  position: relative; padding-bottom: 1px;
}
.text-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.22s ease;
}
.text-link:hover::after { transform: scaleX(1); }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 700; text-decoration: none; cursor: pointer; border: none;
  padding: 0.85rem 1.6rem; border-radius: 10px; font-size: 0.95rem; font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  will-change: transform; position: relative;
}
.btn-primary { background: var(--green); color: #06281a; box-shadow: 0 8px 22px rgba(0, 230, 118, 0.35); }
.btn-primary:hover { background: var(--green-dark); color: #fff; }
.btn-dark { background: #0b1b2e; color: #fff; }
.btn-dark:hover { background: var(--green); color: #06281a; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-outline-green { background: transparent; color: var(--green-dark); border: 1.5px solid var(--green); }
.btn-outline-green:hover { background: rgba(0, 230, 118, 0.12); }
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.88rem; }

/* ---------- hero ---------- */
.hero { padding: 6rem 0 3.5rem; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
.hero h1 {
  font-weight: 800; font-size: clamp(1.9rem, 4.2vw, 2.9rem); line-height: 1.18;
  letter-spacing: -0.02em; color: var(--ink); margin: 0 0 1rem;
}
.hero h1 .green { color: var(--green-dark); }
.hero .lead { color: var(--muted); font-size: 1.02rem; line-height: 1.65; margin: 0 0 1.6rem; max-width: 30rem; }
.capture input {
  width: 100%; padding: 0.9rem 1rem; border-radius: 10px;
  border: 1px solid var(--line); background: #fff; font-size: 0.95rem; font-family: inherit;
  box-shadow: var(--shadow-soft); margin-bottom: 0.8rem; color: var(--ink);
}
.capture input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.18); }
.capture .btn { width: 100%; }
.secure-note { display: flex; align-items: center; gap: 0.4rem; color: var(--muted); font-size: 0.82rem; margin-top: 0.8rem; }

/* visual do hero: painel + celular com notificação */
.hero-visual {
  border-radius: 22px; overflow: hidden; position: relative;
  background: linear-gradient(150deg, #274b73 0%, #3f6d9e 45%, #8fb8d8 100%);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 1 / 1.02;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual .sun { position: absolute; top: -70px; right: -40px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.85), rgba(255,255,255,0) 65%); }
.hero-visual .leaf { position: absolute; bottom: -30px; left: 24px; opacity: 0.5; }
.phone {
  position: relative; width: 200px; border-radius: 30px; padding: 12px;
  background: #0b1b2e; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}
.phone .screen { border-radius: 20px; background: #ece5dd; overflow: hidden; }
.phone .wa-head { background: #075e54; color: #fff; font-size: 0.68rem; font-weight: 700; padding: 0.55rem 0.7rem; }
.phone .wa-body { padding: 0.7rem; display: flex; flex-direction: column; gap: 0.45rem; min-height: 210px; }
.bubble {
  background: #fff; border-radius: 8px; padding: 0.5rem 0.6rem;
  font-size: 0.68rem; line-height: 1.45; color: #1c2b33;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12); max-width: 92%;
}
.bubble b { display: block; margin-bottom: 0.15rem; }
.bubble .ok { color: var(--green-dark); font-weight: 800; }
.float-tag {
  position: absolute; background: rgba(255, 255, 255, 0.94); color: var(--ink);
  font-size: 0.75rem; font-weight: 700; padding: 0.5rem 0.8rem; border-radius: 999px;
  box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: 0.4rem;
}
.float-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.float-tag.t1 { top: 12%; left: 6%; }
.float-tag.t2 { bottom: 10%; right: 6%; }

/* ---------- títulos de seção ---------- */
.kicker { text-align: center; max-width: 620px; margin: 0 auto 2.4rem; }
.kicker h2 { font-weight: 800; font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -0.01em; margin: 0 0 0.7rem; }
.kicker p { color: var(--muted); line-height: 1.65; margin: 0; font-size: 0.98rem; }
.section { padding: 2.8rem 0; }
section[id] { scroll-margin-top: 4.5rem; }
.section h2 { font-weight: 800; font-size: clamp(1.3rem, 3vw, 1.9rem); letter-spacing: -0.01em; color: var(--ink); margin: 0 0 0.5rem; }
.section .sub { color: var(--muted); margin: 0 0 2rem; line-height: 1.6; }

/* ---------- cards ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid.plans { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid.two { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid.steps { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card); color: var(--ink); border-radius: var(--radius);
  padding: 1.7rem; border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  will-change: transform; position: relative;
}
.card:hover { box-shadow: var(--shadow-lift); }
.card h3 { margin: 0 0 0.4rem; font-size: 1.02rem; }
.card p { line-height: 1.65; color: var(--muted); margin: 0.4rem 0; font-size: 0.93rem; }
.card .price { font-size: 2rem; font-weight: 800; margin: 0.4rem 0; color: var(--ink); }
.card .price small { font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.card ul { padding-left: 1.1rem; margin: 0.8rem 0 1.2rem; color: var(--muted); line-height: 1.6; font-size: 0.93rem; }
.card li { margin: 0.35rem 0; }
.card.featured { outline: 2px solid var(--green); }
.icon-sq {
  width: 46px; height: 46px; border-radius: 11px; background: var(--green-soft);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--ink);
}
.tag {
  display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em;
  background: var(--ink); color: #fff; padding: 0.3rem 0.65rem; border-radius: 6px; margin-bottom: 0.6rem;
}
.tag.green { background: var(--green); color: #06281a; }

/* ---------- benefícios ---------- */
.benefit-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 3rem; align-items: center; }
.dash {
  background: #fff; border-radius: 20px; padding: 2rem;
  border: 1px solid var(--line); box-shadow: var(--shadow-lift);
}
.dash-panel { background: #0b1b2e; border-radius: 14px; padding: 1.2rem; color: #fff; }
.dash-top { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.dash-top .dots { display: flex; gap: 5px; }
.dash-top .dots i { width: 9px; height: 9px; border-radius: 50%; background: #ff5f57; display: block; }
.dash-top .dots i:nth-child(2) { background: #febc2e; }
.dash-top .dots i:nth-child(3) { background: #28c840; }
.dash-search { flex: 1; background: rgba(255,255,255,.12); border-radius: 8px; font-size: 0.72rem; color: rgba(255,255,255,.6); padding: 0.4rem 0.7rem; }
.dash-num { font-size: 1.7rem; font-weight: 800; }
.dash-num small { display: block; font-size: 0.68rem; font-weight: 500; color: rgba(255,255,255,.55); }
.dash-chart { margin: 0.8rem 0; }
.dash-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 0.8rem; }
.dash-mini { background: rgba(255,255,255,.07); border-radius: 10px; padding: 0.7rem; font-size: 0.7rem; }
.dash-mini b { display: block; font-size: 0.72rem; margin-bottom: 0.4rem; }
.bars { display: flex; align-items: flex-end; gap: 5px; height: 44px; }
.bars i { flex: 1; border-radius: 3px; background: var(--green); display: block; }
.donut {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto;
  background: conic-gradient(var(--green) 0 68%, rgba(255,255,255,.15) 68% 100%);
  display: flex; align-items: center; justify-content: center;
}
.donut::after { content: "68%"; width: 48px; height: 48px; border-radius: 50%; background: #0b1b2e; display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 800; }
.check-list-benefit { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 0.9rem; }
.check-list-benefit li { display: flex; gap: 0.6rem; font-size: 0.93rem; line-height: 1.6; color: var(--muted); }
.check-list-benefit li b { color: var(--ink); }
.check { flex: none; width: 20px; height: 20px; border-radius: 50%; background: var(--green); color: #fff; font-size: 0.7rem; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; margin-top: 0.15rem; }

/* ---------- CTA escuro ---------- */
.cta-dark { background: var(--navy); color: #fff; border-radius: 0; }
.cta-dark h2 { color: #fff; text-align: center; font-weight: 800; font-size: clamp(1.4rem, 3vw, 2rem); margin: 0 0 0.7rem; }
.cta-dark .sub { text-align: center; color: rgba(255, 255, 255, 0.72); max-width: 620px; margin: 0 auto 2rem; line-height: 1.65; }
.cta-card {
  max-width: 640px; margin: 0 auto; background: var(--navy-card);
  border: 1px solid var(--navy-line); border-radius: 16px; padding: 1.8rem;
}
.cta-card .field label { color: rgba(255, 255, 255, 0.85); }
.cta-card .field input, .cta-card .field select {
  background: #1b2f47; border: 1px solid #2a4258; color: #fff;
}
.cta-card .field input::placeholder { color: rgba(255, 255, 255, 0.4); }
.cta-card .field input:focus, .cta-card .field select:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.18); }
.cta-card .btn-primary { width: 100%; font-size: 1.02rem; }
.cta-note { text-align: center; font-size: 0.75rem; color: rgba(255, 255, 255, 0.45); margin-top: 0.9rem; }
.radio-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.radio-row label {
  display: inline-flex; gap: 0.45rem; align-items: center; cursor: pointer;
  background: #1b2f47; border: 1px solid #2a4258; color: rgba(255,255,255,.85);
  border-radius: 999px; padding: 0.5rem 0.95rem; font-size: 0.85rem; font-weight: 600;
  transition: border 0.15s ease, background 0.15s ease;
}
.radio-row label:has(input:checked) { border-color: var(--green); background: rgba(0, 230, 118, 0.14); color: #fff; }
.radio-row input { accent-color: var(--green); }

/* ---------- formulários (área do usuário) ---------- */
.form-card {
  background: var(--card); color: var(--ink);
  border-radius: 16px; padding: 2rem;
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.75rem 0.9rem; border-radius: 10px;
  border: 1.5px solid #dfe3ea; font-size: 1rem; font-family: inherit; color: var(--ink);
  background: #fbfcfe;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.16);
}
.radio-list { display: grid; gap: 0.5rem; }
.radio-list label {
  display: flex; gap: 0.7rem; align-items: center; cursor: pointer;
  background: #f4f6f9; border: 1.5px solid transparent; border-radius: 10px;
  padding: 0.7rem 0.9rem; font-weight: 600;
  transition: border 0.15s ease, background 0.15s ease;
}
.radio-list label:hover { background: #e9f9f0; }
.radio-list input { accent-color: var(--green-dark); width: 1.1rem; height: 1.1rem; }
.radio-list label:has(input:checked) { border-color: var(--green); background: #e9f9f0; }
.alert { border-radius: 10px; padding: 0.9rem 1rem; margin: 1rem 0; font-weight: 600; display: none; line-height: 1.5; }
.alert.show { display: block; }
.alert.ok { background: #dcfce7; color: #14532d; }
.alert.err { background: #fee2e2; color: #7f1d1d; }
.muted { color: var(--muted); }
.center { text-align: center; }

/* ---------- matchings ---------- */
.match { border-left: 6px solid var(--green); }
.match .meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; font-size: 0.92rem; color: var(--muted); margin: 0.5rem 0; }
.match blockquote { background: #f4f6f9; border-radius: 10px; padding: 0.8rem 1rem; margin: 0.6rem 0 0; font-style: italic; line-height: 1.6; }
.empty {
  background: #fff; border: 2px dashed rgba(15, 27, 45, 0.25);
  border-radius: 14px; padding: 2.5rem; text-align: center; line-height: 1.6;
}

/* ---------- área do usuário ---------- */
.page-head { padding: 1rem 0 0.5rem; }
.page-head h1 { font-weight: 800; font-size: clamp(1.4rem, 3.4vw, 2.1rem); color: var(--ink); margin: 0; letter-spacing: -0.01em; }
.tabs { display: flex; gap: 0.7rem; margin: 1.5rem 0 2rem; flex-wrap: wrap; }
.tabs a { text-decoration: none; }

/* ---------- checkout ---------- */
.steps { display: flex; gap: 0.5rem; margin-bottom: 1.2rem; }
.steps span { flex: 1; text-align: center; font-size: 0.8rem; font-weight: 700; padding: 0.5rem; border-radius: 10px; background: #edf0f4; color: var(--muted); }
.steps span.on { background: var(--ink); color: #fff; }

/* ---------- faq ---------- */
.faq { display: grid; gap: 0.7rem; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 1rem 1.2rem; box-shadow: var(--shadow-soft);
}
.faq summary { font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-weight: 800; color: var(--green-dark); font-size: 1.2rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); line-height: 1.65; margin: 0.7rem 0 0; font-size: 0.95rem; }

/* ---------- área do usuário: sidebar fixa à esquerda ---------- */
.appside {
  position: fixed; top: 0; bottom: 0; left: 0; width: 248px; z-index: 60;
  background: #fff; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; padding: 1.4rem 1rem; gap: 1.2rem;
}
.appside .brand { font-size: 1.15rem; }
.appside nav { display: flex; flex-direction: column; gap: 0.3rem; }
.appside nav a {
  color: var(--muted); text-decoration: none; font-weight: 600; font-size: 0.93rem;
  padding: 0.65rem 0.85rem; border-radius: 10px; transition: background 0.15s ease, color 0.15s ease;
}
.appside nav a:hover { background: #eef4ec; color: var(--ink); }
.appside nav a.on { background: var(--ink); color: #fff; }
.appside .side-foot { margin-top: auto; }
.appside .side-foot .btn { width: 100%; }
.appmain { margin-left: 248px; padding: 2rem clamp(1rem, 4vw, 3rem) 3rem; max-width: 1100px; }
.status-banner {
  display: flex; align-items: center; gap: 0.7rem; border-radius: 12px;
  padding: 0.9rem 1.1rem; font-weight: 600; margin-bottom: 1.4rem;
  border: 1px solid var(--line); background: #fff;
}
.status-banner .dot { width: 11px; height: 11px; border-radius: 50%; flex: none; }
.status-banner.ok .dot { background: var(--green); box-shadow: 0 0 0 5px rgba(0, 230, 118, 0.18); }
.status-banner.warn .dot { background: #f5a623; box-shadow: 0 0 0 5px rgba(245, 166, 35, 0.18); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-bottom: 1.4rem; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.1rem 1.2rem; box-shadow: var(--shadow-soft); }
.stat b { font-size: 1.7rem; display: block; }
.stat span { color: var(--muted); font-size: 0.85rem; }
.table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.table th, .table td { text-align: left; padding: 0.65rem 0.7rem; border-bottom: 1px solid var(--line); }
.table th { color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.table a { color: var(--green-dark); font-weight: 700; }
@media (max-width: 860px) {
  .appside { top: auto; bottom: 0; left: 0; right: 0; width: auto; flex-direction: row; align-items: center; padding: 0.6rem 0.8rem; border-right: none; border-top: 1px solid var(--line); gap: 0.5rem; }
  .appside .brand, .appside .side-foot { display: none; }
  .appside nav { flex-direction: row; overflow-x: auto; width: 100%; }
  .appside nav a { white-space: nowrap; font-size: 0.82rem; padding: 0.5rem 0.7rem; }
  .appmain { margin-left: 0; padding-bottom: 5.5rem; }
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- footer ---------- */
footer.site { background: #060d18; color: rgba(255, 255, 255, 0.65); font-size: 0.88rem; }
footer.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.4rem; padding-bottom: 1.4rem; }
footer.site strong { color: #fff; }
footer.site nav { display: flex; gap: 1.4rem; }
footer.site a { color: rgba(255, 255, 255, 0.65); text-decoration: none; }
footer.site a:hover { color: #fff; }
footer.simple { padding: 2.5rem 0 3rem; text-align: center; color: var(--muted); font-size: 0.9rem; }
footer.simple strong { color: var(--ink); }

@media (max-width: 900px) {
  .hero-grid, .benefit-grid { grid-template-columns: 1fr; }
  .grid.steps { grid-template-columns: 1fr; }
  .hero-visual { max-width: 440px; margin: 0 auto; width: 100%; }
}
@media (max-width: 720px) {
  main.wrap { padding-top: 8.5rem; }
  .hero { padding-top: 8.5rem; }
  .topbar-inner { flex-wrap: wrap; row-gap: 0.5rem; }
  .nav { order: 3; flex-basis: 100%; overflow-x: auto; gap: 1rem; padding-bottom: 0.25rem; }
  .nav a.link { display: inline-block; white-space: nowrap; font-size: 0.85rem; }
  .nav .btn { white-space: nowrap; }
  .btn-sm { padding: 0.45rem 0.8rem; font-size: 0.8rem; }
}
