@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

:root {
  --navy: #001F3F;
  --navy-dark: #00152b;
  --orange: #F37021;
  --white: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.7);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: radial-gradient(circle at center, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  line-height: 1.6;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
  animation: fadeIn 1.2s ease-out;
}

.logo-container {
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.logo-svg {
  width: 280px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.content {
  margin-bottom: 2.5rem;
}

h1 {
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  max-width: 450px;
  margin: 0 auto;
}

.contact {
  margin-top: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.email-link {
  color: var(--orange);
  text-decoration: none;
  font-weight: 400;
  font-size: 1.0rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: var(--transition);
}

.email-link:hover {
  border-bottom-color: var(--orange);
  filter: brightness(1.1);
}

.decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.star-bg {
  position: absolute;
  background: var(--orange);
  width: 2px;
  height: 2px;
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 4s infinite alternate;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }

  100% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

/* Responsividade */
@media (max-width: 480px) {
  .logo-svg {
    width: 220px;
  }

  h1 {
    font-size: 1.2rem;
  }
}