/* 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**/
  color: var(--color-plomo);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  position: relative;
}
html h1 {
  font-size: 3.4rem;
}

html h2 {
  font-size: 3rem;
}

html h3 {
  font-size: 2.4rem;
}

html h4 {
  font-size: 1.4rem;
}

p {
  font-size: 1.6rem;
  line-height: 1.5;
}

img {
  max-width: 100%;
}
figure{
  margin: 0;
  padding: 0;
}


/**COLORES**/
:root {
  --color-azul: #15479e;
  --color-plomo: #505050;
  --color-amarillo: #edb30a;
  --color-blanco: #ffffff;
}

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

.contenedor-paginas-internas {
  display: grid;
  gap: 30px;
}
.contenido-interno-main {
  padding: 20px 0 20px 0px;
  margin-top: calc(103.52px - 30px);
}
@media (min-width: 768px) {
 
  .contenedor-paginas-internas {
    display: grid;
    grid-template-columns: 2fr 8fr;
  }
  .contenido-interno-main {
      padding: 30px 0 20px 0px;
    margin-top: 73.59px;
  }
}

/**UTILIDADES**/
