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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  overflow-x: hidden;
}

/* Animaciones globales */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Smooth Scroll */
html, body {
  overflow-x: hidden;   /* 🔹 bloquea el scroll lateral fantasma */
  width: 100%;          /* 🔹 asegura que no se expanda más de la pantalla */
}