/* ========== RESET + BASE hey zombie ========== */

/* 1. Box sizing universal */
*, *::before, *::after {
	box-sizing: border-box;
  }
  
  /* 2. Eliminar márgenes y paddings globales innecesarios */
  body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
	margin: 0;
	padding: 0;
  }
  
  /* 3. Estilos base */
  html, body {
	min-height: 100dvh;
	font-family: system-ui, -apple-system, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	background-color: #fff;
	color: #000;
  }
  
  /* 4. Imágenes y multimedia */
  img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
	height: auto;
  }
  
  /* 5. Tipografía heredada en formularios */
  input, button, textarea, select {
	font: inherit;
  }
  
  /* 6. Listas limpias pero funcionales */
  ul, ol {
	margin: 0;
  list-style: none;
	padding-left: 1.25rem; /* o usa tu sistema de espaciado */
  }

  li::marker {
    content: none;
    display: none;
  }
  
  /* 7. Enlaces sin decoración */
  a {
	text-decoration: none;
	color: inherit;
  }
  
  /* 8. Tablas sin colapsar pero estilizadas fácilmente */
  table {
	border-collapse: collapse;
	width: 100%;
  }
  
  /* 9. Botones sin estilo por defecto */
  button {
	background: none;
	border: none;
	cursor: pointer;
  }
  
  /* 10. Cuerpo con scroll suave (opcional) */
  html {
	scroll-behavior: smooth;
  }