body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f8f9fa;
}
h1, h2 {
  color: #e67e22;
  font-weight: 700;
}
.btn-primary {
  background: #e67e22;
  border: none;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover {
  background: #d35400;
  transform: scale(1.05);
}
.card {
  border: none;
  border-radius: 1rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(44,62,80,0.15);
  transform: translateY(-5px) scale(1.02);
}
.navbar {
  background: #2c3e50;
}
.navbar-brand, .nav-link {
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 1px;
}
.navbar-toggler {
  border: none;
  outline: none;
}
footer {
  background: #2c3e50;
  color: #fff;
}
.table thead th {
  background: #e67e22;
  color: #fff;
  border: none;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: #fff3e0;
}
.table-hover tbody tr:hover {
  background-color: #ffe0b2;
}
section {
  scroll-margin-top: 80px;
}
.brand-highlight {
  color: #e67e22;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 1px 2px 8px rgba(44,62,80,0.10);
}
.slogan {
  font-size: 1.25rem;
  color: #2c3e50;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 1px;
  text-align: left;
}
@media (max-width: 768px) {
  .slogan {
    font-size: 1rem;
    text-align: center;
  }
  .brand-highlight {
    font-size: 1.2rem;
  }
}
/* Estilos para o sistema de reservas */
#mapa-mesas {
  min-height: 120px;
  margin-bottom: 1rem;
  gap: 1rem;
}
.mesa {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  margin: 0.5rem;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
  transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
}
.mesa.disponivel {
  background: #27ae60;
  color: #fff;
}
.mesa.reservada {
  background: #c0392b;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.7;
}
.mesa.ocupada {
  background: #f1c40f;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.8;
}
.mesa.selecionada {
  border: 3px solid #e67e22;
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(230,126,34,0.15);
}
#reserva-feedback {
  min-height: 32px;
}
@media (max-width: 600px) {
  #mapa-mesas {
    gap: 0.5rem;
  }
  .mesa {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }
}
/* Wizard de Reservas Avançado */
#reserva-wizard {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 32px rgba(44,62,80,0.10);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
}
.reserva-step { animation: fadeIn 0.5s; }
@keyframes fadeIn { from { opacity:0; transform: translateY(30px);} to { opacity:1; transform: none; } }
#mapa-mesas {
  min-height: 220px;
  margin: 1.5rem 0 1rem 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 18px 12px;
  width: 100%;
  max-width: 420px;
}
.mesa {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.05rem;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
  transition: transform 0.2s, box-shadow 0.2s, border 0.2s, background 0.2s;
  position: relative;
}
.mesa.disponivel { background: #27ae60; color: #fff; }
.mesa.reservada { background: #c0392b; color: #fff; cursor: not-allowed; opacity: 0.7; }
.mesa.ocupada { background: #f1c40f; color: #fff; cursor: not-allowed; opacity: 0.8; }
.mesa.selecionada { border: 3px solid #e67e22; transform: scale(1.10); box-shadow: 0 4px 16px rgba(230,126,34,0.15); z-index:2; }
.mesa .mesa-label { position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%); font-size: 0.8rem; color: #555; }
.mesa .mesa-zona { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); font-size: 0.7rem; color: #888; }
.mesa:hover, .mesa:focus { filter: brightness(1.08); z-index:3; }
#mesa-info { min-height: 32px; font-size: 1rem; }
.reserva-step { display: none; }
.reserva-step.active { display: block; }
/* Zonas do restaurante */
.mesa.zona-janela { box-shadow: 0 0 0 2px #3498db; }
.mesa.zona-centro { box-shadow: 0 0 0 2px #95a5a6; }
.mesa.zona-cozinha { box-shadow: 0 0 0 2px #e67e22; }
.mesa.zona-entrada { box-shadow: 0 0 0 2px #16a085; }
/* Responsividade */
@media (max-width: 700px) {
  #mapa-mesas { grid-template-columns: repeat(4, 1fr); max-width: 100%; }
  #reserva-wizard { padding: 1rem 0.5rem; }
  .mesa { width: 38px; height: 38px; font-size: 0.9rem; }
}
@media (max-width: 400px) {
  #mapa-mesas { grid-template-columns: repeat(2, 1fr); }
  .mesa { width: 32px; height: 32px; font-size: 0.8rem; }
}
.menu-desc {
  font-size: 1.15rem;
  color: #2c3e50;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
@media (max-width: 600px) {
  .menu-desc {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
} 