/* Comida Nunca Chega — paleta inspirada no iFood */
:root {
  --red: #EA1D2C;
  --red-dark: #C4121F;
  --red-soft: #FDECEE;
  --ink: #3E3E3E;
  --muted: #717171;
  --line: #EDEBE9;
  --bg: #FAF8F6;
  --card: #FFFFFF;
  --green: #2E8B57;
  --radius: 12px;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  --font: 'Nunito Sans', -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* Aviso */
.disclaimer-bar {
  background: #FFF2CC;
  color: #6B4E00;
  border-bottom: 1px solid #F0DFA6;
  text-align: center;
  font-size: 0.85rem;
  padding: 8px 14px;
}

/* Header */
.header {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}
.logo-img {
  height: 60px;
  width: auto;
  mix-blend-mode: multiply; /* some com o fundo claro do PNG */
}

.address {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
}
.address strong { color: var(--ink); }
.address:hover { color: var(--red); }

.search-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 14px;
  color: var(--muted);
  min-width: 0;
}
.search-wrap input {
  border: none;
  background: none;
  outline: none;
  font-family: var(--font);
  font-size: 0.95rem;
  width: 100%;
  color: var(--ink);
}

.cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--red);
  cursor: pointer;
  padding: 6px;
}
.cart-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Hero: categorias estilo app de delivery */
.hero-cats { padding: 44px 20px 8px; }
.hero-title {
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.5px;
}
.hero-tag {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 6px 0 26px;
}
.cats {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 14px;
  scrollbar-width: thin;
}
.cat {
  background: none;
  border: none;
  font-family: var(--font);
  cursor: pointer;
  text-align: center;
  flex: 0 0 auto;
}
.cat-img {
  display: block;
  width: 108px;
  height: 96px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow);
  border: 3px solid transparent;
  transition: border-color 0.15s, transform 0.15s;
}
.cat-img img { width: 100%; height: 100%; object-fit: cover; }
.cat:hover .cat-img { transform: translateY(-3px); }
.cat.active .cat-img { border-color: var(--red); }
.cat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}
.cat.active .cat-label { color: var(--red); font-weight: 800; }

