:root {
  --bg: #0b0b0b;
  --bg-2: #141312;
  --sheet: #f6f3ef;
  --white: #fff;
  --ink: #161513;
  --muted: #6b6560;
  --copper: #c47a45;
  --copper-2: #e08a4f;
  --cream: #e8c9a0;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Bebas Neue", Impact, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --header-h: 64px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --ease: cubic-bezier(0.22, 0.8, 0.24, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + var(--safe-top) + 20px); }
section[id] { scroll-margin-top: calc(var(--header-h) + var(--safe-top) + 20px); }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font: inherit; }
.skip { position: absolute; left: -999px; top: 0; }
.skip:focus { left: 12px; background: #fff; padding: 8px 12px; z-index: 80; }
.wrap { width: min(1120px, 100%); margin: 0 auto; }

.top {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-h);
  padding: 8px 16px;
  padding-top: max(8px, var(--safe-top));
  background: var(--bg);
}
.brand { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.brand-mark {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
.brand-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--cream);
  border-radius: 999px;
  padding: 3px 8px;
}
.desk-nav { display: none; gap: 22px; align-items: center; }
.desk-nav a, .nav-ghost {
  color: #efe7dc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.top-actions { display: flex; align-items: center; gap: 8px; }
.nav-ghost { display: none; padding: 10px 8px; }
.nav-cta {
  background: var(--copper);
  color: #fff !important;
  padding: 10px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px !important;
  font-weight: 800;
  text-decoration: none;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.header-cta { padding: 10px 12px; }
.menu-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
}
.menu-btn span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  top: 50%;
  background: var(--copper);
  transition: transform 0.28s var(--ease), opacity 0.2s ease;
}
.menu-btn span:nth-child(1) { transform: translateY(-7px); }
.menu-btn span:nth-child(3) { transform: translateY(7px); }
.menu-btn.is-open span:nth-child(1) { transform: rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { transform: rotate(-45deg); }
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + var(--safe-top) + 12px) 22px calc(28px + var(--safe-bottom));
  background: #0b0b0b;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  font-size: 22px;
}
.mobile-nav .nav-cta {
  margin-top: 18px;
  justify-content: center;
  font-size: 14px !important;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}
.btn-accent { background: var(--copper); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--line);
}
.btn-block { width: 100%; }
.btn:active { transform: scale(0.98); }

