.hero {
  padding: 5.6vw;
  min-height: 80vh;
  background-image: url(../img/imagem_tec.png);
  text-align: center;
  background-size: cover;
}
@media (max-width: 768px) {
  .hero {
    background-image: url(../img/imagem_tec.png);
    padding-top: calc(50vw + 25px);
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: -55px;
  }
}
.hero .button {
  margin-top: 2vw;
  margin-bottom: 8px;
}
.hero__content {
  max-width: 400px;
}
.hero__content__logo {
  max-width: 200px;
}
.hero__content__branding {
  max-width: 320px;
  margin: 0 auto 38px;
}
@media (max-width: 768px) {
  .hero__content__branding {
    max-width: 180px;
  }
}
.hero__content .title--small {
  margin-bottom: 64px;
}
.hero__content p {
  margin-bottom: 20px;
}
.hero__content p:last-child {
  margin-top: 60px;
}
.hero__content__combos {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .hero__content__combos {
    display: block;
  }
}
.hero__content__combos__combo {
  width: 100%;
}
@media (max-width: 768px) {
  .hero__content__combos__combo {
    width: 100%;
    margin-bottom: 24px;
  }
}
.hero__content__combos__combo img {
  max-height: 60px;
}

.shows {
  padding: 2vw 5.6vw;
  min-height: 50vw;
}
.shows__list {
  margin-top: 44px;
  display: none;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .shows__list {
    grid-template-columns: 1fr;
  }
}
.shows__list--is-active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  justify-items: center;
}
@media (max-width: 768px) {
  .shows__list--is-active {
    grid-template-columns: 1fr;
  }
}
.shows__list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.7);
}
.shows__list__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.shows__tabs {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .shows__tabs {
    white-space: nowrap;
    overflow-x: scroll;
    padding-left: 18px;
  }
}
.shows__tabs__button {
  color: #f9f9f9;
  font-size: 20px;
  border: none;
  padding-bottom: 5px;
  background: none;
  text-transform: uppercase;
  margin: 0 1vw;
  cursor: pointer;
  border-bottom: 5px solid transparent;
}
.shows__tabs__button--is-active {
  border-color: #00ff0d;
}
@media (max-width: 768px) {
  .shows__tabs__button {
    font-size: 16px;
  }
}
.shows #cta-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  width: 100%;
  margin: 60px auto 20px auto;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(55, 208, 4, 0.2);
  transition: background 0.3s ease;
  font-size: 16px;
}

