@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --color-primary: #df0416;
  --color-secondary: #3c2221;
  --color-yellow: #f2c14e;
}

.barlow-thin {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-extralight {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-light {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-regular {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-medium {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-semibold {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-bold {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-extrabold {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-black {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-thin-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-extralight-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-light-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-regular-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-medium-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-semibold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-bold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-extrabold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-black-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.cartola {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
}

h2 {
  font-size: 1.25rem;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-secondary);
}

h3 {
  font-size: 1.15rem;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-secondary);
}

h4 {
  font-size: 1rem;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-secondary);
}

body {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #b5020f;
}

aside {
  padding: 15px 0;
  background-color: var(--color-secondary);
  position: sticky;
  top: 0;
  z-index: 900;
}
aside .nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
aside .nav-main {
  flex: 1;
}
aside .nav-main ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
aside .nav-main a,
aside .nav-main button.nav-modal-trigger {
  display: block;
  color: var(--color-yellow);
  text-decoration: none;
  padding: 10px 9px;
  font-size: 0.8rem;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
aside .nav-main a:hover,
aside .nav-main button.nav-modal-trigger:hover {
  color: #fff;
}
aside .nav-main .nav-has-dropdown {
  position: relative;
}
aside .nav-main .nav-has-dropdown > a::after {
  content: " ▾";
  font-size: 0.65rem;
  opacity: 0.75;
}
aside .nav-main .nav-has-dropdown:hover > .nav-dropdown {
  display: block;
}
aside .nav-main .nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-secondary);
  min-width: 210px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  border-top: 2px solid var(--color-primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 20;
}
aside .nav-main .nav-dropdown li a {
  padding: 9px 18px;
  font-size: 0.78rem;
  display: block;
}
aside .nav-main .nav-dropdown li a::after {
  display: none;
}
aside .nav-social {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
aside .nav-social a {
  color: var(--color-yellow);
  text-decoration: none;
  font-size: 0.8rem;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s;
}
aside .nav-social a:hover {
  color: #fff;
}
aside .nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
aside .nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-yellow);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
aside .nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
aside .nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
aside .nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 991px) {
  aside .nav-main {
    display: none;
  }
  aside .nav-hamburger {
    display: flex;
  }
}
@media (max-width: 575px) {
  aside .nav-social a:not([aria-label]) {
    display: none;
  }
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
}
.nav-overlay.is-open {
  display: block;
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: -290px;
  width: 280px;
  height: 100vh;
  background: var(--color-secondary);
  z-index: 1001;
  overflow-y: auto;
  transition: left 0.28s ease;
}
.nav-drawer.is-open {
  left: 0;
}
.nav-drawer__close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: 16px 16px 10px;
  background: none;
  border: none;
  color: var(--color-yellow);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-drawer__close:hover {
  color: #fff;
}
.nav-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0 0 32px;
}
.nav-drawer li a, .nav-drawer__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 20px;
  color: var(--color-yellow);
  text-decoration: none;
  font-size: 0.88rem;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}
.nav-drawer li a:hover, .nav-drawer__toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.nav-drawer li a i, .nav-drawer__toggle i {
  font-size: 0.68rem;
  transition: transform 0.22s;
}
.nav-drawer__has-sub.is-open > .nav-drawer__toggle i {
  transform: rotate(180deg);
}
.nav-drawer__sub {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.2);
}
.nav-drawer__sub li a {
  padding: 11px 20px 11px 34px;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.nav-drawer__has-sub.is-open .nav-drawer__sub {
  display: block;
}

.nav-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1010;
  background: rgba(0, 0, 0, 0.78);
  overflow-y: auto;
  padding: 28px 16px 40px;
}
.nav-modal.is-open {
  display: block;
}
.nav-modal__box {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 36px 32px 40px;
  position: relative;
}
@media (max-width: 575px) {
  .nav-modal__box {
    padding: 28px 16px 32px;
  }
}
.nav-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--color-secondary);
  padding: 6px 10px;
  border-radius: 4px;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}
