/**
 * CSS Reset - Modern Normalize
 *
 * @package CreadiNegocio
 */

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

html {
	margin: 0;
	padding: 0;
	font-size: 62.5%; /* 1rem = 10px */
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	scroll-behavior: smooth;
	background-color: var(--color-bg, #ffffff);
	/* Evita que títulos / anclas queden tapados bajo el header sticky */
	scroll-padding-top: calc(var(--site-header-height, 7.2rem) + env(safe-area-inset-top, 0px));
}

body,
h1, h2, h3, h4, h5, h6,
p,
figure,
blockquote,
dl,
dd,
ol,
ul {
	margin: 0;
}

ul[role="list"],
ol[role="list"] {
	list-style: none;
	padding: 0;
}

body {
	min-height: 100vh;
	font-size: 1.6rem; /* 16px base */
	line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.3;
	text-wrap: balance;
}

a {
	text-decoration-skip-ink: auto;
}

img,
picture,
svg,
video {
	max-width: 100%;
	display: block;
}

input,
button,
textarea,
select {
	font: inherit;
}

textarea:not([rows]) {
	min-height: 10em;
}

:target {
	scroll-margin-block: 5ex;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	padding: 0;
}
