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

/* Variáveis essenciais */
:root {
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-accent: #ff9200;
  --font-primary: 'Inter', sans-serif;
  --glow-cyan: 0 0 40px rgba(0, 255, 255, 0.3);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--text-primary);
  overflow-x: hidden;
}

/* Hero ocupa toda a tela */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url("../images/magalifundo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Troca a imagem para mobile */
@media (max-width: 768px) {
  .hero {
    background-image: url("../images/magalifundomobile.png");
  }
}