/* Banners promocionais */
.banners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 8px;
}
.banner {
  border-radius: var(--radius);
  color: #fff;
  padding: 22px 24px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
}
.banner strong {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.banner span { font-size: 0.9rem; opacity: 0.94; margin-top: 4px; }
.banner-a { background: linear-gradient(120deg, #E5106C 0%, #EA1D2C 90%); }
.banner-b { background: linear-gradient(120deg, #EA1D2C 0%, #B80F1C 90%); }
.banner-c { background: linear-gradient(120deg, #C4121F 0%, #8F0A14 90%); }

/* Mais pedidos */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.section-title small {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}
.see-more {
  color: var(--red);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}
.see-more:hover { text-decoration: underline; }
.popular-section { padding-bottom: 10px; }
.popular-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scrollbar-width: thin;
}
.popular-row .card { flex: 0 0 250px; }

/* Botões */
.btn {
  display: inline-block;
  border: none;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 12px 22px;
  transition: background 0.15s, transform 0.1s;
}
.btn:active { transform: scale(0.98); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-light { background: #fff; color: var(--red); }
.btn-light:hover { background: #ffe9eb; }
.btn-ghost {
  background: none;
  color: var(--muted);
  border: 1px solid var(--line);
  margin-top: 26px;
}
.btn-ghost:hover { color: var(--red); border-color: var(--red); }

/* Seções */
.section { padding: 56px 0; }
.section-title {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

/* Categorias */
.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.chip {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
}
.chip:hover { border-color: var(--red); color: var(--red); }
.chip.active { background: var(--red); border-color: var(--red); color: #fff; }

/* Grid de pratos */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.12); }

.card-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255,255,255,0.95);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}

.card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.card-restaurant {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.card-title { font-size: 1.05rem; font-weight: 800; margin: 2px 0 4px; }
.card-desc { font-size: 0.85rem; color: var(--muted); flex: 1; }

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 10px 0;
}
.card-meta .star { color: #E6A317; font-weight: 800; }
.card-meta .dot::before { content: '·'; }
.card-meta .free-delivery { color: var(--green); font-weight: 700; }

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.card-price { font-weight: 900; font-size: 1.1rem; }
.card-price small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green);
}
.btn-add {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 9px 16px;
  cursor: pointer;
}
.btn-add:hover { background: var(--red-dark); }

.empty {
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
}

/* Como funciona */
.how { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.step {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 26px;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.step p { font-size: 0.9rem; color: var(--muted); }

/* Depoimentos */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.testimonial {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  font-size: 0.95rem;
}
.testimonial footer { margin-top: 12px; font-size: 0.8rem; color: var(--muted); }

/* FAQ */
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 10px;
}
.faq-item summary {
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--red);
  font-weight: 900;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 10px; color: var(--muted); font-size: 0.93rem; }

/* Drawer (carrinho) */
.drawer-overlay, .modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 90;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--card);
  z-index: 100;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,0.18);
  animation: slide-in 0.22s ease;
}
@keyframes slide-in { from { transform: translateX(60px); opacity: 0; } to { transform: none; opacity: 1; } }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h2 { font-size: 1.2rem; font-weight: 900; }

.icon-btn {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
}
.icon-btn:hover { color: var(--red); }

.drawer-body { flex: 1; overflow-y: auto; padding: 12px 20px; }
.drawer-empty { padding: 40px 20px; text-align: center; color: var(--muted); }

.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 800; font-size: 0.92rem; }
.cart-item-price { font-size: 0.85rem; color: var(--muted); }
.qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.qty button {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--red);
  font-weight: 900;
  cursor: pointer;
}
.qty button:hover { border-color: var(--red); }
.qty span { font-weight: 800; min-width: 18px; text-align: center; }

.drawer-foot { padding: 18px 20px; border-top: 1px solid var(--line); }
.cart-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.cart-row.total { color: var(--ink); font-weight: 900; font-size: 1.05rem; }
.cart-row .free { color: var(--green); font-weight: 700; }

/* Modal checkout */
.modal-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 110;
}
.modal {
  background: var(--card);
  border-radius: var(--radius);
  width: min(480px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  padding: 24px;
  animation: pop 0.2s ease;
}
@keyframes pop { from { transform: scale(0.95); opacity: 0; } to { transform: none; opacity: 1; } }

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.modal-head h2 { font-size: 1.25rem; font-weight: 900; }
.modal-note { font-size: 0.83rem; color: var(--muted); margin-bottom: 18px; }

#checkout-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 14px;
}
#checkout-form input {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkout-summary {
  border-top: 1px dashed var(--line);
  padding-top: 14px;
  margin: 6px 0 16px;
}

/* Rastreamento */
.tracking { padding: 40px 20px 70px; max-width: 720px; }
.tracking-head { margin-bottom: 22px; }
.tracking-title { font-size: 1.7rem; font-weight: 900; letter-spacing: -0.5px; }
.tracking-title span { color: var(--red); }
.tracking-sub { color: var(--muted); margin-top: 10px; font-weight: 700; }

