:root {
  --Red: #ea5353;
  --Cyan: #45d3d3;
  --Orange: #fcaf4a;
  --Blue: #549ef2;
  --Very-Dark-Blue: #4c4e61;
  --Grayish-Blue: #a3a5ae;
  --Very-Light-Gray: #fafafa;
  --verde-troguis: #2bb184;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

/* *, *:before, *:after {
    box-sizing: border-box;
  } */
body {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  background-color: var(--Very-Light-Gray);
}

.contenedor {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  max-width: 1260px;
  padding: 0 32px;
  text-align: center;
}

.contenedor__titulo-simple {
  color: var(--Very-Dark-Blue);
  font-size: 2.8rem;
  letter-spacing: 0.5px;
}

.contenedor__titulo-importante {
  color: var(--Very-Dark-Blue);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contenedor__parrafo {
  color: var(--Grayish-Blue);
  font-size: 1.5rem;
  font-weight: 400;
  max-width: 540px;
  text-align: center;
}

.contenedor__cards {
  margin: 0 auto;
  text-align: start;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 1.5rem;
  grid-template-areas: "supervisor" "team-builder" "karma" "calculator";
}

.contenedor__cards-general {
  margin: 0.5rem 0;
  padding: 0 2rem 2rem 2rem;
  border-radius: 5px;
  box-shadow: 0 5px 10px var(--Grayish-Blue);
}

.contenedor__cards-general-tar1 {
  grid-area: supervisor;
  border-top: 5px solid var(--Cyan);
}

.contenedor__cards-general-tar2 {
  grid-area: team-builder;
  border-top: 5px solid var(--Red);
}

.contenedor__cards-general-tar3 {
  grid-area: karma;
  border-top: 5px solid var(--Orange);
}

.contenedor__cards-general-tar4 {
  grid-area: calculator;
  border-top: 5px solid var(--Blue);
}

.contenedor__cards-general-h3 {
  color: var(--Very-Dark-Blue);
  font-size: 1.8rem;
  font-weight: 600;
}

.contenedor__cards-general-parrafo {
  color: var(--Grayish-Blue);
}

.contenedor__cards-general-imagen {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.footer {
  display: flex;
  justify-content: center;
  position: relative;
  bottom: 0;
}

.footer__datos {
  font-size: 14px;
  text-align: center;
}

.footer a {
  color: var(--verde-troguis);
  text-decoration: none;
}

@media screen and (max-width: 400px) {
  .footer__datos {
    font-size: 10px;
  }
}

@media screen and (max-width: 768px) {
  .contenedor__titulo-simple {
    font-size: 1.8rem;
  }
  .contenedor__titulo-importante {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .contenedor {
    padding: 0 80px;
  }
  .contenedor__cards {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, auto);
    grid-template-areas: ". team-builder ." "supervisor team-builder calculator" "supervisor karma calculator" ". karma .";
  }
}
/*# sourceMappingURL=estilos.css.map */