.eyebrow, .section-kicker {
  color: var(--copper);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  margin: 0 0 8px;
}
.section-kicker.light { color: var(--cream); }
h2 {
  font-family: var(--display);
  font-size: clamp(32px, 8vw, 54px);
  line-height: 0.95;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.section-lead { color: var(--muted); max-width: 52ch; margin: 0 0 24px; }
.section-lead.light { color: #c9c0b6; }

.hero {
  display: grid;
  gap: 28px;
  padding: 18px 16px 40px;
  color: #fff;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 11vw, 72px);
  line-height: 0.9;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.hero h1 em { font-style: normal; color: var(--copper-2); }
.lead { color: #d9d0c5; margin: 0 0 10px; font-size: 18px; max-width: 48ch; font-weight: 600; }
.lead-sub { color: #cfc4b7; margin: 0 0 14px; font-size: 15px; max-width: 48ch; }
.punch { font-weight: 700; margin: 0 0 20px; }
.punch em { color: var(--copper-2); font-style: normal; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.hero-cta .btn { width: 100%; }
.hero-note { margin: 0 0 10px; color: #cfc4b7; font-size: 13px; font-weight: 600; }
.brand-line { margin: 0; color: #efe7dc; font-size: 14px; }
.brand-line strong { color: #fff; }

.product-window {
  background: #171513;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #201d1a;
  border-bottom: 1px solid var(--line);
}
.product-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5a524b;
}
.product-chrome span:first-child { background: #c47a45; }
.product-chrome p {
  margin: 0 0 0 8px;
  font-size: 11px;
  color: #cfc4b7;
  letter-spacing: 0.04em;
}
.product-body { display: grid; }
.product-side {
  display: none;
  padding: 16px 12px;
  border-right: 1px solid var(--line);
  background: #120f0e;
}
.product-side strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
}
.product-side a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: #cfc4b7;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.product-side a.is-on { background: #2a241f; color: #fff; }
.product-main { padding: 14px; }
.product-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.product-kpis article, .app-kpis article {
  background: #211d1a;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
}
.product-kpis span, .app-kpis span {
  display: block;
  color: #b8aea3;
  font-size: 11px;
  font-weight: 600;
}
.product-kpis strong, .app-kpis strong {
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
}
.product-kpis small {
  display: block;
  margin-top: 4px;
  color: #9ed4a4;
  font-size: 11px;
  font-weight: 700;
}
.product-agenda header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.product-agenda h3 { margin: 0; color: #fff; font-size: 15px; }
.product-agenda header p { margin: 0; color: #b8aea3; font-size: 12px; }
.product-agenda ul, .appt-list { list-style: none; padding: 0; margin: 0; }
.appt-list li { padding: 0; border: 0; display: block; }
.product-agenda li, .appt-list .appt {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  width: 100%;
  background: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: 10px;
}
.product-agenda time, .appt-list time { color: var(--cream); font-size: 12px; font-weight: 700; }
.product-agenda strong, .appt-list strong { display: block; color: #fff; font-size: 13px; }
.product-agenda span, .appt-list span { color: #b8aea3; font-size: 12px; }
.tag {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 8px;
}
.tag-fiel { background: #2d2418; color: var(--cream); }
.tag-avulso { background: #1d242c; color: #9ec4e8; }
.tag-livre { background: #1b2a1d; color: #9ed4a4; }
.tag-atraso { background: #2c1b1b; color: #f0a3a3; }
.is-free { opacity: 0.85; }

.strip {
  background: var(--sheet);
  padding: 22px 16px;
}
.strip-grid p { margin: 0 0 12px; font-size: 15px; }
.strip-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.strip-grid strong { color: var(--ink); }

.problem, .steps-sec, .faq, .compare-sec { background: var(--sheet); color: var(--ink); padding: 56px 16px; }
.journey {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.journey article {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
}
.journey-on { outline: 2px solid var(--copper); }
.journey-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 6px;
}
.journey-path { font-weight: 800; margin: 0 0 8px; font-size: 15px; }
.journey p { margin: 0; color: var(--muted); }
.compare {
  display: grid;
  gap: 12px;
}
.compare article {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
}
.compare-after { background: var(--ink); color: #fff; }
.compare h3 { margin: 0 0 6px; font-family: var(--display); font-size: 32px; }
.compare p { margin: 0 0 12px; }
.no-list, .yes-list { list-style: none; padding: 0; margin: 0; }
.no-list li, .yes-list li { padding: 6px 0 6px 22px; position: relative; font-weight: 700; }
.no-list li::before, .yes-list li::before {
  position: absolute;
  left: 0;
  font-weight: 800;
}
.no-list li::before { content: "–"; color: #c45b5b; }
.yes-list li::before { content: "+"; color: #9ed4a4; }
.pain-grid, .feature-grid {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.pain-grid article, .feature-grid article {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}
.pain-grid span {
  font-family: var(--display);
  color: var(--copper);
  font-size: 28px;
}
.pain-grid h3, .feature-grid h3 { margin: 8px 0; font-size: 20px; }
.pain-grid p, .feature-grid p { margin: 0; color: var(--muted); }
.feature-grid.four { margin-bottom: 24px; }
.cota-card {
  background: #211d1a;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.cota-card h3 { margin: 0 0 12px; font-size: 22px; }
.cota-example p { margin: 0 0 8px; color: #efe7dc; }
.cota-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 14px 0;
}
.cota-bar span {
  height: 12px;
  border-radius: 999px;
  background: #3a342e;
}
.cota-bar .is-used { background: var(--copper); }
.cota-now { font-weight: 700; }

.result { background: var(--bg); color: #fff; padding: 56px 16px; }
.result-box { text-align: center; }
.result-box h2 { margin-bottom: 16px; }
.result-num {
  font-family: var(--display);
  font-size: clamp(48px, 12vw, 88px);
  line-height: 0.9;
  margin: 8px 0 12px;
  color: var(--cream);
}
.result-num span {
  display: block;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: #cfc4b7;
  margin-top: 8px;
  letter-spacing: 0;
  text-transform: none;
}
.result-note { color: #cfc4b7; max-width: 46ch; margin: 0 auto; }
.plan-payback {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--cream);
  text-align: center;
}
.features { background: var(--bg-2); color: #fff; padding: 56px 16px; }
.features h2 { color: #fff; }
.feature-grid article { background: #1c1a18; color: #fff; }
.feature-grid p, .feature-grid ul { color: #c9c0b6; }

.agenda-show { background: var(--sheet); padding: 56px 16px; }
.agenda-layout { display: grid; gap: 28px; }
.check-list { list-style: none; padding: 0; margin: 18px 0 22px; }
.check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-weight: 600;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--copper);
}
.week-card {
  background: #171513;
  color: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.week-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 13px;
  color: #cfc4b7;
}
.week-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.week-col {
  background: #211d1a;
  border-radius: 12px;
  padding: 10px;
}
.week-col h4 { margin: 0 0 8px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream); }
.slot {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 8px;
  padding: 6px 8px;
}
.slot-fiel { background: #2d2418; }
.slot-avulso { background: #1d242c; }
.slot-free { background: #1b2a1d; color: #9ed4a4; }
.slot-late { background: #2c1b1b; }

.steps { list-style: none; padding: 0; margin: 22px 0 0; }
.steps li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 700;
  margin: 10px 0;
}
.steps span {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
}

.plans { background: var(--bg); color: #fff; padding: 56px 16px; }
.plans h2, .plans .section-lead { text-align: center; margin-left: auto; margin-right: auto; }
.plan-grid {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}
.plan-card {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 22px 18px;
}
.plan-card h3 { font-family: var(--display); font-size: 36px; margin: 0; letter-spacing: 0.03em; }
.plan-who { color: var(--muted); margin: 4px 0 8px; }
.price { font-size: 32px; font-weight: 800; margin: 0 0 12px; }
.price span { font-size: 14px; font-weight: 600; color: var(--muted); }
.plan-card ul { padding-left: 18px; margin: 0 0 18px; }
.plan-card .btn { width: 100%; }
.featured {
  background: var(--ink);
  color: #fff;
  outline: 3px solid var(--copper);
}
.featured .plan-who, .featured .price span { color: #cfc4b7; }
.badge {
  display: inline-block;
  background: var(--copper);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 8px;
  margin: 0 0 8px;
}
.plan-note { text-align: center; color: #cfc4b7; font-size: 13px; margin: 18px 0 0; }

.faq-list { max-width: 760px; margin: 20px auto 0; }
details { background: #fff; border-radius: 14px; padding: 4px 16px; margin: 10px 0; }
summary { cursor: pointer; font-weight: 700; padding: 16px 0; list-style: none; }
summary::-webkit-details-marker { display: none; }
details p { margin: 0 0 16px; color: var(--muted); }

.sign { background: var(--bg); color: #fff; padding: 56px 16px calc(48px + var(--safe-bottom)); }
.sign .section-kicker, .sign p { color: #cfc4b7; }
.sign-grid { display: grid; gap: 24px; }
.sign-form {
  background: #171513;
  padding: 20px;
  border-radius: 20px;
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
}
.sign-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; }
.sign-form input, .sign-form select {
  border: 1px solid #3a342e;
  background: #0f0e0d;
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  min-height: 48px;
  font-size: 16px;
}
.form-note { font-size: 13px; text-align: center; }

.foot {
  background: #080808;
  color: #cfc4b7;
  padding: 32px 16px calc(88px + var(--safe-bottom));
}
.foot-grid { display: grid; gap: 24px; }
.foot h4 { color: #fff; margin: 0 0 8px; }
.foot a { display: block; text-decoration: none; margin: 6px 0; }
.legal { text-align: center; font-size: 12px; opacity: 0.7; }

.wa-float {
  position: fixed;
  right: 14px;
  bottom: calc(14px + var(--safe-bottom));
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  z-index: 40;
}
.wa-float svg { width: 26px; height: 26px; }

.reveal { opacity: 0; transform: translate3d(0, 18px, 0); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

.demo-banner {
  background: var(--copper);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.demo-banner a { color: #fff; }
.app-body { background: #0f0e0d; color: #fff; }
.app-shell { display: grid; min-height: 100dvh; }
.app-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 12px;
  background: #171513;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.app-nav .brand-mark { font-size: 26px; }
.app-nav nav { display: flex; gap: 6px; }
.app-nav button {
  border: 0;
  background: transparent;
  color: #cfc4b7;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}
.app-nav button.is-on { background: #2a241f; color: #fff; }
.app-shop { display: none; margin: 0; color: #b8aea3; font-size: 12px; }
.app-main { padding: 16px 16px 40px; }
.app-top {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 18px;
}
.app-top h1 {
  font-family: var(--display);
  font-size: clamp(28px, 7vw, 44px);
  margin: 0;
  text-transform: uppercase;
}
.app-panel[hidden] { display: none !important; }
.app-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.app-split { display: grid; gap: 16px; }
.day-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}
.day-list button, .barber-switch button {
  border: 1px solid var(--line);
  background: #171513;
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 700;
}
.day-list button.is-on, .barber-switch button.is-on, .appt-list .is-on {
  background: var(--copper);
  border-color: var(--copper);
}
.barber-switch { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; }
.appt-detail {
  background: #171513;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  min-height: 160px;
}
.appt-detail h3 { margin: 0 0 8px; }
.muted { color: #b8aea3; }
.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.data-table th, .data-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.data-table th { color: #b8aea3; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.plan-admin { display: grid; gap: 12px; }
.plan-admin article {
  background: #171513;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.caixa-note { color: #b8aea3; }

@media (min-width: 860px) {
  .desk-nav, .nav-ghost { display: flex; }
  .menu-btn { display: none; }
  .hero {
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    padding: 28px 32px 64px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .hero-cta .btn { width: auto; }
  .product-body { grid-template-columns: 1fr; }
  .product-side { display: none; }
  .pain-grid, .plan-grid, .plan-admin { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid.four { grid-template-columns: repeat(2, 1fr); }
  .journey, .compare { grid-template-columns: 1fr 1fr; }
  .agenda-layout, .sign-grid, .foot-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .week-grid { grid-template-columns: repeat(6, 1fr); }
  .app-shell { grid-template-columns: 220px 1fr; }
  .app-nav {
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding: 20px 14px;
  }
  .app-nav nav { flex-direction: column; }
  .app-shop { display: block; margin-top: auto; }
  .app-kpis { grid-template-columns: repeat(4, 1fr); }
  .app-split { grid-template-columns: 120px 1fr 260px; }
  .day-list { flex-direction: column; overflow: visible; }
  .featured { transform: translateY(-8px); }
}

@media (hover: hover) and (min-width: 860px) {
  .btn:hover { filter: brightness(1.08); }
  .plan-card { transition: transform 0.35s var(--ease); }
  .plan-card:hover { transform: translate3d(0, -6px, 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
