.hero {
  padding: 5.6vw;
  min-height: 80vh;
  background-image: url(../images/hero_desktop.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  margin-top: -60px;
}
@media (max-width: 768px) {
  .hero {
    background-image: url(../../dist/images/hero_celular.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    padding-top: 60vw;
    margin-top: -100px;
    height: 50vh;
    margin-bottom: 280px;
  }
}
.hero .button {
  margin-top: 24px;
  width: 100%;
}
.hero__content {
  max-width: 640px;
}
@media (max-height: 768px) {
  .hero__content__brading {
    max-width: 140px;
    margin-bottom: 8px;
  }
}
.hero__content__brading {
  max-width: 200px;
  margin: 0 auto 38px;
  margin-bottom: 24px;
}
.hero__content h3 {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .hero__content h3 {
    margin-bottom: 20px;
  }
}
.hero__content p {
  margin-bottom: 20px;
}
.hero__content p:last-child {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .hero__content p {
    margin: 24px 0;
  }
}
.hero__content__combos {
  list-style: none;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .hero__content__combos {
    display: block;
    max-width: 100%;
  }
}
.hero__content__combos__combo {
  width: calc(50% - 12px);
}
.hero__content__combos__combo img {
  max-width: 106px;
}
.hero__content__combos__combo span {
  display: block;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .hero__content__combos__combo {
    max-width: 100%;
    width: 100%;
    margin-top: 24px;
  }
}

.shows {
  padding: 2vw 5.6vw;
  min-height: 50vw;
}
@media (max-width: 768px) {
  .shows {
    padding: 5.6vw;
    margin: 370px 0 80px;
  }
}
.shows__content {
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .shows__content {
    grid-template-columns: 1fr 1fr;
  }
}
.shows__content--is-active {
  display: grid;
}
.shows__content__img img {
  max-width: 100%;
  border-radius: 4px;
}
.shows__menu {
  display: flex;
  justify-content: center;
  margin: 4vh;
}
@media (max-width: 768px) {
  .shows__menu {
    white-space: nowrap;
    overflow-y: scroll;
    margin-left: 20px;
  }
}
.shows__menu__button {
  font-weight: 700;
  background: none;
  color: #f4f4f4;
  border: none;
  margin: 0 1vw;
  padding-bottom: 5px;
  text-transform: uppercase;
  border-bottom: 4px solid transparent;
}
@media (max-width: 768px) {
  .shows__menu__button {
    margin: 8px;
  }
}
.shows__menu__button--is-active {
  border-color: #f4f4f4;
}

.plans .button {
  margin-top: 24px;
  width: 100%;
}
.plans {
  padding: 5.6vw;
}
.plans h2, .plans p {
  text-align: center;
}
.plans__content {
  margin-top: 80px;
  display: flex;
  justify-content: space-around;
  list-style: none;
}
@media (max-width: 768px) {
  .plans__content {
    display: flex;
    flex-direction: column;
    margin-top: 0px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.plans__content__item {
  text-align: center;
  padding: 60px 44px 44px;
  max-width: 380px;
  width: 100%;
}
@media (max-width: 768px) {
  .plans__content__item {
    max-width: 100%;
    width: 400px;
    margin: 0 auto;
    padding: 20px 44px 44px;
  }
}
.plans__content__item:nth-child(2) {
  background-image: url(../images/fundo_combo_plus.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.plans__content__item img {
  height: 83px;
}
.plans__content__item strong {
  margin-top: 24px;
  display: block;
}

@media (max-width: 768px) {
  h2 {
    margin-bottom: 44px;
  }
  .plan_frente {
    order: 2;
  }
  .plan_meio {
    order: 1;
  }
  .plan_fundo {
    order: 3;
  }
}
.available-devices {
  padding: 5.6vw;
  text-align: center;
}
.available-devices__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
}
@media (max-width: 768px) {
  .available-devices__content {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 16px;
  }
}
.available-devices__content__item h3 {
  margin: 16px 0 16px;
}
.available-devices__content__item img {
  height: 100px;
}
.available-devices__content__item li {
  list-style: none;
}

.faq {
  padding: 5.6vw;
}
.faq h2 {
  text-align: center;
}
@media (max-width: 768px) {
  .faq h2 {
    margin-top: 60px;
  }
}
.faq__content {
  margin-top: 60px;
  cursor: pointer;
}
.faq__content__item {
  list-style: none;
  padding: 16px;
}
.faq__content__item__question {
  background-color: #0f1329;
  padding: 24px;
  border-radius: 4px 4px 0px 0px;
}
.faq__content__item__question::after {
  content: "+";
  position: absolute;
  right: calc(5.6vw + 32px);
}
.faq__content__item__answer {
  background-color: #141827;
  border-radius: 0px 0px 4px 4px;
  height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: height, 0.5s ease;
}
.faq__content__item--is-open .faq__content__item__question::after {
  content: "-";
  position: absolute;
  right: calc(5.6vw + 32px);
}
.faq__content__item--is-open .faq__content__item__answer {
  padding: 24px;
  height: 100%;
  transition: height, 0.5s ease;
}

.contariner__footer {
  max-width: 1024px;
  text-align: center;
  margin: 44px auto;
}
@media (max-width: 768px) {
  .contariner__footer {
    padding: 0 50px;
  }
}
.contariner__footer .footer__img {
  height: 60px;
  margin-bottom: 34px;
}
.contariner__footer .footer__content {
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.contariner__footer .footer__content__item {
  padding: 16px 16px 0 16px;
  list-style: none;
}
.contariner__footer .footer__content__item a {
  color: #cdcccc;
}
.contariner__footer .footer__content__item a:hover {
  color: #f4f4f4;
}

.select_language {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
  height: 38px;
}
.select_language img {
  height: 24px;
}
.select_language select {
  cursor: pointer;
  background-color: transparent;
  color: #cdcccc;
  border: none;
  padding: 8px;
  margin-right: 8px;
}
.select_language select:hover {
  color: #f4f4f4;
}
.select_language select:focus {
  outline: none;
}
.select_language option {
  color: #f4f4f4;
  background-color: #040714;
}

.footer__p {
  margin-top: 24px;
}

.header {
  padding: 20px 38px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #040714;
  transition: background-color 0.5s ease;
}
@media (max-width: 768px) {
  .header {
    padding: 16px 24px;
  }
}
.header--is-hidden {
  background-color: transparent;
  transition: background-color 0.5s ease;
}
.header--is-hidden .button--secundary {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
.header--is-hidden .header__content__img {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
.header .header__content {
  display: flex;
  justify-content: space-between;
}
.header .header__content__img {
  height: 38px;
  margin: 5px;
  transition: opacity 0.5s ease;
}
.header .header__content__item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.header .header__content__item .button {
  margin: 5px;
  height: 40px;
}
@media (max-width: 768px) {
  .header .header__content__item .button {
    margin: 5px;
    height: 40px;
    text-wrap: nowrap;
    padding: 8px;
    font-size: 16px;
  }
}

@font-face {
  font-family: Avenir;
  src: url(../../assets/fonts/Avenir-Regular.woff2);
  font-weight: 400;
}
@font-face {
  font-family: Avenir;
  src: url(../../assets/fonts/Avenir-Bold.woff2);
  font-weight: 700;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Avenir, sans-serif;
  list-style: none;
}

body {
  background-color: #040714;
}

.text--big {
  font-size: 18px;
  line-height: 28px;
  color: #cdcccc;
}

.text {
  font-size: 16px;
  line-height: 26px;
  color: #cdcccc;
}

.text--small {
  font-size: 12px;
  line-height: 22px;
  color: #cdcccc;
}

.link-text {
  font-size: 18px;
  line-height: 28px;
  color: #cdcccc;
  color: #f4f4f4;
  text-decoration: underline;
}

.title--big {
  font-size: 44px;
  line-height: 54px;
  color: #cdcccc;
  color: #f4f4f4;
  font-weight: 700;
}
@media (max-width: 768px) {
  .title--big {
    font-size: 34px;
    line-height: 44px;
    color: #cdcccc;
    color: #f4f4f4;
    font-weight: 700;
  }
}

.title {
  font-size: 40px;
  line-height: 50px;
  color: #cdcccc;
  color: #f4f4f4;
  font-weight: 700;
}
@media (max-width: 768px) {
  .title {
    font-size: 28px;
    line-height: 38px;
    color: #cdcccc;
    color: #f4f4f4;
    font-weight: 700;
  }
}

.title--small {
  font-size: 28px;
  line-height: 38px;
  color: #cdcccc;
  color: #f4f4f4;
  font-weight: 700;
}
@media (max-width: 768px) {
  .title--small {
    font-size: 22px;
    line-height: 32px;
    color: #cdcccc;
    color: #f4f4f4;
    font-weight: 700;
  }
}

.title--faq {
  font-size: 28px;
  line-height: 38px;
  color: #cdcccc;
  color: #f4f4f4;
  font-weight: 700;
  font-weight: 400;
}
@media (max-width: 768px) {
  .title--faq {
    font-size: 22px;
    line-height: 32px;
    color: #cdcccc;
    color: #f4f4f4;
    font-weight: 700;
    font-weight: 400;
    padding: 24px 35px;
  }
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  font-size: 16px;
  color: #f4f4f4;
  background-color: #6421ff;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 1px;
  padding: 8px 16px;
  cursor: pointer;
  border: 1px solid #6421ff;
}
.button--secundary {
  background-color: #395aff;
  border-color: #395aff;
}
.button--secundary:hover {
  background-color: rgb(32.3529411765%, 43.6274509804%, 100%) !important;
}
.button--dark {
  background-color: rgba(0, 0, 0, 0.8);
  border-color: #cdcccc;
}
.button--dark:hover {
  border-color: #000;
  color: #000;
  background-color: #cdcccc !important;
}

.button:hover {
  background-color: #561fd6;
}

.image-text-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5.6vw;
  align-items: center;
}
@media (max-width: 768px) {
  .image-text-container {
    display: block;
    text-align: center;
    margin: 60px 0;
  }
  .image-text-container img {
    width: 450px;
    margin-bottom: 24px;
  }
}
.image-text-container__text {
  padding: 0 2vw;
}
.image-text-container h2 {
  margin-bottom: 24px;
}
.image-text-container img {
  max-width: 100%;
}
.image-text-container--full-width {
  display: flex;
}
@media (max-width: 768px) {
  .image-text-container--full-width {
    display: block;
    text-align: center;
    position: relative;
    left: 0;
  }
}
.image-text-container--full-width .image-text-container__text {
  position: absolute;
  display: flex;
  flex-direction: column;
  left: 50%;
  width: calc(50% - 6.6vw);
}
@media (max-width: 768px) {
  .image-text-container--full-width .image-text-container__text {
    display: block;
    width: 100%;
    position: relative;
    left: 0px;
  }
}
.image-text-container--full-width img {
  width: 100%;
}

html {
  overflow-x: hidden;
}