/* 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: "Inter", sans-serif;
  font-optical-sizing: auto;
  position: relative;
  color: var(--color-negro);
}

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;
  color: var(--color-parrafo);
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
  padding: 0;
}


/**COLORES**/
:root {
  --color-principal: #FF8100;
  --color-principal-rgb: 255, 129, 0;
  --color-negro: #2E2E2D;
  --color-parrafo: #5A5A5A;
  --color-gris: #D9D9D9;
  --color-blanco: #ffffff;
}

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



/**UTILIDADES**/
.boton {
  background-color: var(--color-principal);
  color: var(--color-blanco);
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  white-space: nowrap;
  min-width: 135px;
  justify-content: center;
}

.boton-2 {
  background-color: var(--color-blanco);
  color: var(--color-negro);
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.4rem;
  cursor: pointer;
  justify-content: center;
}

.boton-3 {
  background-color: #ffffff;
  border: 1px solid var(--color-principal);
  color: var(--color-principal);
  justify-content: center;
}

.icono-marca {
  display: inline-block;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icono-flecha {
  width: 1.7rem;
  height: 1.3rem;
  -webkit-mask-image: url('../img/iconos/flecha-naranja.svg');
  mask-image: url('../img/iconos/flecha-naranja.svg');
}

.icono-ubicacion {
  width: 1.4rem;
  height: 1.7rem;
  color: var(--color-principal);
  -webkit-mask-image: url('../img/iconos/ubicacion-card-tour.svg');
  mask-image: url('../img/iconos/ubicacion-card-tour.svg');
}

.icono-recojo {
  width: 1.8rem;
  height: 2rem;
  color: var(--color-principal);
  -webkit-mask-image: url('../img/iconos/recojo.svg');
  mask-image: url('../img/iconos/recojo.svg');
}

.card-tour:hover .boton-3 {
  background-color: var(--color-principal);
  color: #ffffff;
  transition:
    background-color .3s ease,
    color .3s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.paginas-internas .header-contenedor {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 100;


}

.paginas-internas {
  position: relative;
}

/* Paginacion inicial */
.pi-navegacion {
  display: flex;
  gap: .8rem;
  align-items: center;
  padding: 2rem 0;

}

.pi-navegacion__enlace {
  display: flex;
  gap: .8rem;
  align-items: center;
}

.pi-navegacion__enlace a {
  font-size: 1.5rem;
  color: var(--color-negro);
  text-decoration: none;
}


.destinos {
  margin: 2rem auto 4rem auto;

}

.destinos__titulo {
  font-size: 2.5rem;
  text-align: center;
  margin: 0 auto;
  max-width: 50rem;
}

.destinos__descripcion {
  margin: 1rem auto 0 auto;
  text-align: center;
  max-width: 60rem;
}



@media (min-width: 768px) {
  .destinos__titulo {
    font-size: 3.5rem;
  }

}

@media (min-width: 1024px) {
  .destinos__titulo {
    font-size: 4rem;

  }


  .destinos__descripcion {
    font-size: 1.8rem;
  }

}
