.main-hero {
  height: 100svh;
  position: sticky;
  top: 0;
  z-index: 0;
}
.main-hero .container {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 60px;
}
.main-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.main-hero__bg .main-hero__video,
.main-hero__bg .main-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
}
.main-hero__tag {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}
.main-hero__title {
  color: #fff;
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 67px;
  letter-spacing: 1.8px;
  margin: 30px 0 35px 0;
}
.main-hero__row {
  display: flex;
  align-items: center;
  gap: 25px;
}
.main-hero__row p {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  max-width: 500px;
}
.main-hero .cards-rotativos {
  display: none;
}

@media (max-width: 1600px) {
  .main-hero .container {
    padding-bottom: 50px;
  }
  .main-hero__tag {
    font-size: 14px;
  }
  .main-hero__title {
    font-size: 45px;
    line-height: 50px;
    letter-spacing: 1.35px;
    margin: 20px 0 30px 0;
  }
  .main-hero__row p {
    font-size: 16px;
    line-height: 28px;
    max-width: 500px;
  }
}
@media (max-width: 1100px) {
  .main-hero {
    position: relative;
  }
  .main-hero .container {
    padding: 30px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
  }
  .main-hero br {
    display: none;
  }
  .main-hero__tag {
    font-size: 12px;
    text-align: center;
    display: block;
  }
  .main-hero__title {
    font-size: 32px;
    line-height: 34px;
    letter-spacing: 0.96px;
    margin: 15px 0 30px 0;
    text-align: center;
  }
  .main-hero__row {
    display: block;
  }
  .main-hero__row .c-btn {
    display: none;
  }
  .main-hero__row p {
    font-size: 15px;
    line-height: 24px;
    max-width: 100%;
    text-align: center;
  }
}
