@font-face {
  font-family: 'MuseoSans-Bold';
  src: url('./fonts/MuseoSans-Bold/MuseoSans-Bold.woff2') format('woff2'),
       url('./fonts/MuseoSans-Bold/MuseoSans-Bold.woff') format('woff'),
       url('./fonts/MuseoSans-Bold/MuseoSans-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MuseoSans-Regular';
  src: url('./fonts/MuseoSans-Regular/MuseoSans-Regular.woff2') format('woff2'),
       url('./fonts/MuseoSans-Regular/MuseoSans-Regular.woff') format('woff'),
       url('./fonts/MuseoSans-Regular/MuseoSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MuseoSans-SemiBold';
  src: url('./fonts/MuseoSans-SemiBold/MuseoSans-SemiBold.woff2') format('woff2'),
       url('./fonts/MuseoSans-SemiBold/MuseoSans-SemiBold.woff') format('woff'),
       url('./fonts/MuseoSans-SemiBold/MuseoSans-SemiBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* === Base === */
/* === Base y Reset Moderno === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* === Elementos comunes === */
body {
  margin: 0;
  /* font-family: 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif; */
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

label {
  display: block;
}

input, button, select, textarea {
  font: inherit;
  border: 0;
  border-radius: 0;
}

/* === Botones === */
button {
  all: unset;
  outline: none;
}
button:focus {
  outline: revert;
}

/* === Titulares === */
h1 {
  font-size: 1em;
}

/* === Reset Moderno === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section,
summary, time, mark, audio, video, main {
  border: 0;
  vertical-align: baseline;
  text-decoration: none;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*:focus {
  outline: none;
}

:root {
  --fontregular: 'MuseoSans-Regular';
  --fontmedium:  'MuseoSans-SemiBold';
  --fontbold:    'MuseoSans-Bold';
  --fontsec:     'MuseoSans-Bold';
}