/* ---------------------------
   RESET GLOBAL
--------------------------- */
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* ---------------------------
   BODY BASE
--------------------------- */
body {
  font-family: Inter, system-ui, sans-serif;
  background: #060708;
  color: white;

  /* 🔥 ESSENCIAL:
     permite que overlays e CTAs apareçam,
     sem cortar elementos absolutos */
  overflow-x: hidden;
  overflow-y: visible;

  display: flex;
  flex-direction: column;
}

/* ---------------------------
   STAGE — onde os slides vivem
--------------------------- */
.stage {
  width: 100vw;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden; /* impede scroll dentro dos slides */
  position: relative; /* permite overlay global se precisar */
}
