/* === Base === */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.2px;
  background: radial-gradient(circle at top center, #0b1c22 0%, #0a181f 100%);
  color: #e0e6e8;
}

/* === Cabeçalho ===
header {
  padding: 2rem;
  text-align: center;
  background-color: #1a2e35;
  border-bottom: 1px solid #bfa76a;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
} */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(6px);
  background-color: rgba(26, 46, 53, 0.95);
}

img {
  border: 1px solid #bfa76a;
  border-radius: 4px;
}

.highlight {
  background-color: #0f2a2e;
  border-left: 4px solid #d8b87a;
  padding: 1rem;
}

.slogan {
  font-style: italic;
  color: #c0a96f;
}

/* === Navegação === */
nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav a {
  color: #c0a96f;
  text-decoration: none;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #d8b87a;
  text-decoration: underline;
}

/* === Seções principais === */
main {
  animation: fadeIn 1s ease-in;
}

.hero,
.teaser,
.studio,
.explorer,
.intro,
.timeline,
.privacy,
.social,
.presskit {
  padding: 4rem 2rem;
  background-color: #1a2e35;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-top: 1px solid #bfa76a;
  border-bottom: 1px solid #bfa76a;
}

.teaser,
.studio,
.explorer,
.timeline,
.privacy,
.social,
.presskit {
  max-width: 800px;
  margin: auto;
  border-left: 4px solid #bfa76a;
}

/* === Títulos === */
h1, h2, h3 {
  font-weight: 600;
  letter-spacing: 0.5px;
}

section {
  margin-bottom: 4rem;
}

/* === Botões === */
.cta-button {
  background-color: #c0a96f;
  color: #0b1c22;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
}

.cta-button:active {
  transform: scale(0.98);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
  background-color: #d8b87a;
}

/* === Destaques === */
.impact {
  font-size: 1.5rem;
  margin: 1rem 0;
}

.release {
  font-weight: bold;
  margin-bottom: 2rem;
  color: #d8b87a;
}

/* === Rodapé === */
footer {
  text-align: center;
  padding: 2rem;
  background-color: #1a2e35;
  font-size: 0.9rem;
  border-top: 1px solid #bfa76a;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

footer a {
  color: #c0a96f;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #d8b87a;
  text-decoration: underline;
}

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

/* === Responsividade === */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero,
  .teaser,
  .studio,
  .explorer,
  .intro,
  .timeline,
  .privacy,
  .social,
  .presskit {
    padding: 2rem 1rem;
  }

  .cta-button {
    width: 100%;
    margin: 1rem auto;
  }
}