.nav-modal__close:hover {
  background: var(--color-primary);
  color: #fff;
}
.nav-modal--historico .nav-modal__box {
  max-width: 560px;
}
.nav-modal__title {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.4rem;
  color: var(--color-secondary);
  margin: 0 0 24px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--color-primary);
}
.nav-modal__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 767px) {
  .nav-modal__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.nav-modal__grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.nav-modal__list-5col {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px 16px;
}
@media (max-width: 991px) {
  .nav-modal__list-5col {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .nav-modal__list-5col {
    grid-template-columns: repeat(2, 1fr);
  }
}
.nav-modal__empty {
  grid-column: 1/-1;
  text-align: center;
  color: #999;
  padding: 40px 0;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.modal-ano-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--color-secondary);
  border-radius: 6px;
  padding: 28px 16px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.modal-ano-card:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}
.modal-ano-card__ano {
  display: block;
  font-size: 2.4rem;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--color-yellow);
  line-height: 1;
}
.modal-ano-card__label {
  display: block;
  font-size: 0.8rem;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.modal-curta-item {
  display: block;
  font-size: 0.8rem;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--color-secondary);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.3;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: color 0.15s;
}
.modal-curta-item:hover {
  color: var(--color-primary);
}

.modal-filme-card {
  display: block;
  text-decoration: none;
  transition: transform 0.2s;
}
.modal-filme-card:hover {
  transform: translateY(-4px);
}
.modal-filme-card__poster {
  width: 100%;
  aspect-ratio: 2/3;
  background-size: cover;
  background-position: center;
  background-color: var(--color-secondary);
  border-radius: 5px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.modal-filme-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(223, 4, 22, 0.84);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.modal-filme-card__overlay span {
  color: #fff;
  font-size: 0.78rem;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  padding: 10px;
  line-height: 1.35;
}
.modal-filme-card:hover .modal-filme-card__overlay {
  opacity: 1;
}
.modal-filme-card__titulo {
  display: block;
  font-size: 0.78rem;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: var(--color-secondary);
  text-transform: uppercase;
  line-height: 1.3;
}

footer {
  background: url(../images/background/main-footer.webp) center center/cover no-repeat;
  color: #fff;
  height: 500px;
}
@media (max-width: 767px) {
  footer {
    background-image: url(../images/background/main-footer-mobile.webp);
    height: auto;
    padding: 40px 0;
  }
}
footer > div {
  height: 100%;
}
footer > div > div {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
@media (max-width: 767px) {
  footer > div > div {
    flex-direction: column;
    height: auto;
    gap: 24px;
    padding: 0;
  }
}

.container-footer {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .container-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}
.container-footer > div:first-child {
  width: 25%;
}
@media (max-width: 767px) {
  .container-footer > div:first-child {
    width: 60%;
  }
}
.container-footer > div:first-child > div:last-child {
  display: flex;
  padding: 20px 15%;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .container-footer > div:first-child > div:last-child {
    padding: 16px 10%;
  }
}
.container-footer > div:last-child h3 {
  font-size: 1.5rem;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
}
@media (max-width: 767px) {
  .container-footer > div:last-child h3 {
    font-size: 1.1rem;
  }
}
.container-footer > div:last-child p {
  font-size: 0.9rem;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
}
@media (max-width: 767px) {
  .container-footer > div:last-child p {
    font-size: 0.8rem;
  }
}

.header-poster picture, .header-poster img {
  display: block;
  width: 100%;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(20, 8, 8, 0.97);
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}
.cookie-banner.is-open {
  transform: translateY(0);
}
.cookie-banner__box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .cookie-banner__box {
    flex-direction: column;
    padding: 18px 20px;
    gap: 14px;
    align-items: flex-start;
  }
}
.cookie-banner__text {
  flex: 1;
}
.cookie-banner__text p {
  margin: 0 0 4px;
  font-size: 0.88rem;
  line-height: 1.55;
}
.cookie-banner__text a {
  color: var(--color-yellow);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 479px) {
  .cookie-banner__actions {
    width: 100%;
    flex-direction: column;
  }
}
.cookie-banner__btn {
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cookie-banner__btn--primary {
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
}
.cookie-banner__btn--primary:hover {
  background: #b5020f;
  border-color: #b5020f;
}
.cookie-banner__btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.45);
}
.cookie-banner__btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.termos-page {
  max-width: 860px;
  margin: 60px auto;
  padding: 0 20px 80px;
  color: #333;
  line-height: 1.75;
}
.termos-page h1 {
  font-size: 2rem;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--color-secondary);
  margin-bottom: 8px;
}
.termos-page .termos-page__updated {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 40px;
}
.termos-page h2 {
  font-size: 1.15rem;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--color-secondary);
  margin: 36px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--color-primary);
}
.termos-page p, .termos-page li {
  font-size: 0.95rem;
}
.termos-page ul {
  padding-left: 22px;
}
.termos-page ul li {
  margin-bottom: 6px;
}
.termos-page a {
  color: var(--color-primary);
}

