/* ========================= RESET ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========================= BASE ========================= */
html, body {
  min-height: 100%;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: url("../images/bg.webp") no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  user-select: none;
  -webkit-user-drag: none;
  overflow-x: hidden;
}

/* Overlay global (não interfere na home que tem overlay próprio) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

a {
  color: #00bfff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ========================= CONTAINER ========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ========================= MAIN ========================= */
main {
  min-height: calc(100vh - 140px);
  padding: 30px 15px;
  animation: fadeIn 0.4s ease;
}

/* ========================= MENU ========================= */
#menu {
  display: flex;
}

#menu ul {
  list-style: none;
  display: flex;
  gap: 18px;
}

#menu li a {
  font-weight: 600;
  color: #fff;
  transition: color 0.2s, text-shadow 0.2s;
}

#menu li a:hover,
#menu li a.active {
  color: #ffd700;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
}

#menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}