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

html h2 {
  font-size: 3rem;
  font-family: "Inter", sans-serif;
  color: var(--color-negro);
}

html h3 {
  font-size: 2.4rem;
  font-family: "Inter", sans-serif;
  color: var(--color-negro);
}

html h4 {
  font-size: 1.4rem;
  font-family: "Inter", sans-serif;
  color: var(--color-negro);
}

p {
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "DM Sans", sans-serif;
  color: var(--color-parrafos);
}

img {
  max-width: 100%;
}

video {
  width: 100%;
}
figure {
  margin: 0;
  padding: 0;
}

/**COLORES**/
:root {
  --color-principal: #066489;
  --color-turquesa: #37b9c0;
  --color-negro: #444444;
  --color-parrafos: #505050;
  --color-blanco: #ffffff;
  --color-gris: #c4c4c4;
}

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

/**---------------------------UTILIDADES----------------**/
.boton {
  background-color: var(--color-principal);
  color: var(--color-blanco);
  padding: 1.2rem 3.2rem;
  border-radius: 3rem;
  text-decoration: none;
  font-size: 1.6rem;
  font-family: "DM Sans", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  height: 4rem;
}
.boton img {
  width: 2rem;
}

/* BARRA LLEGAMOS A TODO EL PERU */
.todo-peru{
  background-image: url("../img/llegamos-mobile.jpg");
  height: 8rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
 
}
@media (min-width: 425px) {
  .todo-peru{
    background-image: url("../img/llegamos-tablet.jpg");
 height: 12rem;
  }
}
@media (min-width: 768px) {
  .todo-peru{
    background-image: url("../img/llegamos.jpg");
 height: 15rem;
  }
}

/* HERO PAGINAS */
.hero-paginas{
  background-image: url("../img/hero-pagina-mobile.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 12rem;

}
.hero-pagina-contenido{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  height: 100%;
  padding: 2rem 0;
}
.hero-paginas__titulo{
  margin: 0;
  color: var(--color-principal);
  font-size: 3rem;
  font-weight: 700;
}
.ruta{
  display: flex;
  gap: .8rem;
  align-items: center;
  margin-top: 1rem;
}
.ruta span{
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-principal);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .hero-paginas{
    background-image: url("../img/hero-pagina.jpg");
    height: 15rem;
  }
  .hero-paginas__titulo{
    font-size: 4rem;
  }
}
@media (min-width: 1024px) {
  .hero-paginas{
    height: 18rem;
  
  }
  .hero-paginas__titulo{
    font-size: 4.5rem;
  }
}