.box-bem-vindo {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20%;
}
@media (max-width: 767px) {
  .box-bem-vindo {
    height: auto;
    padding: 60px 24px;
  }
}
.box-bem-vindo h1 {
  margin-bottom: 75px;
  font-size: 2.5rem;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.box-bem-vindo p {
  max-width: 80%;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 75px;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: justify;
}
.box-bem-vindo > div a {
  color: var(--color-secondary);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-right: 15px;
}
.box-bem-vindo > div a a:last-child {
  margin-right: 0;
}
.box-bem-vindo > div a:hover {
  color: var(--color-primary);
}

.cards-filmes {
  background-color: #fbfbfb;
}
.cards-filmes h2 {
  padding: 75px 25px 50px 25px;
  font-size: 2.25rem;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-secondary);
}

.filmes-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 16px;
  padding-bottom: 75px;
}
.filmes-cards .filme-card {
  flex: 1 1 calc((100% - 60px) / 6);
  min-width: 140px;
  aspect-ratio: 2/3;
  background-size: cover;
  background-position: center;
  background-color: var(--color-secondary);
  border-radius: 6px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.filmes-cards .filme-card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
  text-decoration: none;
}
.filmes-cards .filme-card:hover .filme-card__overlay {
  background: linear-gradient(to top, rgba(60, 34, 33, 0.97) 0%, rgba(60, 34, 33, 0.15) 70%);
}
.filmes-cards .filme-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 12px 10px;
  background: linear-gradient(to top, rgba(60, 34, 33, 0.82) 0%, transparent 50%);
  transition: background 0.25s ease;
}
.filmes-cards .filme-card__titulo {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.75rem;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}
@media (max-width: 991px) {
  .filmes-cards .filme-card {
    flex: 1 1 calc((100% - 24px) / 3);
  }
}
@media (max-width: 575px) {
  .filmes-cards {
    gap: 8px;
  }
  .filmes-cards .filme-card {
    flex: 1 1 calc((100% - 8px) / 2);
  }
}
.filmes-cards--2col .filme-card {
  flex: 1 1 calc((100% - 12px) / 2);
}
@media (max-width: 575px) {
  .filmes-cards--2col .filme-card {
    flex: 1 1 calc((100% - 8px) / 2);
  }
}

.filme-detalhe__hero {
  padding-top: 50PX;
}
.filme-detalhe__hero h1 {
  font-size: 3.25rem;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-secondary);
}

.filme-detalhe__trailer h2 {
  font-size: 1.25rem;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-secondary);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.filme-detalhe__trailer .ratio {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
}
.filme-detalhe__trailer .ratio iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.filme-detalhe__info-section {
  padding: 48px 0 0;
}
.filme-detalhe__info-section h2 {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.4rem;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 8px;
}
.filme-detalhe__info-section p {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-secondary);
  line-height: 1.75;
  white-space: pre-line;
}

