body {
  margin: 0;
  font-family: Arial;
  color: #fff;
  overflow-x: hidden; /* Libera a rolagem para baixo, mas trava pros lados */
  background: #000;
}

/* PARTÍCULAS */
#particles {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* TOPO */
.top-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

/* 🔥 VERSÍCULO TOPO */
#homeTopo {
  text-align: center;
  padding: 25px 8px;
}

#homeTopo p {
  font-size: clamp(26px, 4vw, 40px);
  max-width: 98%;
  margin: auto;
  line-height: 1.5;

  /* ✨ BRILHO DOURADO */
  text-shadow: 0 0 6px rgba(255,215,0,0.5),
               0 0 12px rgba(255,215,0,0.3);
}

#homeTopo span {
  display: block;
  margin-top: 8px;
  opacity: 0.8;
}

/* 🔥 HOME GIGANTE */
.home {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}

.home h2 {
  font-size: 22px;
  color: gold;
}

.home p {
  font-size: clamp(34px, 6vw, 60px);
  max-width: 98%;
  line-height: 1.4;

  /* ✨ BRILHO DOURADO */
  text-shadow: 0 0 8px rgba(255,215,0,0.6),
               0 0 16px rgba(255,215,0,0.3);
}

/* BOTÕES */
.botoes button {
  margin: 5px;
  padding: 14px;
  font-size: 18px;
}

/* SETAS */
.nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 15px 0;
}

.nav button {
  font-size: 32px;
  padding: 16px 24px;
  border-radius: 12px;
  border: none;
  background: gold;
  color: black;
}

/* TEXTO NORMAL */
#texto p {
  font-size: 20px;
  line-height: 1.8;

  /* brilho leve também */
  text-shadow: 0 0 4px rgba(255,215,0,0.2);
}

/* MENU */
#menu {
  width: 260px;
  height: 100vh;
  background: #000;
  position: fixed;
  left: -260px;
  transition: 0.3s;
  overflow-y: auto;
  z-index: 999;
}

#menu.ativo {
  left: 0;
}

#menu button {
  width: 100%;
  padding: 20px;
  font-size: 20px;
}

/* OVERLAY */
#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0,0,0,0.6);
}

/* 🔥 CORRIGE LETRAS */
#texto p, .home p, #homeTopo p {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ANIMAÇÃO */
.fade-out {
  animation: fadeOut 0.4s forwards;
}

.fade-in {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeOut {
  to { opacity: 0; transform: scale(0.95); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}
