/* Importando fontes modernas do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Outfit:wght@300;400;600;800&display=swap');

:root {
  --bg-color: #03060f;
  --color-blue: #0077ff;
  --color-blue-glow: rgba(0, 119, 255, 0.45);
  --color-orange: #ff6600;
  --color-orange-glow: rgba(255, 102, 0, 0.45);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Fundo com efeito Aurora/Neon */
.aurora-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.aurora-blue {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-blue-glow) 0%, rgba(3, 6, 15, 0) 70%);
  filter: blur(80px);
  animation: pulse-blue 12s infinite alternate ease-in-out;
}

.aurora-orange {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-orange-glow) 0%, rgba(3, 6, 15, 0) 70%);
  filter: blur(80px);
  animation: pulse-orange 12s infinite alternate ease-in-out;
}

/* Partículas no fundo */
#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Container Principal */
.container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
}

/* Logo Wrapper e Efeito Tilt */
.logo-wrapper {
  margin-bottom: 2.5rem;
  perspective: 1000px;
  will-change: transform;
}

.logo-img {
  max-width: 280px;
  width: 85vw;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
  animation: float 6s infinite ease-in-out;
  transition: filter 0.5s ease;
}

.logo-wrapper:hover .logo-img {
  filter: drop-shadow(0 15px 35px var(--color-blue-glow)) drop-shadow(0 5px 15px var(--color-orange-glow));
}

/* Textos da Página */
.badge {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.15) 0%, rgba(255, 102, 0, 0.15) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 1.5rem;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  animation: fade-in-up 1s ease-out;
}

h1 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  animation: fade-in-up 1.2s ease-out;
}

h1 span.gradient-text-blue {
  background: linear-gradient(90deg, #38bdf8, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 span.gradient-text-orange {
  background: linear-gradient(90deg, #ff6600, #ff9d00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 450px;
  animation: fade-in-up 1.4s ease-out;
}

/* Barra de Progresso sutil de carregamento do site */
.progress-container {
  width: 150px;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
  animation: fade-in-up 1.6s ease-out;
}

.progress-bar {
  height: 100%;
  width: 45%;
  background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-orange) 100%);
  border-radius: 10px;
  animation: loading-bar 3s infinite ease-in-out;
}

/* Grid decorativo de fundo para remeter à área de impressão/corte */
.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center center;
  z-index: 0;
  opacity: 0.6;
}

/* Animações */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(0.5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes pulse-blue {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(5vw, 5vh) scale(1.1);
    opacity: 1;
  }
}

@keyframes pulse-orange {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-5vw, -5vh) scale(1.1);
    opacity: 1;
  }
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loading-bar {
  0% {
    left: -45%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: -45%;
  }
}

/* Media Queries */
@media (max-width: 480px) {
  .logo-img {
    max-width: 220px;
  }
  h1 {
    font-size: 2rem;
  }
  p {
    font-size: 0.95rem;
  }
}