.ficha-filme {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .ficha-filme {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .ficha-filme {
    grid-template-columns: 1fr;
  }
}

.filme-detalhe__galeria {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.filme-detalhe__galeria .carousel-inner {
  overflow: hidden;
}
.filme-detalhe__galeria-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 767px) {
  .filme-detalhe__galeria-img {
    height: 50vh;
  }
}
.filme-detalhe__galeria .carousel-caption {
  background: rgba(60, 34, 33, 0.65);
  border-radius: 4px;
  padding: 8px 20px;
  bottom: 40px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  max-width: 640px;
  width: auto;
  white-space: nowrap;
}
.filme-detalhe__galeria .carousel-caption p {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.95rem;
}
.filme-detalhe__galeria .carousel-control-prev,
.filme-detalhe__galeria .carousel-control-next {
  width: 52px;
  height: 52px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  background: rgba(223, 4, 22, 0.75);
  border-radius: 50%;
  opacity: 0.9;
  margin: 0 20px;
}
.filme-detalhe__galeria .carousel-control-prev:hover,
.filme-detalhe__galeria .carousel-control-next:hover {
  opacity: 1;
  background: #df0416;
}
.filme-detalhe__galeria .carousel-indicators {
  bottom: 16px;
}
.filme-detalhe__galeria .carousel-indicators [data-bs-target] {
  background-color: var(--color-yellow);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  opacity: 0.6;
}
.filme-detalhe__galeria .carousel-indicators [data-bs-target].active {
  opacity: 1;
}

.filmes-laterais {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filmes-laterais .filme-card {
  flex: 1 1 calc((100% - 8px) / 2);
  min-width: 80px;
  aspect-ratio: 2/3;
  background-size: cover;
  background-position: center;
  background-color: var(--color-secondary);
  border-radius: 6px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.filmes-laterais .filme-card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}
.filmes-laterais .filme-card:hover .filme-card__overlay {
  background: linear-gradient(to top, rgba(60, 34, 33, 0.97) 0%, rgba(60, 34, 33, 0.15) 70%);
}
.filmes-laterais .filme-card .filme-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 8px 6px;
  background: linear-gradient(to top, rgba(60, 34, 33, 0.82) 0%, transparent 50%);
  transition: background 0.25s ease;
}
.filmes-laterais .filme-card .filme-card__titulo {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.65rem;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.noticias-lista {
  padding: 60px 0;
}
.noticias-lista__titulo {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 2.25rem;
  color: var(--color-secondary);
  margin-bottom: 40px;
}

.noticia-detalhe__hero {
  width: 100%;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-secondary);
  position: relative;
  display: flex;
  align-items: flex-end;
}
.noticia-detalhe__hero-overlay {
  width: 100%;
  padding: 40px 0 32px;
  background: linear-gradient(to top, rgba(60, 34, 33, 0.92) 0%, transparent 70%);
}
.noticia-detalhe__data {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  margin-bottom: 8px;
}
.noticia-detalhe__titulo {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  color: #fff;
  margin: 0 0 8px;
}
.noticia-detalhe__legenda {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.noticia-detalhe__body {
  color: var(--color-secondary);
}
.noticia-detalhe__texto {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.75;
}
.noticia-detalhe__texto img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.noticia-detalhe__texto h2, .noticia-detalhe__texto h3 {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-top: 1.5rem;
}
.noticia-detalhe__voltar {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.95rem;
}
.noticia-detalhe__voltar:hover {
  text-decoration: underline;
}

.card-noticias > div {
  flex-direction: column;
}
.card-noticias h2 {
  padding: 75px 25px 50px 25px;
  font-size: 2.25rem;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-secondary);
  text-transform: uppercase;
}

.noticias-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 75px;
}
.noticias-cards h2 {
  padding: 75px 25px 50px 25px;
  font-size: 2.25rem;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-secondary);
  text-transform: uppercase;
}
.noticias-cards > div > div {
  padding: 24px 16px;
}
.noticias-cards .card-noticias {
  flex: 1 1 calc((100% - 40px) / 3);
  min-width: 260px;
}
@media (max-width: 991px) {
  .noticias-cards .card-noticias {
    flex: 1 1 calc((100% - 20px) / 2);
  }
}
@media (max-width: 575px) {
  .noticias-cards {
    gap: 12px;
  }
  .noticias-cards .card-noticias {
    flex: 1 1 100%;
  }
}

.card-noticias {
  display: block;
  padding: 20px;
  background-color: #fafafa;
  border-radius: 6px;
  text-decoration: none;
  color: var(--color-secondary);
  transition: background-color 0.3s ease;
}
.card-noticias:hover {
  background-color: #f0f0f0;
}
.card-noticias__img {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: var(--color-secondary);
  border-radius: 4px;
  margin-bottom: 12px;
}
.card-noticias > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-direction: row;
}
.card-noticias > div:first-child > div:first-child {
  background-color: chocolate;
  border-radius: 4px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
}
.card-noticias > div:first-child > div:last-child {
  width: calc(100% - 45px);
}
.card-noticias > div:first-child > div:last-child span {
  display: block;
  font-size: 0.8em;
  color: var(--color-secondary);
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.card-noticias > div:last-child h3 {
  font-size: 1.1rem;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--color-secondary);
}
.card-noticias > div:last-child p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-top: 8px;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-secondary);
}

