:root {
  --PrimaryColor: #137695;
  --TitlesColor: #043c4d;
  --LegendsColor: #818181;
  --MenuHoverColor: #00c3ff;
  --ButonTextColor: #ffffff;
}

.equipament {
  width: 100%;
  height: 100%;
  background-color: #f3f3f3;
  overflow: hidden;
  padding-bottom: 10px;
}

.equipament .container {
  max-width: none;
  padding: 0;
}

.equipament h2 {
  padding-top: 80px;
  text-align: center;
  font-size: 32px;
  color: var(--TitlesColor);
}

.equipament span {
  text-align: center;
  display: block;
  padding: 30px 20px 50px 30px;
  color: var(--LegendsColor);
}

.equipaments-container {
  width: 500%;
  display: flex;
  overflow: hidden;
}

.equipament-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  width: calc(100% / 5);
  position: relative;
  right: 0;
  transition: 2s;
}

.equipament-wrap:nth-of-type(2),
.equipament-wrap:nth-of-type(4) {
  flex-direction: row-reverse;
}

.equipament-text {
  width: 50%;
  padding: 0 60px;
}

.equipament-text h3 {
  font-size: 30px;
  color: var(--TitlesColor);
}

.equipament-text p {
  color: var(--LegendsColor);
  padding-top: 20px;
}

.equipament-images {
  width: 50%;
  height: 100%;
}

.equipament-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*0---------------------------------------*/

.equipament ul {
  width: 100%;
  max-width: 1280px;
  margin: 30px auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.equipament ul li {
  width: calc(100% / 5);
  font-size: clamp(0.75rem, 0.4167rem + 0.6944vw, 0.9375rem);
  color: var(--LegendsColor);
  list-style: none;
  padding: 25px;
  cursor: pointer;
  transition: 0.5s;
}

.equipament ul li:hover {
  color: var(--TitlesColor);
}

.list-app-item.active {
  color: #043c4d; /* cor mais escura */
  font-weight: 600;
}
/*---------------------------------------------------------*/

@media (max-width: 768px) {
  .equipament-wrap,
  .equipament-wrap:nth-of-type(2),
  .equipament-wrap:nth-of-type(4) {
    flex-direction: column;
    height: 400px;
    gap: 30px;
    height: auto;
    border-top: 1px solid rgba(165, 165, 165, 0.13);
    padding-top: 20px;
  }
  .equipament-text {
    text-align: start;
    width: 100%;
    padding: 0 15px;
  }
  .equipament-text p {
    text-align: justify;
  }
  .equipament-images {
    width: 100%;
    height: 300px;
  }
  .equipament-text h3 {
    font-size: 25px;
  }

  .equipament ul li {
    padding: 10px;
    text-align: center;
  }
}
