/* Reset básico */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: #0B0F14;
  background-color: #ffffff;
  line-height: 1.6;
}

/* Contenedor global */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* =========================
   FIX OVERFLOW (MOBILE)
========================= */
html, body {
  width: 100%;
  overflow-x: hidden;
}

img, video, canvas, svg {
  max-width: 100%;
  height: auto;
}

/* Swiper suele causar overflow si algún wrapper sobresale */
.swiper,
.swiper-wrapper,
.swiper-slide {
  max-width: 100%;
}

/* Evita que secciones con padding + 100vw desborden */
.container {
  max-width: 100%;
}