/* 
* Estilos generales
* ------------------
*/
p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 30px;
}

.titulos {
  display: block;
  font-size: 27px;
  filter: drop-shadow(2px 4px 6px rgba(94, 94, 94, 0.2));
  margin-bottom: 10px;

}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1440px;
}

.padding__xl {
  padding: 120px 0;
}

.padding__2xl {
  padding: 170px 0;
}

.padding__lg {
  padding: 80px 0;
}

.padding__md {
  padding: 60px 0;
}

/* 
* Tamaños de fuentes
* -------------------
*/

.font__xxl {
  font-size: 3rem;
}

.font__xl {
  font-size: 2.8rem;
}

.font__lg {
  font-size: 1.6rem;
}

.font__md {
  font-size: 1.2rem;
  line-height: normal;
}

.font__xs {
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
}

/* 
* Tipografías
* -------------------
*/

.primary__font {
  font-family: 'Roboto-Regular', sans-serif;
}

.primary__font--bold {
  font-family: 'Roboto-Bold', sans-serif;
}

.secondary__font {
  font-family: 'Lato-Regular', sans-serif;
}

.secondary__font--italic {
  font-family: 'Lato-Italic', sans-serif;
}

.secondary__font--bold {
  font-family: 'Lato-Bold', sans-serif;
}

/* 
* Colores
* -------------------
*/

.white__color {
  color: #ffffff;
}

.black__color {
  color: #444444;
}

.primary__color {
  color: #494949;
}

.secondary__color {
  color: #c0bdb6;
}

.bg__primary--color {
  background-color: #c2b7a3;
}

.bg__secondary--color {
  background-color: #f2f0ec;
}

/* 
* Tamaños Responsive
* -------------------
*/
@media only screen and (max-width: 1200px) {
  p {
    font-size: 21px;
  }
}

@media only screen and (max-width: 992px) {
  p {
    font-size: 20px;
  }

  .padding__2xl {
    padding: 90px 0;
  }

  .padding__xl,
  .padding__lg {
    padding: 30px 0;
  }

  .font__xxl {
    font-size: 3rem;
  }

  .font__xl {
    font-size: 1.6rem;
  }

  .font__lg {
    font-size: 1.6rem;
  }

  .font__md {
    font-size: 1rem;
  }

  .font__xs {
    font-size: 0.8rem;
  }
}

@media only screen and (max-width: 480px) {
  p {
    font-size: 16.5px;
    line-height: 26px;
  }

  .padding__2xl {
    padding: 40px 0px;
  }
}