.lang {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: 1;
}

.lang button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .48);
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.lang button:hover,
.lang button.is-active {
  color: var(--yellow);
}

.lang i {
  color: rgba(255, 255, 255, .28);
  font-style: normal;
}

.nav-drop.dropdown-dismissed .dropdown {
  display: none !important;
}

.nav-drop .dropdown > a::after,
.nav-drop .dropdown2 a::after {
  content: none !important;
  display: none !important;
}

.nav-drop .dropdown .dd-sub > a::after {
  position: static;
  display: inline-block !important;
  width: auto;
  height: auto;
  margin-left: auto;
  background: none;
  content: '\203A' !important;
  opacity: .6;
  transform: none !important;
}

#mAuth .mf[hidden] {
  display: none;
}

#mAuth.auth-flow .mtabs {
  display: none;
}

.auth-login-options {
  display: flex;
  gap: 18px;
  margin-top: 15px;
  align-items: center;
  justify-content: space-between;
}

#mAuth .mf .auth-remember {
  display: inline-flex;
  gap: 8px;
  margin: 0;
  opacity: .72;
  align-items: center;
  cursor: pointer;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

#mAuth .mf .auth-remember input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--teal);
}

.auth-text-button,
.auth-back-button {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
}

.auth-text-button:hover,
.auth-back-button:hover {
  text-decoration: underline;
}

.auth-back-button {
  display: block;
  margin: 16px auto 0;
}

.auth-flow-copy {
  margin: 12px 0 18px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.6;
}

#mAuth .mf.is-submitting .mbtn[type="submit"] {
  display: flex;
  gap: 10px;
  opacity: .78;
  align-items: center;
  justify-content: center;
  cursor: wait;
}

#mAuth .mf.is-submitting .mbtn[type="submit"]::before {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  content: '';
  animation: auth-button-spin .7s linear infinite;
}

@keyframes auth-button-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  #mAuth .mf.is-submitting .mbtn[type="submit"]::before {
    animation-duration: 1.4s;
  }
}

.official-page {
  max-width: none;
}

.official-page .official-section-title {
  margin: 46px 0 24px;
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.official-people {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0 50px;
}

.official-person {
  display: flex;
  min-height: 260px;
  padding: 28px 20px 24px;
  border: 1px solid rgba(11, 11, 11, .06);
  border-radius: 17px;
  background: rgba(255, 255, 255, .88);
  color: var(--black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 28px rgba(11, 11, 11, .04);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}

.official-person:hover,
.official-person:focus-visible {
  border-color: rgba(11, 11, 11, .16);
  box-shadow: 0 18px 40px rgba(11, 11, 11, .1);
  transform: translateY(-5px);
  outline: none;
}

.official-person img {
  width: clamp(124px, 9vw, 142px);
  height: clamp(124px, 9vw, 142px);
  margin-bottom: 18px;
  border-radius: 50%;
  image-rendering: auto;
  object-fit: cover;
  object-position: center top;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}

.official-committee > span,
.official-staff-list span,
.official-partners span,
.official-jury-soon span {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.official-person .official-person-name {
  color: var(--black);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
}

.official-person .official-person-role {
  margin-top: 7px;
  color: rgba(11, 11, 11, .48);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
}

.official-page--three > .official-people {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.official-curator-section {
  padding: 38px 0 18px;
  border-top: 1px solid rgba(11, 11, 11, .16);
}

.official-curator-section:first-child {
  margin-top: 34px;
}

.official-curator-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.official-curator-section h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.official-curator-section .official-people {
  margin-bottom: 34px;
}

.official-committees,
.official-staff-list,
.official-partners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin-top: 34px;
  border-top: 1px solid rgba(11, 11, 11, .16);
}

.official-committee,
.official-staff-list section,
.official-partners section {
  padding: 25px 0;
  border-bottom: 1px solid rgba(11, 11, 11, .16);
}

.official-committee h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.official-committee p,
.official-staff-list p,
.official-partners p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.official-jury-soon {
  display: grid;
  min-height: 180px;
  margin: 30px 0;
  border-radius: 18px;
  background: var(--black);
  place-content: center;
  text-align: center;
}

.official-jury-soon span {
  color: var(--teal);
}

.official-jury-soon h2 {
  margin: 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 400;
  text-transform: uppercase;
}

.official-award-image,
.official-page-image {
  display: block;
  width: 100%;
  margin: 28px 0;
  border-radius: 18px;
}

.official-lead {
  max-width: 850px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

[data-lucide] {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  stroke-width: 2;
}

.official-page .faq-q::after {
  content: none;
}

.official-page .faq-q [data-lucide] {
  transition: transform .25s ease;
}

.official-page .faq-it.open .faq-q [data-lucide] {
  transform: rotate(180deg);
}

.btn [data-lucide],
.pa [data-lucide],
.btn-glass [data-lucide],
.btn-play [data-lucide] {
  margin-right: 8px;
  vertical-align: -4px;
}

.report-success-icon,
.shop-success-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--black);
  place-items: center;
}

.report-success-icon [data-lucide],
.shop-success-icon [data-lucide] {
  width: 26px;
  height: 26px;
}

.pl-menu button.sel::after {
  content: none;
}

.pl-menu button .selection-icon {
  width: 15px;
  height: 15px;
  margin-left: auto;
}

#hdr .topbar,
#hdr.hdr-solid .topbar,
#hdr.scrolled .topbar {
  display: block;
  max-height: 40px;
  opacity: 1;
}

#view-plataforma,
#view-film,
#view-player,
#view-conta {
  padding-top: 114px;
}

