/* ============================================================
   SABOR & ALMA - Design System
   Paleta "apetitosa": tons quentes que despertam fome
   ------------------------------------------------------------
   --tomate:   #c8401f  (vermelho tomate, acelera o apetite)
   --laranja:  #ff7f3f  (laranja suculento)
   --mostarda: #f4a300  (dourado quente)
   --creme:    #fdf6ec  (fundo creme, acolhedor)
   --chocolate:#3b2416  (marrom profundo, base)
   ------------------------------------------------------------
   Tipografia: Playfair Display (títulos) + Poppins (corpo)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,500;1,700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --tomate: #c8401f;
  --tomate-dark: #a53218;
  --laranja: #ff7f3f;
  --mostarda: #f4a300;
  --creme: #fdf6ec;
  --creme-2: #f7ecda;
  --chocolate: #3b2416;
  --chocolate-2: #241409;
  --verde-alface: #7d9b3a;
  --texto: #4a3a2e;
  --shadow-sm: 0 8px 24px rgba(59, 36, 22, 0.08);
  --shadow-lg: 0 24px 60px rgba(59, 36, 22, 0.18);
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--creme);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .playfair {
  font-family: 'Playfair Display', serif;
}

/* ------------------------------------------------------------
   NAVBAR
------------------------------------------------------------ */
.navbar {
  background: rgba(253, 246, 236, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 64, 31, 0.12);
  box-shadow: 0 4px 24px rgba(59, 36, 22, 0.06);
  font-family: 'Poppins', sans-serif;
  padding: 6px 0;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 8px 30px rgba(59, 36, 22, 0.12);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo1 {
  height: 54px;
  transition: transform 0.3s;
  cursor: pointer;
}

.logo1:hover {
  transform: scale(1.05);
}

.navbar-nav {
  gap: 6px;
  margin-left: auto;
  align-items: center;
}

.navbar-nav .nav-link {
  color: var(--chocolate) !important;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 15px;
  position: relative;
  transition: all 0.25s;
}

.navbar-nav .nav-link.active {
  color: #fff !important;
  background: linear-gradient(135deg, var(--tomate), var(--laranja));
  box-shadow: 0 6px 18px rgba(200, 64, 31, 0.35);
}

.navbar-nav .nav-link:not(.active):hover {
  color: var(--tomate) !important;
  background: rgba(200, 64, 31, 0.08);
  text-decoration: none;
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(25%) sepia(60%) saturate(1200%) hue-rotate(-20deg);
}

/* ------------------------------------------------------------
   HERO - Home
------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(36, 20, 9, 0.85) 0%, rgba(36, 20, 9, 0.45) 55%, rgba(36, 20, 9, 0.15) 100%),
    url('img/jantar-de-roast-beef-com-legumes.jpg') center/cover fixed no-repeat;
  text-align: center;
  overflow: hidden;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
  animation: heroIn 1.1s ease-out both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-kicker {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mostarda);
  background: rgba(244, 163, 0, 0.12);
  border: 1px solid rgba(244, 163, 0, 0.4);
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.hero h1 .accent {
  font-style: italic;
  background: linear-gradient(120deg, var(--laranja), var(--mostarda));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: #f5e9da;
  margin-bottom: 34px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-hero, .btn-hero-outline {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 34px;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.3px;
}

.btn-hero {
  color: #fff;
  background: linear-gradient(135deg, var(--tomate), var(--laranja));
  box-shadow: 0 12px 30px rgba(200, 64, 31, 0.45);
  margin-right: 12px;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(200, 64, 31, 0.55);
  color: #fff;
}

.btn-hero-outline {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}

/* ------------------------------------------------------------
   SEÇÃO MISSÃO
------------------------------------------------------------ */
.section-mission {
  padding: 100px 24px 80px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--tomate);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--chocolate);
  margin-bottom: 16px;
}

.section-title .accent {
  font-style: italic;
  color: var(--tomate);
}

.section-sub {
  max-width: 620px;
  margin: 0 auto 50px;
  color: var(--texto);
  font-weight: 300;
  font-size: 17px;
}

.cards-missao {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card-missao {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s, box-shadow 0.4s;
  border: 1px solid rgba(200, 64, 31, 0.08);
}

.card-missao:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.card-missao .img-wrap {
  overflow: hidden;
  position: relative;
  height: 220px;
}

.card-missao .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card-missao:hover .img-wrap img {
  transform: scale(1.08);
}

.card-missao .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(36, 20, 9, 0.55), transparent 55%);
}