.plans {
  padding: 1vw;
}
.plans h2 {
  text-align: center;
}
.plans__list {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .plans__list {
    display: block;
  }
}
.plans__list .button {
  margin-top: 24px;
}
.plans__list__item {
  text-align: center;
  padding: 60px 44px 44px;
  max-width: 380px;
  width: 100%;
}
.plans__list__item:nth-child(2) {
  background-image: url(../img/fundo_combo_plus.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.plans__list__item img {
  height: 83px;
}
.plans__list__item strong {
  display: block;
  margin-top: 24px;
}
.plans p {
  text-align: center;
}

.faq {
  padding: 5.6vw;
}
.faq h2 {
  text-align: center;
  margin-bottom: 24px;
}
.faq__questions__item {
  background-color: #13151d;
  margin-bottom: 16px;
}
.faq__questions__item__question {
  color: #fff;
  font-size: 20px;
  padding: 24px;
  display: block;
  cursor: pointer;
  position: relative;
}
.faq__questions__item__question::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 40px;
}
.faq__questions__item__answer {
  height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: height, 0.5s ease;
}
.faq__questions__item--is-open .faq__questions__item__question::after {
  content: "-";
}
.faq__questions__item--is-open .faq__questions__item__answer {
  height: auto;
  padding-bottom: 24px;
  transition: height, 0.5s ease;
}

.footer {
  padding: 26px 8px;
}
.footer__container {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 20px;
}
.footer__logo {
  width: 80px;
  margin: 0 auto 10px;
}
.footer__links {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links__item {
  display: inline-block;
}
.footer__links__item a {
  text-decoration: none;
  padding: 8px 16px;
  display: block;
}
.footer__links__item a:hover {
  color: #f9f9f9;
}
.footer p {
  margin: 16px;
}

.language-selector {
  display: flex;
  align-items: center;
}
.language-selector img {
  height: 18px;
  width: 18px;
}
.language-selector select {
  background-color: transparent;
  border: none;
  color: silver;
  height: 38px;
}
.language-selector select:hover {
  color: #f9f9f9;
}
.language-selector select option {
  color: #000000;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  background-color: #000000;
  transition: background-color 0.5s ease;
  z-index: 1;
}
.header__container {
  padding: 8px 36px;
  display: flex;
}
@media (max-width: 768px) {
  .header__container {
    padding: 0 12px 0 20px;
  }
}
.header__logo {
  max-width: 80px;
  width: 100%;
  margin: 5px;
  transition: opacity 0.5s ease;
}
@media (max-width: 768px) {
  .header__logo {
    max-width: 64px;
  }
}
.header__links {
  display: flex;
}
.header__links__item {
  margin: 5px;
  transition: opacity 0.5s ease;
}
.header .button {
  height: 50px;
}
@media (max-width: 768px) {
  .header .button {
    font-size: 13px;
    padding: 8px 11px;
    height: 40px;
    letter-spacing: 0;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-conteudo {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 0;
  border-radius: 8px;
  width: 50%;
  max-width: 600px;
  height: 80%;
  position: relative;
}
@media (max-width: 600px) {
  .modal-conteudo {
    width: 90%;
    height: 90%;
  }
}

.modal-conteudo iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.fechar {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
@media (max-width: 600px) {
  .fechar {
    color: #02f11a;
  }
}

.fechar:hover,
.fechar:focus {
  color: black;
}

@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: Avernir, sans-serif;
  list-style: none;
}

body {
  background-color: #000000;
}

.text--big {
  font-size: 18px;
  line-height: 28px;
  color: silver;
}
@media (max-width: 768px) {
  .text--big {
    font-size: 15px;
    line-height: 25px;
    color: silver;
  }
}

.text {
  font-size: 16px;
  line-height: 26px;
  color: silver;
}
@media (max-width: 768px) {
  .text {
    font-size: 15px;
    line-height: 25px;
    color: silver;
  }
}

.text--small {
  font-size: 14px;
  line-height: 24px;
  color: silver;
}
@media (max-width: 768px) {
  .text--small {
    font-size: 11px;
    line-height: 21px;
    color: silver;
  }
}

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

.title--big {
  font-size: 44px;
  line-height: 54px;
  color: silver;
  color: #f9f9f9;
}
@media (max-width: 768px) {
  .title--big {
    font-size: 26px;
    line-height: 36px;
    color: silver;
    color: #f9f9f9;
  }
}

.title {
  font-size: 40px;
  line-height: 50px;
  color: silver;
  color: #f9f9f9;
}
@media (max-width: 768px) {
  .title {
    font-size: 24px;
    line-height: 34px;
    color: silver;
    color: #f9f9f9;
  }
}

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

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  font-size: 18px;
  color: #f9f9f9;
  background-color: #00ff0d;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  padding: 8px 14px;
  letter-spacing: 1px;
  border: 1px solid #00ff0d;
}
.button:hover {
  background-color: #33ff3d;
}
.button--secondary {
  background-color: #00ff0d;
  border-color: #00ff0d;
}
.button--secondary:hover {
  background-color: #0fff1c;
}
.button--dark {
  background-color: rgba(0, 0, 0, 0.8);
  border-color: #f9f9f9;
}
.button--dark:hover {
  background-color: #f9f9f9;
  color: #000000;
}

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