#view-plataforma .plat-nav {
  top: 114px;
}

#view-page > div:first-child,
#view-progpage > div:first-child {
  height: 114px !important;
}

body.official-modal-open {
  overflow: hidden;
}

.official-person-modal {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: none;
  padding: 24px;
  background: rgba(11, 11, 11, .72);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
}

.official-person-modal.open {
  display: flex;
}

.official-person-dialog {
  position: relative;
  width: min(590px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 46px clamp(26px, 5vw, 58px) 42px;
  border-radius: 22px;
  background: var(--cream);
  color: var(--black);
  text-align: center;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .34);
}

.official-person-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(11, 11, 11, .14);
  border-radius: 50%;
  color: var(--black);
  place-items: center;
  touch-action: manipulation;
  transition: background .2s ease, color .2s ease;
}

.official-person-close:hover,
.official-person-close:focus-visible {
  background: var(--black);
  color: var(--cream);
  outline: none;
}

.official-person-dialog-photo {
  display: block;
  width: 190px;
  height: 190px;
  margin: 0 auto 22px;
  border-radius: 50%;
  image-rendering: auto;
  object-fit: cover;
  object-position: center top;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}

.official-person-dialog h2 {
  margin: 0;
  font-size: clamp(25px, 4vw, 38px);
  line-height: 1.05;
}

.official-person-dialog-role {
  display: block;
  margin-top: 9px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.official-person-dialog-bio {
  margin: 27px 0 0;
  font-size: 14px;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
}

@media (max-width: 900px) {
  .official-people,
  .official-committees,
  .official-staff-list,
  .official-partners {
    grid-template-columns: 1fr;
  }

  .official-people {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .official-page--three > .official-people {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .official-page--three > .official-people {
    grid-template-columns: 1fr;
  }

  .official-person {
    min-height: 205px;
    padding: 22px 12px 20px;
  }

  .official-person img {
    width: 92px;
    height: 92px;
  }

  .official-person-dialog {
    padding: 42px 22px 30px;
  }

  .official-person-dialog-photo {
    width: 132px;
    height: 132px;
  }

  .official-person-dialog-bio {
    font-size: 13px;
  }
}
