* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Georgia", serif;
}

body {
  background: #000;
  color: white;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  background: url('https://i.pinimg.com/1200x/1f/eb/e2/1febe22c89d982d173421b78daa54825.jpg') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  overflow: hidden;
}

/* OVERLAY GRADIENTE */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(60, 30, 10, 0.85) 0%,
    rgba(60, 30, 10, 0.65) 50%,
    rgba(60, 30, 10, 0.3) 100%
  );
  z-index: 1;
}

/* ELEMENTOS ACIMA DO OVERLAY */

.header,
.hero-content {
  position: relative;
  z-index: 2;
}

/* HEADER */

.header {
  position: absolute;
  top: 30px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.brand h1 {
  font-size: 20px;
  letter-spacing: 1px;
}

.brand span {
  font-size: 12px;
  opacity: 0.8;
  letter-spacing: 1px;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 26px;
  color: #442313;
  cursor: pointer;
}

/* HERO CONTENT */

.hero-content {
  max-width: 550px;
  margin-bottom: 100px;
}

.hero-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.primary-btn {
  background: #d97706;
  border: none;
  padding: 14px 22px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.primary-btn:hover {
  background: #b45309;
}

.secondary-btn {
  background: transparent;
  border: 1px solid white;
  padding: 14px 22px;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

.secondary-btn:hover {
  background: rgba(255,255,255,0.1);
}

/* RESPONSIVO */

@media (max-width: 768px) {

  .hero {
    padding: 20px;
    align-items: center;
  }

  .header {
    left: 20px;
    right: 20px;
  }

  .hero-content {
    margin-bottom: 40px;
  }

  .hero-content h2 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
  }

}

/* OVERLAY ESCURO */

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 98;
}

/* MENU LATERAL */

.side-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #f3ede8;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.35s ease;
  z-index: 99;
}

/* ATIVO */

.side-menu.active {
  right: 0;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* MENU LISTA */

.side-menu ul {
  list-style: none;
}

.side-menu li {
  padding: 15px;
  border-radius: 6px;
  cursor: pointer;
  color: #5b3a29;
  font-weight: 500;
  margin-bottom: 10px;
}

.side-menu li.active {
  background: #e7dbd2;
}

/* CAIXA PEDIDO */

.order-box {
  border-top: 1px solid #d8c8bd;
  padding-top: 20px;
}

.order-btn {
  width: 100%;
  background: #5b3a29;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
}
.side-menu li {
  padding: 15px;
  border-radius: 6px;
  cursor: pointer;
  color: #5b3a29;
  font-weight: 500;
  margin-bottom: 10px;
  transition: all 0.25s ease;
}

/* Hover */
.side-menu li:hover {
  background: #e7dbd2;
  transform: translateX(6px);
}

/* Estado ativo fixo */
.side-menu li.active {
  background: #d8c8bd;
  font-weight: 600;
}

