/* 🌌 Base */
body {
  margin: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

/* 🔮 Barra de navegação */
.menu-topo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  border: #01140f groove 2px;
  padding: 1rem;
  box-shadow: 0 0 20px #03f00f;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border-radius: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  line-height: 1;
  z-index: 1000;
}

.menu-topo a {
  font-family: 'Barrio', cursive;
  color: #fff;
  text-decoration: none;
  font-size: 3rem;
  padding: 0.3rem 0.5rem;
  transition: background 0.3s ease;
  text-shadow: 1px 1px 2px #000;
}

.menu-topo a:hover {
  background-color: #03f00f;
  color: #000;
  border-radius: 6px;
}

.login-btn {
  background-color: #222;
  border-radius: 6px;
}

/* 🧙 Header */
.logo-topo {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto 1rem;
  position: relative;
}

.banner-indigena {
  width: 1200px;
  height: auto;
}

/* 📦 Conteúdo central */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.titulo {
  font-family: 'Barrio', cursive;
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #00ffcc;
}

.ritual-inicial p,
.ritual-final {
  font-size: 4rem;
  line-height: 1.6;
  font-family: 'Mansalva', cursive;
  margin-bottom: 2rem;
  color: rgba(255, 253, 253, 0.9);
}

#imagemCarta {
  max-width: 500px;
  display: block;
  margin: 2rem auto;
  border-radius: 12px;
}

.carta-nome {
  font-size: 5em;
  font-family: 'Barrio', cursive;
  margin-top: 1.2em;
}

.carta-mensagem {
  font-size: 2.5em;
  font-family: 'Cinzel', serif;
  margin: 1rem auto 2rem;
  max-width: 600px;
  margin-bottom: 1.2em;
  color: rgba(255, 255, 255, 0.85);
}

.elementos-info {
  font-size: 1.4rem;
  font-family: 'Cinzel', serif;
  background-color: #111;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem auto;

  max-width: 600px;
  color: rgba(255, 255, 255, 0.9);
}

.nivel-mensagem {
  font-size: 2.5rem;
  font-family: 'Cinzel', serif;
  margin: 2rem auto;
  margin-top: 1.5em;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.75);
}

.finalizacao {
  font-family: 'Mansalva', cursive;
  font-size: 3rem;
  color: rgb(255, 255, 255);
  margin-top: 3rem;
}

/* 🔘 Botões */
.botao-primario,
.botao-secundario {
  background-color: #111;
  border: 1px solid #00ffcc;
  color: #00ffcc;
  font-family: 'Barrio', cursive;
  font-size: 2rem;
  padding: 2rem 3rem;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
  margin: 2rem auto;
}

.botao-primario:hover,
.botao-secundario:hover {
  background-color: #03f00f;
  color: #000;
}

/* 👣 Rodapé */
footer {
  background-color: #000;
  padding: 3rem 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.instagram-chamada-img {
  width: 90%;
  max-width: 600px;
  margin: 1rem auto;
  display: block;
}

.instagram-icon.instagram-foot {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.instagram-icon img {
  width: 150px;
  height: 150px;
  transition: transform 0.2s ease;
}

.instagram-icon img:hover {
  transform: scale(1.1);
}

.rodape-info {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 2rem auto;
  color: rgba(255, 255, 255, 0.8);
}

.rodape-info a {
  color: #00ffcc;
  text-decoration: none;
}

.rodape-info a:hover {
  text-decoration: underline;
}

.rodape-botoes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem auto;
}

.rodape-botoes a {
  background-color: #111;
  border: 1px solid #00ffcc;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  color: #00ffcc;
  font-size: 1rem;
  font-family: 'Barrio', cursive;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.rodape-botoes a:hover {
  background-color: #03f00f;
  color: #000;
}

.decoracao-unica img {
  max-width: 80%;
  margin: 2rem auto 0;
  display: block;
  border-radius: 10px;
}

/* 📱 Responsividade mobile */
@media (max-width: 768px) {
  .menu-topo {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 0.6rem;
    padding: 0.6rem 0.5rem;
  }

  .menu-topo a {
    font-size: 2rem;
    padding: 0.1rem 0.3rem;
  }

  .logo-topo {
    max-width: 95%;
    margin-top: 120px;
  }

  .banner-indigena {
    width: 100%;
    margin-bottom: 2rem;
  }

  .container {
    padding: 0 1rem;
  }

  .titulo {
    font-size: 2.9rem;
  }

  .ritual-inicial p,
  .ritual-final {
    font-size: 1.8rem;
    line-height: 1.6;
  }

  #imagemCarta {
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
  }

  .carta-nome {
    font-size: 2.2rem;
  }

  .carta-mensagem {
    font-size: 1.5rem;
    line-height: 1.7;
  }

  .elementos-info {
    font-size: 1.2rem;
    padding: 1.5rem;
  }

  .nivel-mensagem {
    font-size: 2rem;
    margin: 1.6rem auto;
    margin-bottom: 100px;
  }

  .finalizacao {
    font-size: 1rem;
    font-family: 'Mansalva', cursive;
    color: #fff;
    margin-top: 25px;
    margin: 2.5rem auto;
  }

  .botao-primario,
  .botao-secundario {
    font-size: 1.4rem;
    padding: 1rem 2.5rem;
    margin: 1.5rem auto;
  }

  .instagram-icon img {
    width: 110px;
    height: 110px;
  }

  .rodape-info {
    font-size: 1.05rem;
    padding: 0 1rem;
  }

  .rodape-botoes {
    flex-direction: column;
    align-items: center;
  }

  .rodape-botoes a {
    width: 90%;
    text-align: center;
    font-size: 1.2rem;
  }

  .decoracao-unica img {
    width: 90%;
    margin-top: 2rem;
  }
}

.hidden {
  display: none;
}