.eta-clock {
  font-size: clamp(2.6rem, 8vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.eta-clock.eta-warn { color: var(--red); animation: eta-blink 0.9s ease infinite; }
@keyframes eta-blink { 50% { opacity: 0.35; } }
.eta-note { font-size: 0.82rem; color: var(--muted); }

.tracking-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}

.progress-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.progress-bar {
  flex: 1;
  height: 10px;
  background: var(--line);
  border-radius: 5px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0;
  background: var(--red);
  border-radius: 5px;
  transition: width 0.6s ease;
}
.progress-label { font-weight: 900; font-size: 0.9rem; min-width: 40px; text-align: right; }

.timeline { list-style: none; }
.timeline li {
  position: relative;
  padding: 0 0 18px 30px;
  color: var(--muted);
  font-size: 0.95rem;
}
.timeline li::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: -4px;
  width: 2px;
  background: var(--line);
}
.timeline li:last-child::before { display: none; }
.timeline li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--card);
  border: 3px solid var(--line);
}
.timeline li.done { color: var(--ink); }
.timeline li.done::after { border-color: var(--red); background: var(--red); }
.timeline li.current { color: var(--ink); font-weight: 800; }
.timeline li.current::after { border-color: var(--red); background: #fff; }
.timeline li .time { font-size: 0.78rem; color: var(--muted); font-weight: 400; display: block; }

.tracking-final {
  background: var(--red-soft);
  border: 1px solid #F5C6CB;
  border-radius: var(--radius);
  text-align: center;
  padding: 30px 24px;
  margin-top: 10px;
}
.tracking-final h2 { font-size: 1.5rem; font-weight: 900; color: var(--red); margin-bottom: 8px; }
.tracking-final p { color: var(--ink); margin-bottom: 18px; }

/* Modal de detalhe do prato */
.dmodal { position: relative; padding: 0; overflow: hidden; width: min(560px, 100%); }
.dmodal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dmodal-scroll { max-height: 88vh; overflow-y: auto; }
.dmodal-img { aspect-ratio: 16 / 9; overflow: hidden; }
.dmodal-img img { width: 100%; height: 100%; object-fit: cover; }
.dmodal-body { padding: 20px 24px 26px; }
.dmodal-rest {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.dmodal-title { font-size: 1.45rem; font-weight: 900; letter-spacing: -0.5px; margin: 2px 0 6px; }
.dmodal-desc { color: var(--muted); font-size: 0.95rem; }
.dmodal-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 12px 0;
}
.dmodal-meta .star { color: #E6A317; font-weight: 800; }
.dmodal-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 14px 0 22px;
}
.dmodal-buy .card-price { font-size: 1.25rem; }

.recipe { border-top: 2px dashed var(--line); padding-top: 18px; }
.recipe-kicker {
  display: inline-block;
  background: var(--red-soft);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.recipe h3 { font-size: 1.15rem; font-weight: 900; margin-bottom: 4px; }
.recipe-intro { font-size: 0.9rem; color: var(--muted); margin-bottom: 14px; }
.recipe-facts {
  display: flex;
  gap: 18px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.recipe-facts strong { color: var(--ink); }
.recipe h4 { font-size: 0.95rem; font-weight: 800; margin: 14px 0 6px; }
.recipe ul, .recipe ol { margin: 0 0 6px 20px; font-size: 0.92rem; }
.recipe li { margin-bottom: 5px; }
.recipe-foot { font-size: 0.82rem; color: var(--muted); margin-top: 12px; font-style: italic; }

/* Carrinho flutuante */
.cart-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 13px 20px 13px 16px;
  font-family: var(--font);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(234, 29, 44, 0.45);
  animation: fab-in 0.25s ease;
}
@keyframes fab-in { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.cart-fab:hover { background: var(--red-dark); }
.fab-info { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.fab-info strong { font-size: 0.88rem; font-weight: 800; }
.fab-info span { font-size: 0.75rem; opacity: 0.9; }
.fab-badge {
  position: absolute;
  top: -6px;
  right: -4px;
  background: #fff;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 999px;
  z-index: 120;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  animation: pop 0.2s ease;
}

/* Footer */
.footer {
  background: #2B2B2B;
  color: #C9C9C9;
  padding: 44px 0 34px;
  margin-top: 40px;
}
.footer-logo {
  display: inline-block;
  background: #fff;
  border-radius: 10px;
  padding: 6px 14px;
  margin-bottom: 16px;
}
.footer-logo img { height: 46px; width: auto; mix-blend-mode: multiply; }
.footer-disclaimer { font-size: 0.85rem; max-width: 680px; }
.footer-disclaimer strong { color: #fff; }
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 18px 0;
}
.footer-links a { color: #fff; font-size: 0.87rem; text-decoration: none; }
.footer-links a:hover { color: var(--red); text-decoration: underline; }
.footer-copy { font-size: 0.78rem; color: #8A8A8A; }

/* Página Sobre */
.page { padding: 46px 0 60px; max-width: 760px; }
.page h1 { font-size: 2rem; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 18px; }
.page h2 { font-size: 1.3rem; font-weight: 900; margin: 30px 0 10px; }
.page p { margin-bottom: 14px; color: var(--ink); }
.page ul { margin: 0 0 14px 22px; }
.page li { margin-bottom: 6px; }
.credits-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.credits-table th, .credits-table td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
}
.credits-table th { color: var(--muted); font-weight: 700; }
.credits-table a { color: var(--red); }

/* Responsivo */
@media (max-width: 860px) {
  .address { display: none; }
}
@media (max-width: 620px) {
  .header-inner { gap: 10px; }
  .logo { font-size: 1.1rem; }
  .search-wrap { padding: 7px 10px; }
  .hero { padding: 52px 0 46px; }
  .section { padding: 40px 0; }
}
