.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;
  }
}

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

.venues .vcard {
  cursor: default;
}

.venues .vcard:hover {
  transform: none;
  box-shadow: none;
}

@media (max-width: 760px) {
  .venues .v-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .venues .vcard {
    border-radius: 12px;
  }

  .venues .vcard .v-body {
    padding: 14px 12px 17px;
  }

  .venues .vcard h3 {
    font-size: 15px;
  }

  .venues .vcard p {
    font-size: 10.5px;
    line-height: 1.45;
  }

  .venues .vcard .v-tag {
    padding: 5px 8px;
    font-size: 7px;
    letter-spacing: .12em;
  }
}

.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;
  }
}
.sponsorbar-logos-source {
  display: none !important;
}

@keyframes content-placeholder-pulse {
  0%, 100% { opacity: .38; }
  50% { opacity: .72; }
}

.program-loading-placeholder {
  width: 100%;
}

.program-loading-row {
  display: grid;
  grid-template-columns: minmax(150px, .75fr) minmax(180px, 1fr) minmax(320px, 2fr);
  gap: clamp(24px, 4vw, 70px);
  min-height: 150px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid rgba(11, 11, 11, .12);
}

.program-loading-row span {
  display: block;
  width: 100%;
  height: 18px;
  border-radius: 7px;
  background: rgba(11, 11, 11, .11);
  animation: content-placeholder-pulse 1.5s ease-in-out infinite;
}

.program-loading-row span:first-child {
  width: 55%;
  height: 44px;
}

.program-loading-row span:nth-child(2) {
  width: 72%;
  height: 30px;
}

.program-loading-row span:nth-child(3) {
  height: 62px;
}

.film-loading-placeholder {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 0 clamp(20px, 6vw, 96px) clamp(70px, 9vw, 130px);
  background: linear-gradient(115deg, #111 10%, #19201f 58%, #0b1015);
}

.film-loading-placeholder span {
  display: block;
  width: min(620px, 82vw);
  height: 70px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .12);
  animation: content-placeholder-pulse 1.5s ease-in-out infinite;
}

.film-loading-placeholder span:nth-child(2) {
  width: min(420px, 68vw);
  height: 18px;
}

.film-loading-placeholder span:nth-child(3) {
  width: min(520px, 76vw);
  height: 52px;
}

.film-loading-error {
  min-height: 80vh;
  padding: 180px clamp(20px, 6vw, 96px);
  color: rgba(255, 255, 255, .7);
}

@media (max-width: 760px) {
  .program-loading-row {
    grid-template-columns: 1fr;
    gap: 15px;
    min-height: 220px;
  }

  .program-loading-row span:first-child,
  .program-loading-row span:nth-child(2) {
    width: 48%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .program-loading-row span,
  .film-loading-placeholder span {
    animation: none;
  }
}

.mobile-menu-toggle,
.mobile-site-menu {
  display: none;
}

@media (max-width: 760px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  #hdr .nav {
    gap: 14px;
  }

  #hdr .logo {
    position: relative;
    z-index: 202;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 203;
    display: flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    color: #fff;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 17px;
    height: 1.5px;
    background: currentColor;
    transition: opacity .25s, transform .3s var(--ease);
  }

  .mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .mobile-site-menu {
    position: fixed;
    z-index: 200;
    inset: 0;
    display: block;
    overflow-y: auto;
    padding: 126px 22px 34px;
    background: rgba(7, 7, 7, .985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity .3s var(--ease), transform .35s var(--ease), visibility .35s;
    visibility: hidden;
  }

  .mobile-site-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .mobile-site-menu-inner {
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .mobile-site-menu-primary {
    display: grid;
  }

  .mobile-site-menu-primary a {
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    font-family: var(--display);
    font-size: clamp(28px, 8vw, 44px);
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-site-menu-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
    margin-top: 32px;
  }

  .mobile-site-menu-group > span {
    grid-column: 1 / -1;
    margin-bottom: 11px;
    color: var(--yellow);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
  }

  .mobile-site-menu-group a {
    padding: 8px 0;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .mobile-site-menu-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
  }

  .mobile-site-menu-actions a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-site-menu-actions .mobile-menu-tickets {
    border-color: var(--red);
    background: var(--red);
  }

  .mobile-site-menu-language {
    display: flex !important;
    gap: 10px;
    align-items: center;
    margin-top: 28px;
    color: rgba(255, 255, 255, .48);
  }

  .mobile-site-menu-language button.is-active {
    color: var(--yellow);
  }
}
