/* =============================== */
/*   Tipografia global e variáveis */
/* =============================== */

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

/* Paleta base da marca */
:root {
  --neon-green: #00ff9c;
  --neon-green-soft: #66ffcc;
  --neon-yellow: #eaff00;
  --dark-bg: #0d0d0d;
  --dark-bg-2: #101010;
  --text-light: #ffffff;
  --text-muted: #cccccc;
}

/* =============================== */
/*       BASE GLOBAL DO SITE       */
/* =============================== */

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

html {
  scroll-behavior: smooth; /* Rolagem suave */
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
}

/* Links sem estilos feios */
a {
  color: inherit;
  text-decoration: none;
}

/* Imagens sem extrapolar o layout */
img {
  max-width: 100%;
  display: block;
}

/* Para garantir que nada sobre em cima do hero nas seções seguintes */
section {
  position: relative;
  width: 100%;
}
