/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
  font-size: 62.5%;
  /** Reset para REMS - 62.5% = 10px de 16px **/
  scroll-behavior: smooth;
}

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

body {
  /**<weight>: Use a value from 200 to 900**/
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  position: relative;
}

html h1 {
  font-size: 3.4rem;
  color: var(--color-titulo);

}

html h2 {
  font-size: 3rem;
  color: var(--color-titulo);

}

html h3 {
  font-size: 2.4rem;
  color: var(--color-titulo);

}

html h4 {
  font-size: 1.4rem;
  color: var(--color-titulo);
}

p {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-parrafo);
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
  padding: 0;
}

video {
  width: 100%;
  height: auto;
  object-fit: cover;

}

/**COLORES**/
:root {
  --color-rojo: #FC0003;
  --color-titulo: #222222;
  --color-parrafo: #515151;
  --color-blanco: #ffffff;
}

/**GLOBALES**/
.contenedor {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.resaltar {
  color: var(--color-rojo);
}


/* ---------UTILIDADES-------- */

/* Botones */
.contenedor-boton {
  display: inline-block;
}

.boton {
  color: var(--color-blanco);
  background-color: var(--color-rojo);
  text-decoration: none;
  font-size: 1.6rem;
  padding: 1rem 2.5rem;
  display: flex;
  gap: 1rem;
  border-radius: 2rem;
  justify-content: center;
  font-weight: 600;
  border: none;
  cursor: pointer;

}
.boton.boton-gris {
  color: #454545;
  background-color: #DAD8D8;

}