/* reset.css */
/* 1. Elimina márgenes y paddings por defecto */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. Establece herencia de tipografía y color para inputs y elementos de formulario */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
}

/* 3. Corrige comportamiento de listas */
ul,
ol {
  list-style: none;
}

/* 4. Enlaces sin decoración por defecto */
a {
  text-decoration: none;
  color: inherit;
}

/* 5. Elimina estilos por defecto en tablas */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 6. HTML5 elements como bloques en navegadores antiguos */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* 7. Imagenes y medios responsivos por defecto */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 8. Mejora la legibilidad */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

/* 9. Evita que elementos grandes desborden por padding o border */
*:before,
*:after {
  box-sizing: inherit;
}
/* ============================================ */
html,
body {
	width: 100vw;
	height: 100vh;
	overflow: auto;
	scroll-behavior: smooth;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	line-height: 1.3em;
	font-weight: 400;
	letter-spacing: normal;
	color: rgba(19, 16, 16, 1);
	background: url(/assets/img/papel.webp) center / cover;
	background-attachment: fixed;
}

h1 {
	font-family: "Rubik", sans-serif;
	font-weight: 400;
	font-size: 1em;
	line-height: normal;
}

h2 {
	font-family: "Rubik", sans-serif;
	font-size: 3.5em;
	text-transform: uppercase;
	font-weight: 900;
	line-height: normal;
}

h2:before {
	font-family: "icomoon";
	content: "\e902";
	color: #f24e2e;
	font-size: .75rem;
	line-height: 0;
}

h3 {
	font-family: "Roboto", sans-serif;
	font-size: 1.2em;
	font-weight: 200;
	line-height: normal;
}

p {
  margin-bottom: 1em;
  text-indent: 1em;
  padding: 0 .5em;
}

p:before {
	font-family: "icomoon";
	content: "\e902";
	color: #131010;
	font-size: .5rem;
	line-height: 0;
}

p::first-letter {
  text-transform: uppercase;
}

p {
  text-indent: 0;
}

a {
	font-size: 1em;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	background: rgba(19, 16, 16, .05);
}

a.btn {
	display: inline-block;
	width: auto;
	padding: 0;
	text-align: center;
	white-space: nowrap;
	background: rgba(236, 233, 233, .75);
	color:  rgba(19, 16, 16, 1);
	padding: .2em 1.25em;
	text-decoration: none;
	border-radius: 8px;
}
a.btn:after {
	font-family: "icomoon";
	content: "\e901";
	color: #131010;
	font-size: .75rem;
	line-height: 0;
	color: rgba(254, 65, 51, 1);
	margin-left: 1em;
}










































