body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8fafc;
  color: #222;
}
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}
.header {
  background: linear-gradient(90deg, #3bb77e 0%, #ffd700 100%);
  color: #fff;
  padding: 0;
}
.header-flex {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .header-flex {
    flex-direction: row;
    align-items: flex-end;
  }
}
.header-title h1 {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0;
}
.header-title p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0.2rem 0 0 0;
}
.header-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .header-info {
    flex-direction: row;
    gap: 1.5rem;
  }
}
.info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
}
.icon {
  font-size: 1.1em;
}
.main-content {
  padding: 2rem 0 0 0;
}
.menu-category {
  margin-bottom: 3rem;
}
.menu-category h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 1.2rem;
  border-bottom: 2px solid #3bb77e;
  padding-bottom: 0.5rem;
}
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.menu-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.7rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: box-shadow 0.3s, border 0.3s;
  position: relative;
}
.menu-item:hover {
  box-shadow: 0 4px 24px 0 rgba(59,183,126,0.08);
  border-color: #3bb77e33;
}
@media (min-width: 768px) {
  .menu-item {
    flex-direction: row;
    align-items: center;
  }
}
.menu-item-info {
  flex: 1;
}
.menu-item-info h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
  color: #222;
}
.menu-item-info p {
  color: #666;
  margin: 0 0 1rem 0;
  line-height: 1.5;
}
.menu-item-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #3bb77e;
}
.menu-item-img {
  width: 120px;
  height: 120px;
  background: #f3f4f6;
  border-radius: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
}
.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.7rem;
  display: block;
}
@media (min-width: 768px) {
  .menu-item-img {
    width: 160px;
    height: 160px;
  }
}
.footer {
  background: #f3f4f6;
  padding: 2rem 0 1rem 0;
  margin-top: 4rem;
  text-align: center;
}
.footer h3 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 0.5rem;
}
.footer p {
  color: #666;
  margin: 0.2rem 0;
}
.footer-copy {
  font-size: 0.95rem;
  color: #888;
  margin-top: 0.7rem;
}
.header-novo {
  background: #fff;
  padding: 1.2rem 0 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.header-novo-top {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}
.header-novo-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #e5e7eb;
  background: #fff;
}
.header-novo-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.header-novo-agendado {
  color: #e69a00;
  font-weight: 600;
  font-size: 1rem;
}
.header-novo-abre {
  color: #22b14c;
  font-weight: 500;
  margin-left: 0.2rem;
  font-size: 1rem;
}
.header-novo-nome {
  font-size: 1.25rem;
  font-weight: bold;
  color: #444;
}
.header-novo-endereco {
  color: #888;
  font-size: 1rem;
}
.header-novo-barra {
  display: flex;
  max-width: 900px;
  margin: 1.1rem auto 0 auto;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.03);
}
.header-novo-col {
  flex: 1;
  text-align: center;
  padding: 0.7rem 0.5rem 0.5rem 0.5rem;
  font-size: 1.08rem;
  color: #888;
  font-weight: 500;
  border-right: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header-novo-col:last-child {
  border-right: none;
}
.header-novo-col.verde {
  color: #22b14c;
  font-weight: bold;
  font-size: 1.1rem;
}
.header-novo-entrega, .header-novo-minimo {
  color: #4a4a4a;
  font-weight: bold;
  font-size: 1.08rem;
}
@media (max-width: 600px) {
  .header-novo-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
  .header-novo-barra {
    flex-direction: column;
    border-radius: 0.8rem;
  }
  .header-novo-col {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.7rem 0.5rem;
  }
  .header-novo-col:last-child {
    border-bottom: none;
  }
}
a.menu-item {
  text-decoration: none;
  color: inherit;
}
a.menu-item:visited {
  color: inherit;
}
a.menu-item:hover {
  text-decoration: none;
  color: inherit;
} 
@media (max-width: 600px) {
  .container {
    padding: 0;
    max-width: 100vw;
  }
  .main-content {
    padding: 0.5rem 0 0 0;
  }
  .menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .menu-item {
    display: block !important;
    width: 96vw;
    max-width: 99vw;
    margin: 0 auto 0.7rem auto;
    border-radius: 0.6rem;
    padding: 0.7rem 0.5rem;
    box-sizing: border-box;
  }
  .menu-item-img {
    width: 100%;
    max-width: 320px;
    height: 180px;
    margin: 0 auto 0.7rem auto;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu-item-img img {
    border-radius: 0.6rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .menu-item-info {
    text-align: left;
    padding: 0 0.2rem;
    width: 100%;
    box-sizing: border-box;
  }
} 
@media (max-width: 600px) {
  .header-novo-barra {
    flex-direction: row !important;
    display: flex;
    border-radius: 0.8rem;
  }
  .header-novo-col {
    border-right: 1px solid #e5e7eb;
    border-bottom: none;
    padding: 0.7rem 0.5rem;
    font-size: 0.98rem;
  }
  .header-novo-col:last-child {
    border-right: none;
    border-bottom: none;
  }
} 
.selo-favorito {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #7c2d12;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.25em 0.8em;
  border-radius: 1.2em;
  z-index: 2;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  gap: 0.3em;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}
@media (max-width: 600px) {
  .selo-favorito {
    top: 7px;
    left: 7px;
    font-size: 0.97rem;
    padding: 0.18em 0.7em;
    margin-bottom: 0.4rem;
  }
} 
@media (max-width: 600px) {
  .header-novo-abre {
    margin-bottom: 0;
    display: block;
    line-height: 1.05;
    color: #22b14c;
  }
  .header-novo-nome {
    margin-top: -1.0rem;
    padding-top: 0;
    line-height: 1.1;
  }
} 
.mais-pedidos {
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
  padding: 0 1rem;
}
.mais-pedidos-titulo {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0.7rem 0 0.7rem 0;
  color: #222;
}
.mais-pedidos-lista {
  display: flex;
  gap: 1.1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.mais-pedido-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.8rem;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.03);
  padding: 0.7rem 0.7rem 0.5rem 0.7rem;
  width: 31%;
  min-width: 170px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 1rem;
}
.mais-pedido-img-wrapper {
  width: 100%;
  height: 120px;
  border-radius: 0.7rem;
  overflow: hidden;
  margin-bottom: 0.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mais-pedido-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.7rem;
  display: block;
}
.mais-pedido-selo {
  position: absolute;
  top: 7px;
  left: 7px;
  background: #7c2d12;
  color: #fff;
  font-weight: 600;
  font-size: 0.93rem;
  padding: 0.18em 0.7em;
  border-radius: 1.2em;
  z-index: 2;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  gap: 0.3em;
  letter-spacing: 0.01em;
}
.mais-pedido-info {
  text-align: center;
  width: 100%;
  margin-top: 0.2rem;
}
.mais-pedido-nome {
  font-weight: bold;
  color: #222;
  font-size: 1.05rem;
  display: block;
}
.mais-pedido-preco {
  color: #22b14c;
  font-weight: bold;
  font-size: 1.05rem;
  display: block;
  margin-top: 0.1rem;
}
.mais-pedido-extra {
  color: #888;
  font-size: 0.95rem;
  display: block;
  margin-top: 0.1rem;
}
@media (max-width: 900px) {
  .mais-pedido-card {
    width: 48%;
    min-width: 140px;
    max-width: 100%;
    padding: 0.6rem 0.3rem 0.4rem 0.3rem;
  }
  .mais-pedido-img-wrapper {
    height: 100px;
  }
}
@media (max-width: 600px) {
  .mais-pedidos-lista {
    gap: 0.7rem;
    flex-wrap: wrap;
  }
  .mais-pedido-card {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    margin: 0 auto 0.7rem auto;
  }
  .mais-pedido-img-wrapper {
    height: 100px;
  }
}
.header-novo {
  padding-top: 0.7rem;
  padding-bottom: 0.5rem;
} 
.header-novo-destaque-preto {
  color: #222;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  display: block;
} 