/* =========================================================
   RESET BASE PROFESIONAL
   ========================================================= */

*, *::before, *::after{
	box-sizing: border-box;
}

html, body{
	margin: 0;
	padding: 0;
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}

/* Elimina márgenes por defecto en textos */
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd{
	margin: 0;
}

/* Imágenes y media fluidos */
img, picture, video, canvas, svg{
	display: block;
	max-width: 100%;
}

/* Inputs heredan fuente */
input, button, textarea, select{
	font: inherit;
}

