/* RESET TOTAL (anti linha branca / anti scroll) */
* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #000;
  overflow: hidden;
}

/* HERO FULLSCREEN */
.hero {
  position: fixed;
  inset: 0;

  background-color: #000;
  background-image: url("./assets/twobanner.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

/* AJUSTES FINOS MOBILE */
@media (max-width: 768px) {
  .hero {
    /* Leve zoom para leitura melhor */
    background-size: 92%;

    /* Ajuste óptico vertical (se precisar) */
    background-position: center 45%;
  }
}

/* TEXTO INVISÍVEL (SEO / A11Y) */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}