* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  background-color: #0c001f;
  overflow-x: hidden;
  position: relative;
}
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
main {
  position: relative;
  z-index: 2;
}
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 5%;
  background: rgba(12, 0, 31, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #fff;
}
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
}
.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 80px 20px 20px;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
  max-width: 1200px;
}
.hero-text {
  text-align: left;
  flex-basis: 55%;
  animation: slideInLeft 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, #ffffff, #d9c4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2), 0 0 60px rgba(181, 113, 255, 0.5);
  margin-bottom: 10px;
}
.hero-tagline {
  font-size: clamp(1rem, 3vw, 1.6rem);
  font-weight: 400;
  margin-bottom: 30px;
  color: #e0e0e0;
  max-width: 500px;
}
.status-container {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  padding: 8px 15px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 35px;
  font-size: 1rem;
  font-weight: 600;
}
#status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #747f8d;
  transition: background-color 0.5s ease;
}
#status-indicator.online { background-color: #23a55a; box-shadow: 0 0 8px #23a55a; }
#status-indicator.offline { background-color: #f23f43; box-shadow: 0 0 8px #f23f43; }
#status-indicator.manutencao { background-color: #f0b232; box-shadow: 0 0 8px #f0b232; }
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.btn {
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(45deg, #c084fc, #9333ea);
  color: #fff;
  box-shadow: 0 4px 30px rgba(147, 51, 234, 0.3);
}
.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(147, 51, 234, 0.5);
}
.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}
.hero-image-container {
  flex-basis: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.hero-image img {
  max-width: 100%;
  width: clamp(250px, 40vw, 450px);
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 15px #c084fc, 0 0 30px #9333ea, 0 0 45px #9333ea;
  animation: float 6s ease-in-out infinite, neon-glow 3s ease-in-out infinite alternate;
}
.social-links {
  margin-top: 40px;
  display: flex;
  gap: 25px;
  align-items: center;
}
.social-links a, .social-links span {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease, transform 0.3s ease;
}
.social-links a:hover {
  color: #fff;
  transform: translateY(-3px);
}
.social-soon {
  opacity: 0.5;
  cursor: not-allowed;
}
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes neon-glow {
  from {
      box-shadow: 0 0 15px #c084fc, 0 0 30px #9333ea, 0 0 45px #9333ea;
  }
  to {
      box-shadow: 0 0 30px #e9d5ff, 0 0 60px #c084fc, 0 0 75px #c084fc;
  }
}

@media (max-width: 900px) {
  .hero-content { flex-direction: column; text-align: center; }
  .hero-text { order: 2; align-items: center; text-align: center; display: flex; flex-direction: column; }
  .hero-image-container { order: 1; margin-bottom: 30px; }
  .hero-buttons { justify-content: center; }
  .social-links { justify-content: center; }
}
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links { position: fixed; top: 0; right: -100%; width: 70%; height: 100vh; background: rgba(13, 1, 36, 0.9); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px; transition: right 0.4s ease-in-out; }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1.5rem; }
  .hamburger.active .bar:nth-child(2) { opacity: 0; }
  .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero-buttons { flex-direction: column; align-items: center; width: 100%; }
  .btn { width: 90%; max-width: 300px; text-align: center; }
}

.test-mode-alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(240, 178, 50, 0.15);
  border: 1px solid rgba(240, 178, 50, 0.4);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 25px;
  font-size: 0.95rem;
  color: #ffdca8;
  backdrop-filter: blur(5px);
}

.test-mode-alert a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.test-mode-alert a:hover {
  color: #f0b232;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #f0b232;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(240, 178, 50, 0.7);
  animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
  0% {
      box-shadow: 0 0 0 0 rgba(240, 178, 50, 0.7);
  }
  70% {
      box-shadow: 0 0 0 10px rgba(240, 178, 50, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(240, 178, 50, 0);
  }
}

.hero-image {
  position: relative; 
  display: inline-block;
}