:root {
  --bg: #2b2b2b;         /* fundo cinza grafite */
  --panel: #3a3a3a;      /* caixas e botões */
  --panel-2: #242424;    
  --brand: #e53935;      /* vermelho Meraki */
  --brand-2: #f1c232;    /* amarelo dourado Meraki */
  --highlight: #00ff66;  /* verde neon detalhe */
  --text: #f8f8f8;
  --muted: #bbbbbb;
  --radius: 14px;
  --shadow: 0 8px 20px rgba(0,0,0,.35);
}

/* RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }

/* HERO */
.hero {
  position: relative;
  height: 55vh;
  min-height: 340px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.5);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.7));
}
.hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; text-align: center;
}
.logo-img {
  max-width: 240px;
  margin-bottom: 10px;
}
.tagline {
  font-size: 1.1rem;
  color: var(--brand-2);
  font-weight: bold;
  text-shadow: 0 2px 6px rgba(0,0,0,.4);
}

/* GRID DE BOTÕES */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: -28px auto 22px;
  max-width: 940px;
  padding: 0 16px;
}
.tile {
  background: var(--panel);
  border: 2px solid var(--brand);
  border-radius: var(--radius);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: .2s;
}
.tile:hover { 
  transform: scale(1.03);
  background: var(--panel-2);
}
.tile--primary {
  background: linear-gradient(135deg, var(--brand), #b71c1c);
}
.tile__icon {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--brand-2);
}
.tile__title {
  font-weight: 700;
  text-align: center;
}

/* GALERIA DE IMAGENS */
.promo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}


/* a imagem fica toda visível, com “faixas” se precisar */
.promo__grid img {
  width: 100%;
  height: auto;          /* deixa a altura se ajustar */
  max-height: 320px;     /* limite para não ficar gigante (ajuste se quiser) */
  object-fit: contain;   /* <<< mostra a imagem inteira, sem cortes */
  background: #2a2a2a;   /* fundo atrás da imagem (moldura) */
  padding: 8px;          /* respiro para não “colar” na borda */
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
/* UNIDADES */
.unidades {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 16px;
}
.unidades h2 {
  text-align: center;
  color: var(--brand-2);
  margin-bottom: 16px;
}
.box {
  background: var(--panel);
  border: 2px solid var(--brand);
  border-radius: var(--radius);
  padding: 18px 16px;
}
.box h3 {
  margin: 0 0 12px;
  color: var(--brand-2);
}
.horarios div { margin: 4px 0; }
.endereco { margin-top: 10px; }
.endereco a { color: var(--brand-2); font-weight: bold; }
.tel { margin-top: 6px; }
.tel a { color: var(--highlight); font-weight: bold; }

/* FOOTER */
.footer {
  text-align: center;
  padding: 22px;
  color: var(--muted);
  border-top: 2px solid var(--brand);
  margin-top: 20px;
}
.footer .social {
  margin-bottom: 8px;
}
.footer .social a {
  margin: 0 8px;
  font-size: 22px;
}
/* === PROMOÇÕES COM ETIQUETA DE DIA === */
.promo__item {
  position: relative;
}

.promo__item img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #2a2a2a;
  padding: 8px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.promo__tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #e63946;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,.4);
}
/* Grade das promoções */
.promo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.promo__item {
  position: relative;
}