.card-missao .num {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 3;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 800;
  color: var(--mostarda);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.card-missao .card-body {
  padding: 26px 24px;
  text-align: left;
}

.card-missao .card-body p {
  font-size: 15px;
  color: var(--texto);
  line-height: 1.7;
}

.card-missao .card-body::before {
  content: '';
  display: block;
  width: 46px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--tomate), var(--laranja));
  margin-bottom: 16px;
}

/* ------------------------------------------------------------
   BANNER CT Apetite (nova seção)
------------------------------------------------------------ */
.banner-appetite {
  position: relative;
  margin: 0 24px 100px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(59, 36, 22, 0.92) 0%, rgba(165, 50, 24, 0.6) 60%, rgba(255, 127, 63, 0.45) 100%),
    url('img/missao2.jpg') center/cover;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 30px;
  box-shadow: var(--shadow-lg);
}

.banner-appetite h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  max-width: 760px;
}

/* ------------------------------------------------------------
   ANIMAÇÕES - REVEAL ON SCROLL
------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

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

/* ------------------------------------------------------------
   FOOTER
------------------------------------------------------------ */
footer {
  background: linear-gradient(180deg, var(--chocolate-2), #180d06);
  color: #d9c8b6;
  padding: 40px 20px 28px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

footer .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

footer p {
  font-size: 14px;
  color: #b59f8c;
}

/* ------------------------------------------------------------
   CARDÁPIO - Menu de assinatura
   Conceito: "menu de cardápio gourmet"
   - Hero com selo giratório + indicadores
   - Abas navegáveis (cervejas / hambúrgueres)
   - Itens em lista com foto-medalhão, numeração e
     linha pontilhada até o preço (estilo menu gastronômico)
------------------------------------------------------------ */

/* ---- Hero ---- */
.menu-hero {
  position: relative;
  background:
    linear-gradient(105deg, rgba(24, 13, 6, 0.96) 0%, rgba(59, 36, 22, 0.88) 45%, rgba(165, 50, 24, 0.7) 100%),
    url('img/missao1.jpg') center/cover;
  color: #fff;
  padding: 86px 24px 72px;
  overflow: hidden;
}

.menu-hero .hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.menu-hero .hero-copy {
  flex: 1;
  min-width: 300px;
}

.menu-hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 10px 0 16px;
}

.menu-hero h1 .accent {
  color: var(--mostarda);
  font-style: italic;
}

.menu-hero p {
  font-weight: 300;
  color: #ecdcc8;
  max-width: 520px;
  font-size: 17px;
}

.menu-stats {
  display: flex;
  gap: 34px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.menu-stats .stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--mostarda);
  display: block;
  line-height: 1.1;
}

.menu-stats .stat span {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9b499;
}

/* ---- Selo giratório ---- */
.hero-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 168px;
}

.rotating-badge {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
  animation: spin 16s linear infinite;
}

.rotating-badge .ring {
  fill: var(--mostarda);
}

.rotating-badge .ring-soft {
  fill: var(--laranja);
  opacity: 0.18;
}

.rotating-badge .badge-path {
  fill: none;
}

.rotating-badge .badge-text {
  font-family: 'Poppins', sans-serif;
  font-size: 8.6px;
  font-weight: 700;
  letter-spacing: 1.6px;
  fill: var(--chocolate-2);
}

.rotating-badge .badge-center {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 24px;
  fill: var(--chocolate-2);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- Barra de abas ---- */
.menu-toolbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(253, 246, 236, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 64, 31, 0.12);
  box-shadow: 0 6px 22px rgba(59, 36, 22, 0.06);
  padding: 16px 20px;
}

.menu-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1080px;
}

.menu-tab {
  --bs-btn-padding-y: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--chocolate);
  background: #fff;
  border: 1.5px solid rgba(200, 64, 31, 0.25);
  border-radius: 60px;
  padding: 11px 22px;
  cursor: pointer;
  transition: all 0.28s;
}

.menu-tab small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #a08a76;
  margin-bottom: 2px;
}

.menu-tab span.tab-name {
  font-size: 14px;
}

.menu-tab.active {
  color: #fff;
  background: linear-gradient(135deg, var(--tomate), var(--laranja));
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(200, 64, 31, 0.35);
}

.menu-tab.active small {
  color: rgba(255, 255, 255, 0.75);
}

.menu-tab:not(.active):hover {
  border-color: var(--tomate);
  color: var(--tomate);
  transform: translateY(-2px);
}