.box-informacoes {
  padding: 75px 0;
}
.box-informacoes > div > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0 16px;
}
.box-informacoes > div > div > div {
  width: 30%;
}
.box-informacoes h2 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.3rem;
  color: var(--color-secondary);
  margin-bottom: 6px;
}
.box-informacoes p {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 18px;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.box-informacoes .box-form {
  display: flex;
  flex-direction: column;
}
.box-informacoes .box-form__btn {
  align-self: flex-start;
  margin-top: 4px;
  padding: 9px 28px;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: #fff;
  border-radius: 4px;
  font-size: 0.92rem;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}
.box-informacoes .box-form__btn:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.box-informacoes .box-form__msg {
  font-size: 0.85rem;
  padding: 6px 0;
  margin-bottom: 4px;
}
.box-informacoes .box-form__msg--ok {
  color: #2e7d32;
}
.box-informacoes .box-form__msg--error {
  color: var(--color-primary);
}
.box-informacoes .floating-field {
  position: relative;
  margin-bottom: 15px;
}
.box-informacoes .floating-field input {
  width: 100%;
  border: none;
  border-bottom: 1px solid lightgray;
  border-radius: 0;
  background: transparent;
  padding: 18px 0 5px;
  font-size: 0.95rem;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-secondary);
  outline: none;
  transition: border-color 0.2s;
}
.box-informacoes .floating-field input:focus {
  border-bottom-color: var(--color-primary);
}
.box-informacoes .floating-field input:not(:-moz-placeholder) ~ label {
  top: 0;
  font-size: 0.72rem;
  color: var(--color-primary);
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.box-informacoes .floating-field input:focus ~ label, .box-informacoes .floating-field input:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 0.72rem;
  color: var(--color-primary);
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.box-informacoes .floating-field label {
  position: absolute;
  top: 18px;
  left: 0;
  font-size: 0.92rem;
  color: #aaa;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  pointer-events: none;
  transition: top 0.18s ease, font-size 0.18s ease, color 0.18s ease;
}
@media (max-width: 900px) {
  .box-informacoes > div > div > div {
    width: 47%;
  }
}
@media (max-width: 575px) {
  .box-informacoes > div > div > div {
    width: 100%;
  }
}

.pesquisa-page {
  padding: 60px 0 80px;
}
.pesquisa-page__bar {
  margin-bottom: 30px;
}
.pesquisa-page__form {
  display: flex;
  gap: 10px;
  max-width: 560px;
}
.pesquisa-page__input {
  flex: 1;
  border: none;
  border-bottom: 2px solid var(--color-secondary);
  border-radius: 0;
  padding: 10px 4px;
  font-size: 1rem;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
}
.pesquisa-page__input:focus {
  border-bottom-color: var(--color-primary);
}
.pesquisa-page__btn {
  padding: 9px 24px;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: #fff;
  border-radius: 4px;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
  cursor: pointer;
  transition: background-color 0.2s;
}
.pesquisa-page__btn:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.pesquisa-page__resumo {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 36px;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.pesquisa-page__resumo strong {
  color: var(--color-secondary);
}
.pesquisa-page__section {
  margin-bottom: 50px;
}
.pesquisa-page__section h2 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}
.pesquisa-page__section h2 span {
  font-size: 0.9rem;
  opacity: 0.6;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.pesquisa-page__vazio {
  text-align: center;
  padding: 80px 0;
  color: #888;
  font-size: 1.05rem;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.pesquisa-page__vazio strong {
  color: var(--color-secondary);
}

.page-container {
  margin-top: 75px;
}

.data-prog-item {
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: box-shadow 0.2s;
  padding: 8px 12px;
}
.data-prog-item span {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--color-secondary);
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

.prog-date-header {
  text-transform: uppercase;
  font-size: 1.75rem;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
  padding-bottom: 30px;
}

.prog-date-section:not(:first-child) {
  padding-top: 80px;
}

.prog-date-section ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.prog-date-section ul li {
  /*margin-bottom: 12px;*/
  padding: 12px 16px;
  border-bottom: 1px solid #ddd;
  text-transform: uppercase;
}
.prog-date-section ul li:hover {
  color: var(--color-primary);
}
.prog-date-section ul li a {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--color-secondary);
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.list-etapas {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-etapas li {
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  text-transform: uppercase;
}
.list-etapas li:hover {
  color: var(--color-primary);
}
.list-etapas li a {
  display: block;
  font-size: 0.95rem;
  color: var(--color-secondary);
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.head_curtas {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #c8c8c8;
}

.footer_curtas {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #c8c8c8;
}

.box_imagem_curtas {
  margin-bottom: 35px;
  border-radius: 8px;
  overflow: hidden;
}/*# sourceMappingURL=main.css.map */