/* ========== RESET GLOBAL ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background: #fff;
  color: #1D1D1D;
  overflow-x: hidden;
}

html{
  touch-action: manipulation;  /* evita gestos extraños y doble-tap-zoom */
}
