/*
========================
======================== SOU ALUNO
========================
*/

/*
========================
======================== NEWS
========================
*/

.news {
  margin-top: 4rem;
}

.news-title {
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
}

.news-title h2 {
  color: var(--blue-normal);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: normal;
}

.news-all {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .news-all {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .news-all {
    grid-template-columns: 1fr;
  }
}

.news-item-cover {
  width: 100%;
  height: 20rem;
  border-radius: 2rem;
  overflow: hidden;
}

.news-item-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.news-item:hover .news-item-cover img {
  transform: scale(1.1);
}

.news-item-desc {
  margin-top: 1.5rem;
}

.news-item-desc h3 {
  color: var(--grey);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 120%;
}

.news-item:hover h3 {
  text-decoration: underline;
}

.news-item-desc p {
  color: var(--grey);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 130%;
  margin-top: 1.2rem;
}

.news-item-desc .date {
  width: fit-content;
  background: var(--blue-normal);
  margin-top: 1.7rem;
  padding: 7px 15px;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-item-desc .date img {
  height: 2rem;
}

.news-item-desc .date span {
  color: var(--white-light);
  font-size: 1.4rem;
  font-weight: 500;
}

.news-more{
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.news-more .btn {
  width: fit-content;
  border-radius: 10px;
  background: var(--orange);
  padding: 14px 30px;
  color: var(--white-light);
  font-size: 18px;
  font-weight: 400;
  margin-top: 30px;
  transition: 0.4s;
  display: inline-block;
}

.news-more .btn:hover {
  background: var(--orange-dark);
  transition: 0.4s;
}

/*
========================
======================== QUESTIONS TRANSPORT / CARD
========================
*/

.questions-transport-card {
  margin-top: 8rem;
}

@media (max-width: 991px) {
  .questions-transport-card {
    margin-top: 4rem;
  }
}

.questions-transport-card .container {
  display: flex;
  gap: 3rem;
}

@media (max-width: 991px) {
  .questions-transport-card .container {
    flex-direction: column;
  }
}

/* QUESTIONS */
.questions {
  width: 50%;
}

@media (max-width: 991px) {
  .questions {
    width: 100%;
  }
}

.questions-title {
  width: 100%;
  margin-bottom: 3rem;
}

.questions-title h2 {
  color: var(--blue-normal);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: normal;
}

.questions-title h2 strong {
  font-weight: 800;
}

.questions .item {
  width: 100%;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #cad3df;
}

.questions .item:last-child {
  margin-bottom: 0;
  border: 0;
}

.questions .item .titles {
  width: 100%;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.questions .item .titles h5 {
  color: var(--blue-normal);
  font-size: 1.8rem;
  font-weight: 600;
}

.questions .item .titles .icon {
  width: 24.5px;
  height: 24.5px;
  background: url(../../img/global/custom/icon-plus.svg) no-repeat;
  transition: 0.4s;
}

.questions .item.active .titles .icon {
  background: url(../../img/global/custom/icon-minus.svg) no-repeat;
  transition: 0.4s;
}

.questions .item .content {
  display: none;
}

.questions .item.active .content {
  display: block;
  padding-bottom: 20px;
}

.questions .item .content p {
  color: var(--grey);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.2rem;
}

/* TRANSPORT CARD */
.transport-card {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 991px) {
  .transport-card {
    width: 100%;
    margin-top: 4rem;
    flex-direction: column;
  }
}

.transport-card-cover {
  width: 40%;
  height: 37rem;
  border-radius: 2rem;
  overflow: hidden;
}

@media (max-width: 991px) {
  .transport-card-cover {
    width: 100%;
    height: 40rem;
  }
}

.transport-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transport-card-desc {
  width: 60%;
  flex: 1;
}

@media (max-width: 991px) {
  .transport-card-desc {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.transport-card-desc h2 {
  color: var(--blue-normal);
  font-size: 3.2rem;
  font-weight: 500;
}

.transport-card-desc h2 strong {
  font-weight: 800;
}

.transport-card-desc p {
  color: var(--grey);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.2rem;
  margin-top: 2rem;
}

.transport-card-desc .btn {
  width: fit-content;
  border-radius: 10px;
  background: var(--orange);
  padding: 14px 30px;
  color: var(--white-light);
  font-size: 18px;
  font-weight: 400;
  margin-top: 30px;
  transition: 0.4s;
}

.transport-card-desc .btn:hover {
  background: var(--orange-dark);
  transition: 0.4s;
}
