:root {
  --color-bg: #f5f4f2;
  --color-surface: #ffffff;
  --color-text: #262322;
  --color-muted: #6b6b6b;
  --color-border: #e4e0db;
  --color-primary: #c2480c;
  --color-primary-dark: #9c3a09;
  --color-brand-orange: #ff6422;
  --color-brand-gray: #6b6b6b;
  --color-success: #1f8a4c;
  --color-danger: #c8382b;
  --color-warning: #b8790a;
  --radius: 10px;
  --shadow: 0 1px 3px rgba(38, 35, 34, 0.08), 0 1px 2px rgba(38, 35, 34, 0.06);
  font-size: 16px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.45;
}

::selection { background: #ffd9c2; color: var(--color-text); }

* { scrollbar-color: #d8bfa8 var(--color-bg); scrollbar-width: thin; }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: var(--color-bg); }
*::-webkit-scrollbar-thumb { background: #d8bfa8; border-radius: 999px; border: 2px solid var(--color-bg); }
*::-webkit-scrollbar-thumb:hover { background: var(--color-brand-orange); }

h1, h2, h3 { letter-spacing: -0.01em; }

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem;
}

.narrow {
  max-width: 460px;
}

body {
  border-top: 4px solid var(--color-brand-orange);
}

.topbar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 1px 4px rgba(38, 35, 34, 0.05);
}

.topbar .brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  border-radius: 6px;
  padding: 0.15rem 0.3rem;
  margin: -0.15rem -0.3rem;
  transition: background 0.15s ease;
}

.topbar .brand:hover,
.topbar .brand:focus-visible {
  background: var(--color-bg);
}

.topbar .brand img {
  height: 34px;
  width: auto;
  display: block;
}

.topbar h1 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--color-text);
  font-weight: 700;
}

.topbar .who {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.brand-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.brand-header img {
  height: 56px;
  width: auto;
}

.app-footer {
  max-width: 1100px;
  margin: 2rem auto 1rem;
  padding: 1.1rem 1.25rem 0.5rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.6;
}

.app-footer strong {
  color: var(--color-text);
}

.app-footer a {
  color: var(--color-primary);
  text-decoration: none;
}

.app-footer a:hover {
  text-decoration: underline;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  transition: box-shadow 0.15s ease;
}

.card h2 {
  margin-top: 0;
  font-size: 1.05rem;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 720px) {
  .grid-2 { grid-template-columns: 1fr; }
}

label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.3rem;
  margin-top: 0.75rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--color-surface);
  color: var(--color-text);
}

input, select, textarea {
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(194, 72, 12, 0.15);
}

button:focus-visible, .btn:focus-visible, a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--color-primary);
  color: #fff;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

