/* Estilos de Proyectos */
.layout__projects {
  position: relative;
  z-index: 1;
  background-color: var(--color-bg-projects);
  padding: 14rem 10rem;
}
.projects__grid {
  max-width: var(--max-width);
  margin: 0 auto;
}

.projects__header {
  margin-bottom: 4rem;
}

.projects__subtitle {
  font-size: 2rem;
  font-weight: 500;
  text-align: left;
  color: var(--color-subtitle);
  margin-bottom: 1.5rem;
}

.projects__title {
  font-size: 6.7rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-title);
  margin-top: 2rem;
}

.projects__categories {
  display: flex;
  flex-direction: row;
  gap: 7rem;
  margin-bottom: 5.5rem;
}

.categories__item {
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.8rem 0;
  transition: all 150ms ease-in-out;
}

.categories__item--active,
.categories__item:hover {
  border-bottom: 3px solid var(--color-primary);
}

.projects__all {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4rem 7rem;
}

.project__container-img {
  width: 100%;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
}
.project__img {
  width: 100%;
  transition: all 1s linear;
}

.projects__project:hover .project__img {
  transform: scale(1.2);
}

.project__content {
  padding: 4rem 5rem;
  background-color: var(--color-secondary);
  border-radius: 0 0 30px 30px;
}

.project__title {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--color-title);
  transition: all 300ms ease-in-out;
}

.project__title:hover {
  color: var(--color-banner);
}

.project__tag {
  font-size: 1.7rem;
}

.project-shapes__item {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.project-shapes--shape1 {
  top: 66px;
  right: 196px;
}
.project-shapes--shape2 {
  top: 222px;
  left: 53%;
}

.project-shapes--shape3 {
  top: 42%;
  left: 4%;
}

/* -------------------------- */
