/* Fundo com parallax */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  background: #000;
  overflow-x: hidden;
}

.background {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url("../assets/fundo/fund.png") no-repeat center center/cover;
  filter: brightness(0.4);
  z-index: -1;
}

/* Header fixo */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* Cards Glassmorphism */
.card.glass {
  margin: 100px auto;
  max-width: 900px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  animation: fadeIn 1.5s ease;
}

/* Botões */
button {
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 12px;
  padding: 10px;
  margin: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
button:hover {
  background: rgba(0,255,150,0.2);
  box-shadow: 0 0 15px #00ffaa;
}

/* Animações */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* EMi personagem */
.emi {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 120px;
}






/* Logo no canto superior esquerdo */
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  width: 60px;   /* Ajuste do tamanho da logo */
  height: auto;
}

/* Ícones menores nos botões */
.icon-buttons button img,
.nav-buttons button img {
  width: 28px;   /* Ícones pequenos e elegantes */
  height: 28px;
}

/* Ajuste dos botões principais */
.nav-buttons button {
  background: transparent;
  padding: 8px;
}

.icon-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

/* Hover Glow mais moderno */
button:hover img {
  filter: drop-shadow(0 0 8px #00ffaa);
  transform: scale(1.1);
  transition: transform 0.3s ease, filter 0.3s ease;
}








/* Fundo com overlay escuro */
.background {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url("../assets/fundo/fund.png") no-repeat center center/cover;
  filter: brightness(0.35);
  z-index: -1;
}

/* Header */
header {
  background: rgba(28,28,28,0.6); /* Cinza escuro translúcido */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,174,239,0.4); /* Azul tecnológico */
}

/* Títulos */
h1, h2, h3 {
  color: #00AEEF; /* Azul tecnológico */
  text-shadow: 0 0 8px rgba(0,174,239,0.6);
}

/* Texto */
p, span {
  color: #FFFFFF;
}

/* Cards Glassmorphism */
.card.glass {
  background: rgba(28,28,28,0.5);
  border: 1px solid rgba(0,200,83,0.3); /* Verde Amazônia */
  box-shadow: 0 8px 30px rgba(0,174,239,0.3);
}

/* Botões principais */
button {
  background: rgba(0,174,239,0.15);
  border: 1px solid rgba(0,200,83,0.4);
  color: #FFFFFF;
}
button:hover {
  background: rgba(0,200,83,0.25);
  box-shadow: 0 0 15px #00C853;
  transform: scale(1.05);
}

/* Ícones menores */
.icon-buttons button img,
.nav-buttons button img {
  width: 26px;
  height: 26px;
}

/* Botões das lojas */
.store-buttons button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,174,239,0.2);
  border: 1px solid #00C853;
  padding: 10px 15px;
  border-radius: 12px;
  color: #FFFFFF;
  font-weight: bold;
}
.store-buttons button:hover {
  background: rgba(0,200,83,0.3);
  box-shadow: 0 0 12px #00AEEF;
}











/* Cards invisíveis até aparecerem */
.card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.card.visible {
  opacity: 1;
  transform: translateY(0);
}