button:hover, .btn:hover { background: var(--color-primary-dark); }
button:active, .btn:active { transform: translateY(1px); }
button:disabled { background: #a9b6c2; cursor: not-allowed; transform: none; }

button.secondary, .btn.secondary { background: var(--color-surface); color: var(--color-text); border: 1px solid var(--color-border); }
button.secondary:hover, .btn.secondary:hover { background: #eef1f4; border-color: #d5cfc7; }

button.danger { background: var(--color-danger); }
button.danger:hover { background: #98241a; }

button.small { padding: 0.35rem 0.7rem; font-size: 0.82rem; }

.form-actions { margin-top: 1rem; display: flex; gap: 0.6rem; flex-wrap: wrap; }

.punch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.9rem;
  margin: 1rem 0;
}

.punch-btn {
  padding: 1.5rem 0.6rem;
  font-size: 1rem;
  border-radius: 12px;
  flex-direction: column;
  min-height: 84px;
  box-shadow: 0 2px 6px rgba(194, 72, 12, 0.18);
}

.punch-btn:hover { box-shadow: 0 4px 10px rgba(194, 72, 12, 0.25); }

.punch-btn .icon { font-size: 1.6rem; }

.status-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge.ok { background: #e3f5e9; color: var(--color-success); }
.badge.warn { background: #fdf1de; color: var(--color-warning); }
.badge.bad { background: #fbe4e1; color: var(--color-danger); }
.badge.neutral { background: #eef1f4; color: var(--color-muted); }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th, td {
  text-align: left;
  padding: 0.6rem 0.65rem;
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}

th { color: var(--color-muted); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; background: var(--color-bg); }

thead tr:first-child th:first-child { border-top-left-radius: 8px; }
thead tr:first-child th:last-child { border-top-right-radius: 8px; }

tbody tr { transition: background 0.1s ease; }
tbody tr:hover { background: #faf6f2; }
tbody tr:last-child td { border-bottom: none; }

.table-wrap { overflow-x: auto; border: 1px solid var(--color-border); border-radius: 8px; }

.msg {
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin: 0.75rem 0;
  border-left: 3px solid transparent;
  animation: modal-fade-in 0.15s ease;
}

.msg.error { background: #fbe4e1; color: #7a1d14; border-left-color: var(--color-danger); }
.msg.success { background: #e3f5e9; color: #175c33; border-left-color: var(--color-success); }
.msg.info { background: #e6eef8; color: #123f7a; border-left-color: #2f6fb8; }

.hidden { display: none !important; }

/* ---------------------------------------------------------- painel/dashboard -- */
.dash-today-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.dash-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.dash-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-success);
  flex: none;
  animation: dash-pulse 2s infinite;
}

@keyframes dash-pulse {
  0% { box-shadow: 0 0 0 0 rgba(31, 138, 76, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(31, 138, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 138, 76, 0); }
}

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.9rem;
  margin: 1rem 0 1.3rem;
}

.dash-kpi {
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  box-shadow: 0 2px 8px rgba(38, 35, 34, 0.12);
}

.dash-kpi-value {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.1;
}

.dash-kpi-label {
  font-size: 0.84rem;
  font-weight: 600;
}

.dash-kpi.ok { background: var(--color-success); }
.dash-kpi.warning { background: var(--color-warning); }
.dash-kpi.danger { background: var(--color-danger); }
.dash-kpi.neutral { background: var(--color-brand-gray); }

.dash-emp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 0.9rem;
}

.dash-emp-card {
  border: 1px solid var(--color-border);
  border-left: 6px solid var(--color-border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  background: var(--color-surface);
}

.dash-emp-card.severity-danger { border-left-color: var(--color-danger); background: #fdf1ef; }
.dash-emp-card.severity-warning { border-left-color: var(--color-warning); background: #fdf6e8; }
.dash-emp-card.severity-ok { border-left-color: var(--color-success); background: #eef8f1; }

.dash-emp-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.dash-emp-name { font-weight: 700; }
.dash-emp-company { font-size: 0.78rem; color: var(--color-muted); display: block; font-weight: 400; }

.dash-emp-tag {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
  color: #fff;
}
.dash-emp-tag.severity-danger { background: var(--color-danger); }
.dash-emp-tag.severity-warning { background: var(--color-warning); }
.dash-emp-tag.severity-ok { background: var(--color-success); }

.dash-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.dash-step {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.76rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-muted);
}

.dash-step.done { border-color: rgba(31, 138, 76, 0.35); background: #eef8f1; color: var(--color-success); font-weight: 600; }
.dash-step.pending.severity-danger { border-color: rgba(200, 56, 43, 0.35); background: #fdf1ef; color: var(--color-danger); font-weight: 700; }
.dash-step.pending.severity-warning { border-color: rgba(184, 121, 10, 0.35); background: #fdf6e8; color: var(--color-warning); font-weight: 700; }

.dash-others {
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-muted);
}

.dash-others .chip {
  display: inline-block;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  margin: 0.15rem 0.3rem 0.15rem 0;
}

.tabs {
  display: flex;
  gap: 0.4rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  color: var(--color-muted);
  border-radius: 8px 8px 0 0;
  padding: 0.6rem 1rem;
  font-weight: 600;
  transition: color 0.15s ease, background 0.15s ease;
}

.tab-btn:hover:not(.active) { color: var(--color-text); background: rgba(38, 35, 34, 0.04); }

.tab-btn.active {
  color: var(--color-primary);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-bottom-color: var(--color-surface);
  margin-bottom: -1px;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 40, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  z-index: 50;
  animation: modal-fade-in 0.15s ease;
}

.modal {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 460px;
  width: 100%;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  box-shadow: 0 12px 30px rgba(20, 15, 10, 0.18), 0 2px 8px rgba(20, 15, 10, 0.1);
  animation: modal-pop-in 0.15s ease;
}

.modal.wide { max-width: 560px; }

@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modal-pop-in {
  from { opacity: 0; transform: translateY(6px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal h2 {
  margin-top: 0;
  position: sticky;
  top: -1.5rem;
  background: var(--color-surface);
  padding-top: 1.5rem;
  margin-bottom: 0;
  z-index: 1;
}

.helper {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-top: 0.3rem;
}

.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: radial-gradient(circle at 50% -10%, #fff0e6 0%, var(--color-bg) 55%);
}

.login-wrap .narrow {
  box-shadow: 0 16px 40px rgba(20, 15, 10, 0.1), 0 2px 8px rgba(20, 15, 10, 0.06);
}

.brand-header img {
  filter: drop-shadow(0 2px 6px rgba(194, 72, 12, 0.15));
}

.center-title {
  text-align: center;
  margin-bottom: 0.3rem;
}

.center-sub {
  text-align: center;
  color: var(--color-muted);
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.forgot-link-wrap {
  text-align: center;
  margin: 0.9rem 0 0;
  font-size: 0.85rem;
}

.forgot-link-wrap a {
  color: var(--color-muted);
}

.forgot-link-wrap a:hover {
  color: var(--color-primary);
}

/* ---------------------------------------------------------------------- */
/* Tela inicial de login (split-screen)                                    */
/* ---------------------------------------------------------------------- */

.login-shell {
  min-height: 100vh;
  display: flex;
}

.login-showcase {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 3.5rem;
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 100, 34, 0.16) 0%, rgba(255, 100, 34, 0) 45%),
    linear-gradient(165deg, #2a2624 0%, #201d1c 60%, #171514 100%);
  color: #f2efec;
  position: relative;
  overflow: hidden;
}

.login-showcase-inner {
  max-width: 480px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.login-showcase-brand {
  margin-bottom: 2.5rem;
}

.login-showcase-brand img {
  height: 52px;
  display: block;
}

.login-showcase-title {
  font-size: 1.9rem;
  line-height: 1.25;
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}

.login-showcase-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #c9c3bd;
  margin: 0 0 2rem;
}

.login-feature-list {
  list-style: none;
  margin: 0 0 2.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
  line-height: 1.4;
  color: #f2efec;
}

.login-feature-list li strong {
  color: #fff;
}

.login-feature-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
}

.login-feature-icon svg {
  width: 13px;
  height: 13px;
  color: #fff;
}

.login-showcase-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  margin: 0 0 2rem;
  font-size: 0.88rem;
}

.login-showcase-links a {
  color: #ffb08a;
}

.login-showcase-links a:hover {
  color: #fff;
}

.login-illustration {
  display: flex;
  justify-content: flex-start;
  opacity: 0.9;
}

.login-illustration svg {
  width: 180px;
  height: auto;
}

.login-form-side {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: var(--color-bg);
}

.login-form-side-inner {
  width: 100%;
  max-width: 420px;
}

.login-card {
  width: 100%;
  box-shadow: 0 16px 40px rgba(20, 15, 10, 0.08), 0 2px 8px rgba(20, 15, 10, 0.05);
}

.login-mobile-brand {
  display: none;
}

@media (max-width: 900px) {
  .login-showcase {
    display: none;
  }

  .login-form-side {
    padding: 2.5rem 1.25rem;
  }

  .login-mobile-brand {
    display: flex;
  }
}

.filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.filters > div { min-width: 160px; }

.inline-form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.weekday-picker {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.3rem;
}

.weekday-picker label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--color-text);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.weekday-picker label:has(input:checked) {
  background: #fdece1;
  border-color: var(--color-brand-orange);
  color: var(--color-primary-dark);
  font-weight: 600;
}

.weekday-picker input { width: auto; }

.balance-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.balance-value {
  font-size: 1.6rem;
  font-weight: 700;
}

.balance-value.positive { color: var(--color-success); }
.balance-value.negative { color: var(--color-danger); }
.balance-value.zero { color: var(--color-muted); }

.stat-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.stat-box {
  flex: 1;
  min-width: 160px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-brand-orange);
  border-radius: 10px;
  padding: 0.9rem 1rem;
}

.stat-box .label {
  font-size: 0.78rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.stat-box .value {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 0.2rem;
}

/* ------------------------------------------------------------ multi-empresa */
.role-badge {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: var(--color-brand-orange);
  color: #fff;
  margin-left: 0.4rem;
}

.company-bar {
  background:
    linear-gradient(var(--color-surface), var(--color-surface)) padding-box,
    linear-gradient(90deg, var(--color-brand-orange), var(--color-primary)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.company-bar label {
  margin: 0;
  white-space: nowrap;
}

.company-bar select {
  min-width: 260px;
  width: auto;
}

.company-bar .company-status {
  font-size: 0.82rem;
  color: var(--color-muted);
}

/* ------------------------------------------------------------ espelho de ponto (impressao) */
.espelho-page {
  max-width: 900px;
  margin: 1.5rem auto;
  padding: 0 1rem;
}

.espelho-toolbar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 1.25rem;
}

.espelho-sheet {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.espelho-letterhead {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}

.espelho-letterhead img { height: 48px; width: auto; }

.espelho-letterhead .company-info { font-size: 0.82rem; color: var(--color-muted); line-height: 1.5; }
.espelho-letterhead .company-info strong { color: var(--color-text); font-size: 0.95rem; }

.espelho-title { text-align: center; margin: 0 0 1.25rem; font-size: 1.15rem; }

.espelho-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 1.5rem;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.espelho-meta div span { color: var(--color-muted); }

.espelho-sheet table { font-size: 0.82rem; }
.espelho-sheet th, .espelho-sheet td { white-space: normal; }

.espelho-signature {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: center;
  font-size: 0.85rem;
}

.espelho-signature .line {
  border-top: 1px solid var(--color-text);
  margin-top: 2.5rem;
  padding-top: 0.4rem;
}

.espelho-declaration {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 1.5rem;
}

@media print {
  body { border-top: none; background: #fff; }
  .no-print { display: none !important; }
  .espelho-page { max-width: none; margin: 0; padding: 0; }
  .espelho-sheet { box-shadow: none; border: none; padding: 0; }
}
