.box-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.courses-boxes {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.course-box {
  padding: 0 40px;
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--color-secondary);
}

.course-box-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.course-box-content h2 {
  font-size: 120%;
  margin-bottom: 4px;
}

.course-box-content>div:first-of-type>p {
  opacity: 0.8;
}

.course-box-techs {
  width: 400px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.course-box-techs>span {
  font-size: 90%;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--font-color);

}

.course-box-footer {
  display: flex;
  gap: 20px;
}

.course-box-footer p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 35px;
  color: var(--color-secondary);
  background-color: var(--color-inverse);
}

a:link,
a:visited {
  text-decoration: none;
  color: var(--font-inverse);
}

.course-img {
  width: 220px;
  height: 165px;
}

.course-mobile {
  display: none !important;
}

.pagination button {
  padding: 6px 12px;
  margin: 0 4px 12px 4px;
  cursor: pointer;
  background-color: transparent;
  color: var(--font-color);
  border: 0;
  border-radius: 8px;
}

.pagination button:hover {
  color: var(--font-pagination);
}

.pagination button.active {
  font-weight: bold;
  color: var(--font-pagination);
  cursor: default;
  border-bottom: 2px solid var(--font-color);
}

/* Desktop QHD > */
@media only screen and (min-height: 1170px) {
  .courses-boxes {
    width: 90%;
  }

  .course-box {
    padding: 0 80px;
    justify-content: space-between;
  }

  .course-img {
    width: 240px;
    height: 180px;
  }
}

/* Responsivo */
@media only screen and (max-width: 1800px) {
  .course-box-techs {
    width: 350px;
  }
}

@media only screen and (max-width: 1640px) {
  .courses-boxes {
    width: 90%;
  }
}

@media only screen and (max-width: 1150px) {
  .courses-boxes {
    width: 100%;
  }
}

@media only screen and (max-width: 950px) {
  .courses-boxes {
    width: 100%;
  }
}

@media only screen and (max-width: 700px) {
  .course-img {
    width: 180px;
    height: 135px;
  }
}

@media only screen and (max-width: 650px) {
  .course-box {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 600px) {
  .course-desktop {
    display: none !important;
  }

  .course-mobile {
    display: block;
    background-color: red;
  }

  .course-box-footer-link {
    display: flex !important;
  }

  .course-box {
    padding: 0;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary);
  }

  .course-box-content {
    width: 80%;
    display: flex;
  }

  .course-box-techs {
    width: 100%;
  }

  .course-box-footer {
    display: flex;
    justify-content: space-between;
  }

  .course-box-footer p {
    padding-top: 4px;
    width: 200px;
    height: 40px;
  }

  .course-box-footer-link a {
    display: flex;
    align-items: center;
  }

  .course-box-footer-link img {
    width: 20px;
    margin: 0 0 4px 6px;
    filter: var(--svg-filter-inverse);
  }
}

@media only screen and (max-width: 500px) {
  .course-box-content {
    width: 100%;
    padding: 0 15px;
  }
}

@media only screen and (max-width: 450px) {
  .course-box-content {
    padding: 0 10px;
  }

  .course-box-footer {
    gap: 10px;
  }
}