.mentorias-hero {
  max-width: 100vw;
  display: flex;
  justify-content: center;
  padding: 18px 87px;

  overflow: hidden;
  background-image: url('../img/hero-bg.webp');
  background-size: 100% 120%;
  background-position: left bottom;
  background-repeat: no-repeat;
}

.mentorias-hero-content {
  display: flex;
  gap: 74px;
  max-width: 1266px;
}

.mentorias-logo {
  width: 98px;
  height: 40px;
}

.mentorias-main {
  max-width: 585px;
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 25px 0;

  color: white;
}

.mentorias-main-data {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mentorias-main-data-texts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mentorias-main-title {
  font-family: 'Margem-black';
  font-size: 44px;
  line-height: 95%;
  font-weight: 800;
  letter-spacing: -1px;
}

.mentorias-main-description {
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

.mentorias-main-description br {
  display: none;
}

.mentorias-main-description strong {
  font-family: 'MontserratBold';
  font-weight: 700;
}

.mentorias-main-data-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}

.mentorias-aside {
  max-width: 600px;
  max-height: 500px;
}

.mentorias-aside img {
  width: 100%;
  height: 100%;
  min-width: 328px;
  min-height: 300px;
  object-fit: contain;
}

@media (min-width: 1280px) {
  .desktop {
    width: 261px;
  }
}

@media (min-width: 600px) and (max-width: 992px) {
  .mentorias-hero-content {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .mentorias-main,
  .mentorias-aside {
    max-width: initial;
    max-height: fit-content;
  }
}

@media (max-width: 600px) {

  .mentorias-hero-content {
    flex-direction: column;
    gap: 24px;
    padding: 32px 16px;

    background-size: cover;
    background-position: left;
  }

  .mentorias-main {
    padding: 0;
    align-items: center;
  }

  .mentorias-main-title,
  .mentorias-main-description {
    text-align: center;
  }

  .mentorias-main-title {
    font-size: 40px;
    line-height: 95%;
  }

  .mentorias-main-description {
    letter-spacing: -0.2px;
  }

  .mentorias-main-description br {
    display: initial;
  }

  .mentorias-aside img {
    object-fit: cover;
  }
}