/** 
EMPRESA: JATSA SERVICIOS GENERALES
DESARROLLADOR: BRIAN GAMBOA 
**/

/* 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 {
  line-height: 1.7;
  color: var(--color-azul);
  font-family: 'Montserrat', sans-serif;
  background-color: var(--color-gris-fondo);
}

/* Variables */

:root {
  --color-azul: #0e2366;
  --color-plomo: #202e44;
  --color-celeste: #41aace;
  --color-amarillo: #ffce00;
  --color-blanco: #ffffff;
  --color-gris-fondo: #F4FAFF;
  --color-gris: #E0E0E0;
}

/* Globales */

html h1 {
  font-size: 3.4rem;
  line-height: 1.5;
}

html h2 {
  font-size: 3rem;
  line-height: 1.5;
}

html h3 {
  font-size: 2.4rem;
  line-height: 1.5;
}

html h4 {
  font-size: 1.4rem;
}

p {
  font-size: 1.6rem;
}

img {
  max-width: 100%;
}

video {
  max-width: 100%;
}

figure {
  margin: 0;
  padding: 0;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;

}

/* Globales */
.contenedor {
  max-width: 120rem;
  width: 95%;
  margin: 0 auto;
}

.boton {
  border-radius: 10px;
  border: none;
  background: var(--color-amarillo);
  color: var(--color-azul);
  display: inline-block;
  padding: 8px 30px;
  height: 40px;
  font-size: 1.6rem;
  font-weight: 600;
  justify-content: center;
  cursor: pointer;

}
.boton-2 {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  width: 28rem;
}
.boton-2 img {
  width: 2rem;
}