.contenedor{
  width: 100;
  text-align: center;
  letter-spacing: 0.8px;
  line-height: 1.35;
  margin: 2.5rem auto;
  overflow: hidden;
}
.contenedor h1{
  font-size: 2rem;
}
.contenedor h2{
  font-size: 1.5rem;
}
.rejilla{
  width: 80%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  grid-gap: 0.3rem;
  margin: auto;
}
.imagen{
  position: relative;
}
.imagen img{
  max-width: 85%;
  box-shadow: 0.25rem 0.25rem 8px rgba(0, 0, 0, 0.6);
}
.texto{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cuadroFondo{
  position: absolute;
  min-height: 6rem;
  max-height: 20rem;
  height: 60%;
  min-width: 250%;
  top: 20%;
  z-index: -5;
}
.color1{
  background-color: #78BAE4;
}
.color2{
  background-color: #F5B33F;
}
.direccion1{
  right: -110%;
}
.direccion2{
  left: -110%;
}
.llamadaAccion{
  margin: 3rem auto;;
}
.llamadaAccion>p{
  width: 80%;
  margin: auto;
}
.llamadaAccion>a{
  display: block;
  margin: 2.5rem auto;
  padding: 1rem 4rem;
  width: max-content;
  background-color: #F2A21A;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  text-decoration: none;
  color: #000000;
  transition: all ease 0.3s;
}
.llamadaAccion>a:hover {
  background: #ffffff;
  color: #E1281E;
  box-shadow: inset 0 0 0 3px #F2A21A;
}