/* ---- Conteúdo das abas ---- */
.tab-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 44px 24px 80px;
}

.tab-pane {
  display: none;
}

.tab-pane.active.show {
  display: block;
  animation: paneIn 0.4s ease both;
}

@keyframes paneIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-group-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.menu-group-label h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--chocolate);
  margin: 0;
}

.menu-group-label .rule {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--tomate), var(--laranja), transparent);
  border-radius: 2px;
}

.menu-group-label .count {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--tomate);
  background: var(--creme-2);
  padding: 5px 14px;
  border-radius: 30px;
}

/* ---- Lista de itens (menu de assinatura) ---- */
.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 22px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(200, 64, 31, 0.1);
  box-shadow: var(--shadow-sm);
  transition: transform 0.32s, box-shadow 0.32s, border-color 0.32s;
}

.menu-item:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 64, 31, 0.4);
  box-shadow: var(--shadow-lg);
}

.menu-photo {
  position: relative;
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #fff, var(--creme-2));
  border: 2px solid rgba(200, 64, 31, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-photo img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.4s;
}

.menu-photo.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
}

.menu-item:hover .menu-photo img {
  transform: scale(1.1) rotate(-2deg);
}

.menu-photo .pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(200, 64, 31, 0);
  animation: none;
}

.menu-item:hover .menu-photo .pulse {
  animation: pulseRing 1.4s ease-out infinite;
}

@keyframes pulseRing {
  from { border-color: rgba(200, 64, 31, 0.5); transform: scale(1); }
  to   { border-color: rgba(200, 64, 31, 0); transform: scale(1.35); }
}

.menu-tag {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tomate);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(200, 64, 31, 0.4);
}

.menu-body {
  flex: 1;
  min-width: 0;
}

.menu-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.menu-index {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 15px;
  color: var(--laranja);
}

.menu-head h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 16.5px;
  color: var(--chocolate);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-dots {
  flex: 1;
  min-width: 26px;
  border-bottom: 2px dotted rgba(200, 64, 31, 0.4);
  transform: translateY(-4px);
}

.menu-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 15.5px;
  color: var(--tomate);
  white-space: nowrap;
}

.menu-desc {
  font-size: 13px;
  color: #8a7564;
  font-weight: 300;
  margin: 7px 0 9px;
}

.menu-meta {
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #b88a63;
}

/* ---- Item em destaque ("O favorito da casa") ---- */
.featured {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(200, 64, 31, 0.14);
  box-shadow: var(--shadow-lg);
  margin-bottom: 36px;
  transition: transform 0.35s, box-shadow 0.35s;
}

.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 70px rgba(59, 36, 22, 0.26);
}

.featured-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.featured-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.featured:hover .featured-media img {
  transform: scale(1.05);
}

.featured-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: var(--tomate);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 40px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 36px;
  background:
    radial-gradient(circle at 90% 0%, rgba(244, 163, 0, 0.14), transparent 55%),
    #fff;
}

.featured-body .kicker {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--laranja);
}

.featured-body h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--chocolate);
  margin: 0;
}

.featured-body p {
  font-size: 15px;
  color: var(--texto);
  font-weight: 300;
  line-height: 1.7;
}

.featured-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.menu-price.big {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--tomate);
}

.menu-price.big small {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #8a7564;
  display: block;
  font-weight: 500;
}

.featured-cta {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--tomate), var(--laranja));
  padding: 12px 22px;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(200, 64, 31, 0.35);
  transition: all 0.28s;
}

.featured-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(200, 64, 31, 0.5);
  color: #fff;
}

/* ------------------------------------------------------------
   RESPONSIVO
------------------------------------------------------------ */
@media (max-width: 900px) {
  .featured {
    grid-template-columns: 1fr;
  }
  .featured-media {
    min-height: 240px;
  }
  .featured-body {
    padding: 26px;
  }
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
  .btn-hero {
    margin-right: 0;
    margin-bottom: 12px;
    display: block;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .btn-hero-outline {
    display: block;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .navbar-nav {
    margin-left: 0;
    text-align: center;
  }
  .banner-appetite {
    margin: 0 12px 60px;
  }
  .menu-hero {
    padding: 60px 20px 50px;
  }
  .hero-badge {
    margin: 10px auto 0;
    width: 130px;
    height: 130px;
  }
  .menu-stats {
    gap: 20px;
  }
  .menu-list {
    grid-template-columns: 1fr;
  }
}
