body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  color: white;
  background: url(/images/bg.jpg) no-repeat center center / cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  background-color: rgba(61, 31, 31, 0.6);
  padding: 40px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  text-align: center;
}

.logo {
  max-width: 180px;
  margin-bottom: 30px;
}

.headline {
  font-size: 2.2rem;
  margin: 10px 0;
}

.subtext {
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.signup-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.signup-form input {
  padding: 10px;
  border: none;
  border-radius: 4px;
  width: 60%;
}

.signup-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background-color: white;
  color: #002028;
  cursor: pointer;
  font-weight: bold;
}

.menu-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.1rem;
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid white;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.menu-button i {
  margin-right: 8px;
}

.menu-button:hover {
  background-color: white;
  color: #002028;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
}

.cookie-banner a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner button {
  background-color: white;
  color: #002028;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.hours {
  font-size: 1rem;
  margin-bottom: 20px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}

.hours i {
  color: white;
}

/* Animação de entrada */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

footer {
  font-size: 0.9rem;
  opacity: 0.7;
}
