:root {
  --font-family: "Montserrat", serif;
  --mc-red-dark: #AD2624;
  --mc-orange: #F58634;
  --mc-red-light: #EB2629;
  --mc-black: #282828;
  --mc-white: #ffffff;
  --mc-grey: #EBEBEB;
}

h1,
h2,
h3,
h4,
h5,
p,
a {
  font-family: var(--font-family);
}

h1 {
  font-size: 32px;
  /* line-height: 40px; */
  font-weight: 700;
}

h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}

h3 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

h4 {
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
}

p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

small {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
}

small a {
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
}


/******* BG colors *******/

/******* TXT colors *******/
.default .theme-txt {
  color: var(--mc-red-dark);
}

body {
  font-family: var(--font-family);
  background: var(--mc-grey);
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  grid-gap: 32px;
}

body.darkmode {
  background: #000;
  color: var(--mc-black);
}

/** HEADER **/

header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 100%), var(--mc-red-dark);
  z-index: 9;
}

header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  margin-top: 32px;
}

header .header-content .logo {
  width: 216px;
}

@media (max-width: 991px) {
  header .header-content {
    padding: 8px 0;
    flex-direction: column;
  }

  header .header-content .logo {
    width: 133px;
  }
}

header .header-content .logo-club {
  width: 100px;
}

@media (max-width: 1220px) {
  header .header-content .logo-club {
    margin-bottom: 16px;
  }
}

.header-top {
  background: var(--mc-red-light);
  color: var(--mc-white);
  font-size: 13px;
  padding: 4px 0;
  position: fixed;
  width: 100%;
  z-index: 9999;
}

.header-top .header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1140px) {
  .header-top .header-top-content {
    justify-content: center;
  }
}

.header-top .header-top-content ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.header-top .header-top-content ul li {
  margin: 0 4px;
}

.header-top .header-top-content ul li.modo-escuro {
  border-left: 1px solid #fff;
  padding-left: 8px;
}

.header-top .header-top-content ul li a {
  color: var(--mc-white);
}

form.form-city {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

select.slc-choice {
  border: 0;
  color: var(--mc-white);
  background: var(--mc-red-light);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  /* max-width: 300px; */
  /* Largura máxima do select */
  /* overflow: hidden; */
  /* Oculta o excesso */
  /* text-overflow: ellipsis; */
  /* Adiciona os "..." */
  /* white-space: nowrap; */
  /* Impede quebra de linha */
}

@media (max-width: 991px) {
  select.slc-choice {
    width: auto !important;
    max-width: 300px;
    overflow: hidden;
    /* Oculta o excesso */
    text-overflow: ellipsis;
    /* Adiciona os "..." */
    white-space: nowrap;
    /* Impede quebra de linha */
  }
}

/** NAV **/

nav.main {
  padding: 0;
}

nav.main .navbar-nav {
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

nav.main .navbar-nav p {
  margin: 16px 0;
  border-top: 1px solid #ccc;
  padding-top: 16px;
}

nav.main .navbar-nav .nav-item {
  border-radius: 4px;
}

nav.main .navbar-nav .nav-item .nav-link {
  color: var(--mc-white);
  font-size: 18px;
  line-height: 25px;
  cursor: pointer;
  text-shadow: 0 1px 0 var(--mc-black);
}

body.darkmode nav.main .navbar-nav .nav-item .nav-link {
  background: #000;
  color: var(--mc-black);
}

nav.main .navbar-nav .nav-item .nav-link i {
  font-size: 22px;
  margin: 0 2px;
}

nav.main .navbar-nav .nav-item .nav-link:hover {
  opacity: 0.8;
}

body.darkmode nav.main .navbar-nav .nav-item .nav-link:hover {
  color: var(--mc-black);
  background: initial;
}

nav.main .navbar-nav .nav-item .nav-link.club {
  text-wrap: nowrap;
}

nav.main .navbar-nav .nav-item .nav-link.app {
  border: 1px solid #000;
  color: #000;
  border-radius: 4px;
  padding: 4px 8px 4px 2px;
  text-wrap: nowrap;
  margin: 0 4px;
  line-height: 16px;
  display: flex;
  align-items: center;
}

nav.main .navbar-nav h3 {
  padding-top: 24px;
  color: var(--mc-grey);
  border-top: 1px solid var(--mc-grey);
}

.navbar-toggler-icon {
  background: url(../images/menu.svg);
}

body.darkmode nav.main .navbar-nav .nav-item .nav-link.app {
  border: 1px solid #fff;
}

nav.main .navbar-nav .nav-item .nav-link.app:hover {
  background: #000;
  color: var(--mc-black);
}

nav.main .navbar-nav .nav-item.wbg {
  background: #EBEBEB;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  text-align: center;
}

nav.main .navbar-nav .nav-item.wbg .nav-link {
  color: #000;
  line-height: 16px;
}

body.darkmode nav.main .navbar-nav .nav-item.wbg .nav-link {
  color: var(--mc-black);
}

.navbar-nav .dropdown-menu {
  background: #FFFFFF;
  box-shadow: 0px 0px 6px #00000029;
  border-radius: 8px;
}

body.darkmode .navbar-nav .dropdown-menu {
  background: #000;
}

.navbar-nav .dropdown-menu li .dropdown-item {
  background: #FFFFFF;
}

body.darkmode .navbar-nav .dropdown-menu li .dropdown-item {
  background: #000;
  color: var(--mc-black);
}

.navbar-nav .dropdown-menu li .dropdown-item:hover {
  background: initial;
  color: var(--mc-black);
}

body.darkmode .navbar-nav .dropdown-menu li .dropdown-item:hover {
  background: initial;
  color: var(--mc-black);
}

.navbar-toggler {
  border: 0;
}

.dsk-off {
  display: none !important;
}

@media (max-width: 1140px) {
  nav.main .navbar-nav .nav-item .nav-link.app {
    display: none;
  }
}

@media (max-width: 991px) {
  nav.main {
    position: absolute;
    top: 37px;
    left: 0;
    background: none !important;
    box-shadow: none;
    border: 0;
    z-index: 999;
  }

  nav.main .content-navbar {
    background: var(--mc-black);
    padding: 15px;
    box-shadow: 0px 0px 6px #00000029;
    border-radius: 8px;
  }

  nav.main .navbar-nav {
    align-items: initial;
  }

  nav.main .navbar-nav .nav-item {
    margin: 5px;
    background: none !important;
  }

  nav.main .navbar-nav .nav-item.modo-escuro {
    border-top: 1px solid #ccc;
  }

  nav.main .navbar-nav .nav-item.modo-escuro a {
    padding-top: 16px;
  }

  nav.main .navbar-nav .nav-item .nav-link {
    color: var(--mc-grey);
  }

  nav.main .navbar-nav .nav-item .nav-link:hover {
    color: var(--mc-grey);
  }

  nav.main .navbar-nav .nav-item .nav-link.app {
    display: initial;
    border: none;
    color: var(--mc-grey);
    border-radius: 4px;
    padding: 0;
    text-wrap: nowrap;
    margin: 0;
  }

  body.darkmode nav.main .navbar-nav .nav-item .nav-link.app {
    border: 0;
  }

  nav.main .navbar-nav .nav-item .nav-link.app:hover {
    background: none;
    color: #000;
  }

  .navbar-nav .dropdown-menu {
    background: #FFFFFF;
    box-shadow: none;
    border-radius: 0;
    opacity: 0.9;
    border: 0;
    padding: 0;
  }

  .dropdown-item {
    padding: 15px 0;
  }

  .mob-off {
    display: none !important;
  }

  .dsk-off {
    display: initial !important;
  }
}

/*fabiano*/
.todososdias {
  color: #fff;
  padding: 8px;
  border-radius: 5px;
  font-size: 18px;
  background: var(--mc-red-dark);
}

.proghoje {
  text-align: center;
  color: var(--mc-black);
  font-size: 30px;
  line-height: 31px;
  padding: 10px 0;
  border: 0;
  font-weight: bold;
  margin-right: 40px;
  background-color: initial !important;
}

@media (max-width: 768px) {
  .margin-left {
    margin-left: 1px !important;
  }

  .proghoje {
    text-align: center;
    color: var(--mc-black);
    font-size: 20px !important;
    line-height: 21px !important;
    padding: 10px 0;
    border: 0;
    font-weight: bold;
    margin-right: 1px !important;
    background-color: initial !important;
  }

  .todososdiasmob {
    color: #fff;
    padding: 5px 14px;
    border-radius: 5px;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: bold;
  }
}

.programacao {
  color: var(--mc-black);
}

form.proghd {
  color: var(--mc-black);
  padding: 0;
}

form.proghd .tgg-title {
  display: none;
  font-size: 16px;
  font-weight: bold;
  padding: 4px 0;
}

form.proghd .tgg-title i {
  float: right;
}

form.proghd .content-form {
  display: flex;
  align-items: center;
  padding: 0;
  border-left: 1px solid #ffffff20;
  padding-left: 8px;
}

form.proghd .content-form p {
  margin-bottom: 0;
  margin: 0 10px;
  font-size: 16px;
  font-weight: bold;
}

form.proghd .content-form .select-box {
  width: 148px;
  margin-right: 16px;
}

form.proghd .content-form select {
  height: 32px;
  width: 100%;
  background: none;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  line-height: 34px;
  color: var(--mc-black);
  padding: 2px 6px 2px 22px;
  font-weight: 500;
}

form.proghd .content-form select.cidade {
  background: url(../images/icone-cidade.png) no-repeat 5px center;
}

form.proghd .content-form select.filme {
  background: url(../images/icone-filme.png) no-repeat 5px center;
}

form.proghd .content-form .btn-ord {
  display: flex;
  align-items: center;
}

form.proghd .content-form .horarios {
  background: none;
  border: 1px solid #fff;
  border-radius: 4px;
  opacity: 1;
  color: var(--mc-black);
  font-size: 12px;
  line-height: 28px;
  font-family: "Lato", sans-serif;
  height: 32px;
  width: 100%;
  font-weight: 900;
  text-align: center;
  transition-duration: 0.2s;
  text-transform: uppercase;
}

form.proghd .content-form p.options {
  text-wrap: nowrap;
}

form.proghd .content-form .ingressos {
  background: #060667;
  border: 1px solid #060667;
  border-radius: 4px;
  opacity: 1;
  color: var(--mc-black);
  font-size: 12px;
  line-height: 28px;
  font-family: "Lato", sans-serif;
  height: 32px;
  width: 100%;
  font-weight: 900;
  text-align: center;
  transition-duration: 0.2s;
  text-transform: uppercase;
}

form.proghd .content-form .horarios:hover,
form.proghd .content-form .ingressos:hover {
  opacity: 0.7;
}

@media (max-width: 991px) {
  form.proghd {
    background: var(--mc-red-dark);
    border-radius: 8px;
  }

  form.proghd .content-form {
    display: block;
    padding: 8px 4px;
  }

  form.proghd .content-form select {
    height: 32px;
  }

  form.proghd .content-form .select-box {
    width: 100%;
    margin-bottom: 10px;
  }

  form.proghd .content-form .horarios-box {
    width: 100%;
  }

  ol.breadcrumb li.breadcrumb-item {
    font-size: 10px !important;
  }
}

@media (min-width: 992px) {
  form.proghd .container {
    max-width: 1320px;
    width: 100%;
  }
}

/** CONTENT **/

.site-content {
  padding-bottom: 32px;
}

.site-content article {
  padding: 2px 0 0;
  max-width: 1320px;
  margin: 0 auto;
}

.site-content article.tematizado {
  background: var(--mc-white);
  padding: 8px;
  border-radius: 32px;
}

.main-banner {
  /*margin: -132px auto 0;*/
  margin: -50px auto 0;
}

@media (max-width: 991px) {
  .main-banner {
    margin: -16px auto 0;
  }
}

.tematizacao {
  height: 280px;
}

.tab-movie-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-tabs {
  margin-bottom: 24px;
  border: 0;
  margin-left: 8px;
  gap: 32px;
  justify-content: start;
}

.nav-tabs .nav-link {
  color: #9b9595;
  font-size: 24px;
  line-height: 32px;
  padding: 8px 0;
  border: 0;
  background-color: initial !important;
  position: relative;
}

.nav-tabs .nav-link::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #9b9595;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .nav-tabs {
    gap: 8px;
  }

  .nav-tabs .nav-link {
    font-size: 16px;
    line-height: 22px;
    margin-right: 10px;
  }
}

.nav-tabs .nav-link:hover::after {
  background: var(--mc-grey);
}

.nav-tabs .nav-link.active {
  color: var(--mc-red-dark);
}

.nav-tabs .nav-link.active::after {
  background: var(--mc-red-dark)
}

.tab-pane.em-cartaz {
  margin-bottom: 32px;
}

.tab-pane.em-breve {
  margin-bottom: 32px;
}

.car-cartaz .item,
.car-breve .item {
  padding: 20px 10px 10px;
}

@media (max-width: 991px) {

  .car-cartaz .item,
  .car-breve .item {
    padding: 20px 5px 0;
  }
}

.car-cartaz .item .content-poster,
.car-breve .item .content-poster {
  position: relative;
}

.car-cartaz .item img,
.car-breve .item img {
  border-radius: 8px;
}

.car-cartaz .item ul.infos,
.car-breve .item ul.infos {
  width: 100%;
  position: absolute;
  background: #00000090;
  border-radius: 8px;
  top: 0;
  color: var(--mc-white);
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 0;
  display: flex;
  z-index: -1;
  opacity: 0;
  transition-duration: 0.5s;
  flex-direction: column;
}

.car-cartaz .item:hover ul.infos,
.car-breve .item:hover ul.infos {
  z-index: 2;
  opacity: 1;
}

.car-cartaz .item ul.infos li,
.car-breve .item ul.infos li {
  margin: 8px;
  cursor: pointer;
}

.car-cartaz .item ul.infos a,
.car-breve .item ul.infos a {
  color: var(--mc-white);
}

.car-cartaz .item div.data-movie,
.car-breve .item div.data-movie {
  display: flex;
  align-items: start;
}

.car-cartaz .item h3,
.car-breve .item h3 {
  color: var(--mc-red-dark);
  margin: 8px 0;
  height: 32px;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.car-cartaz .item div.data-movie .claind,
.car-breve .item div.data-movie .claind {
  color: var(--mc-black);
}

.car-cartaz .item div.data-movie .claind span,
.car-breve .item div.data-movie .claind span {
  color: var(--mc-white);
  padding-inline: 8px;
  padding-block: 4px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 800;
  margin: 0 4px;
  /* width: 30px; */
  display: block;
  text-align: center;
  /* height: 30px; */
  /* line-height: 14px; */
}

.car-cartaz .item div.data-movie h4,
.car-breve .item div.data-movie h4 {
  margin-bottom: 4px;
}

.car-cartaz .item div.data-movie .mv-hrs,
.car-breve .item div.data-movie .mv-hrs {
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  text-align: center;
  justify-content: center;
}

.car-cartaz .item div.data-movie .mv-hrs li,
.car-breve .item div.data-movie .mv-hrs li {
  margin: 0 10px;
  color: var(--mc-black);
}

.car-cartaz .item div.data-movie .mv-hrs .hor,
.car-breve .item div.data-movie .mv-hrs .hor {
  padding: 8px 16px;
  color: var(--mc-black);
  cursor: pointer;
  font-size: 14px;
  line-height: 19px;
  border-radius: 8px;
  position: relative;
  transition-duration: 0.2s;
}

.car-cartaz .item div.data-movie .mv-hrs .hor::before,
.car-breve .item div.data-movie .mv-hrs .hor::before {
  content: 'comprar';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 35px;
  color: #ffffff00;
  transition-duration: 0.2s;
}

.car-cartaz .item div.data-movie .mv-hrs .hor:hover,
.car-breve .item div.data-movie .mv-hrs .hor:hover {
  color: #ffffff00;
}

.car-cartaz .item div.data-movie .mv-hrs .hor:hover::before,
.car-breve .item div.data-movie .mv-hrs .hor:hover::before {
  color: #ffffff;
}

.tag {
  color: var(--mc-white);
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  padding: 8px;
  border-radius: 8px;
  position: absolute;
  top: -15px;
  right: 4px;
  z-index: 3;
  text-align: center;
  text-transform: uppercase;
  background: var(--mc-red-dark);
}

.tag.estreia {
  background: var(--mc-orange);
}

.tag.pre-estreia {
  background: var(--mc-red-light);
}

.tag.pre-venda {
  background: var(--mc-red-dark);
}

.mv-page {
  display: flex;
  flex-wrap: wrap;
}

.mv-page .item {
  width: 16.6%;
  position: relative;
}

@media (max-width: 991px) {
  .mv-page .item {
    width: 50%;
  }
}

.mv-page .item img {
  width: 100%;
}


.pp-home {
  padding: 40px 0;
}

.pp-home.pp-promo {
  background: var(--mc-grey);
}

.pp-home.pp-prod {
  background: url(../images/bg-logo.png) center center #A70215;
  background-size: 100% auto;
  margin-bottom: -64px;
}

.pp-home.pp-prod h2 {
  color: var(--mc-white);
  margin-bottom: 16px;
}

.pp-home .item img {
  border-radius: 16px;
}

/* PAGES */
ol.breadcrumb {
  --bs-gutter-x: 1.5rem;
  padding-right: calc(var(--bs-gutter-x)* .5);
  padding-left: calc(var(--bs-gutter-x)* .5);
  /* margin-bottom: 32px; */
}

ol.breadcrumb li.breadcrumb-item {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

ol.breadcrumb li.breadcrumb-item.no-link {
  color: var(--mc-black);
}

ol.breadcrumb li.breadcrumb-item a {
  color: var(--mc-black);
}

ol.breadcrumb li.breadcrumb-item a:hover {
  text-decoration: underline;
}

ol.breadcrumb li.breadcrumb-item.theme-txt,
ol.breadcrumb li.breadcrumb-item.active {
  color: var(--mc-orange);
  ;
}

.header-with-link {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 991px) {
  .header-with-link {
    flex-direction: column;
    align-items: flex-start;
  }
}

h1.page-title {
  color: var(--mc-red-dark);
  position: relative;
  margin-bottom: 32px;
}

.movie-block {
  display: flex;
  padding: 0 16px;
  border-bottom: 1px solid var(--mc-grey);
}

@media (max-width: 991px) {
  .movie-block {
    margin-top: 16px;
    padding: 0;
    gap: 16px;
  }

  h1.page-title {
    font-size: 28px;
  }
}

.poster-mv {
  width: 20%;
  position: relative;
}

.poster-mv .poster {
  width: 100%;
  border: 1px solid var(--mc-red-dark);
  border-radius: 16px;
}

.movie-side {
  width: 80%;
}

.movie-content-hd .poster-mv {
  width: 20%;
}

.movie-content-hd .movie-side {
  width: 85%;
  padding: 0 0 0 24px;
}

@media (max-width: 991px) {
  .movie-content-hd .movie-side {
    padding: 0;
  }
}

.yt-btn {
  color: var(--mc-white);
  background: var(--mc-red-dark);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
}

.yt-btn h3 {
  margin-bottom: 0;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.movie-side .mv-cont-hd {
  display: flex;
  align-items: center;
}

.movie-name {
  padding: 0;
}

.movie-name h1 {
  color: var(--mc-red-dark);
  margin: 0;
}

.movie-name h4 {
  margin: 0;
}

@media (max-width: 991px) {
  .movie-name h1 {
    font-size: 24px;
    line-height: 30px;
  }

  .movie-content-hd .poster-mv {
    width: 100%;
  }

  .movie-side {
    width: 60%;
    padding: 8px;
  }

  .movie-side .mv-cont-hd {
    flex-direction: column;
    align-items: start;
  }

  .movie-name {
    padding: 0;
  }

  .movie-name h2 {
    font-size: 24px;
    line-height: 28px;
  }

  .yt-btn {
    padding: 8px;
  }
}

.movie-name small {
  font-size: 10px;
  line-height: 13px;
}

.movie-cine-ing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

@media (max-width: 991px) {
  .movie-cine-ing {
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
  }
}

.movie-cine-ing h3.cinema-title {
  margin: 0;
  color: var(--mc-red-dark);
}

.valor-ingresso {
  color: var(--mc-white);
  background: var(--mc-red-dark);
  cursor: pointer;
  border-radius: 8px;
  padding: 8px 16px;
}

.btn-avisado {
  text-align: center;
  margin-top: 20px;
}

.btn-avisado h4 {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--mc-red-dark);
  color: var(--mc-white);
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  width: auto;
  max-width: 200px;
  text-align: center;
}

.valor-ingresso h3 {
  margin: 0;
}

.ver-dias {
  display: none;
}

@media (max-width: 991px) {
  .ver-dias {
    display: table;
    margin: -20px auto 0;
  }

  .car-cartaz .item h3,
  .car-breve .item h3 {
    font-size: 13px;
  }
}


.btn-loc {
  color: var(--mc-red-dark);
  cursor: pointer;
  border-radius: 8px;
  padding: 8px 16px;
  border: 1px solid var(--mc-red-dark);
}

.btn-loc h3 {
  margin: 0;
}

.valor-ingresso:hover,
.btn-loc:hover {
  opacity: 0.8;
}


div.title-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

div.title-link h1.page-title {
  margin-bottom: 0;
}

div.mdbtn {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  h4.cinema-title {
    padding: 8px 0;
    margin: 16px 0;
  }

  div.title-link {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }

}

div.title-link h2 {
  margin-bottom: 0;
}

.sinopse {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  color: var(--mc-black);
}

.sinopse .movie-acess {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 991px) {
  .sinopse .movie-acess {
    flex-direction: column;
  }
}

.sinopse .movie-acess h4 {
  margin-bottom: 0;
}

.sinopse .movie-people {
  display: flex;
  flex-direction: column;
}

.sinopse .movie-people h3 {
  margin-bottom: 0;
}

.tgg-sinopse {
  display: none;
  font-size: 16px;
  font-weight: bold;
  padding: 4px 8px;
}

.tgg-sinopse i {
  float: right;
}

@media (max-width: 991px) {
  .sinopse {
    flex-direction: column;
    display: none;
    padding: 8px;
  }

  .sinopse p {
    padding-right: 0;
  }

  .sinopse iframe {
    margin-top: 24px;
    width: 100%;
  }

  .tgg-sinopse {
    display: block;
  }
}

ul.cine-links {
  display: flex;
  padding-left: 0;
}

ul.cine-links li {
  margin: 0 0 0 24px;
  cursor: pointer;
}

@media (max-width: 991px) {
  ul.cine-links li {
    margin: 12px 24px 0 0;
  }
}

ul.cine-links li:hover {
  opacity: 0.8;
}

ul.cine-links li.sobre {
  color: #D6CF02;
}

ul.cine-links li.local {
  color: #00862F;
}

.content-programacao {
  margin: 30px 0;
}

.content-programacao h3 {
  color: var(--mc-white);
  font-size: 18px;
}

.content-programacao .filme {
  margin-bottom: 24px;
  padding-bottom: 5px;
  border-bottom: 1px solid #313131;
}

.content-programacao .filme .col-poster {
  width: 20%;
  position: relative;
}

.content-programacao .filme .content-poster {
  position: relative;
}

.content-programacao .filme .col-cont-mv {
  width: 80%;
  padding: 0 0 0 24px;
}

.content-programacao .filme .col-cont-mv h2 {
  color: var(--mc-red-dark);
}

@media (max-width: 991px) {
  .content-programacao .filme .col-cont-mv {
    width: 100%;
    padding: 4px;
  }

  .content-programacao .filme .col-cont-mv .mob-fit-mv {
    display: flex;
    justify-content: space-between;
  }

  .content-programacao .filme .col-cont-mv .mob-fit-mv .mob-fit-mv-data {
    width: 70%;
    padding-left: 8px;
  }

  .content-programacao .filme .col-cont-mv .mob-fit-mv .mob-fit-mv-poster {
    width: 60%;
  }

  .content-programacao .filme .col-cont-mv .mob-fit-mv .mob-fit-mv-poster img.poster {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--mc-red-dark);
  }
}

.content-programacao .filme .col-poster img.poster {
  width: 100%;
  border-radius: 8px;
  border: 2px solid var(--mc-red-dark);
}

.content-programacao .filme .col-poster ul.infos {
  width: 100%;
  position: absolute;
  background: #00000090;
  border-radius: 8px;
  top: 0;
  color: var(--mc-white);
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 0;
  display: flex;
  z-index: -1;
  opacity: 0;
  transition-duration: 0.5s;
}

.content-programacao .filme .col-poster:hover ul.infos {
  z-index: 2;
  opacity: 1;
}

.content-programacao .filme .col-poster:hover ul.infos li {
  margin: 8px;
  cursor: pointer;
  font-size: 24px;
}

.content-programacao .filme .col-poster:hover ul.infos li a {
  color: var(--mc-white);
}

.content-programacao .filme h5 {
  font-size: 28px;
  line-height: 32px;
  font-weight: 900;
  margin-bottom: 0;
  color: var(--mc-orange);
}

.content-programacao .filme small {
  font-size: 10px;
  line-height: 13px;
}

div.info-cine-det {
  padding: 16px;
  border-radius: 16px;
  background: #E2E9EC10;
  margin-bottom: 40px;
}

div.info-cine-det h4 {
  font-size: 22px;
  font-weight: bold;
}

div.info-cine-det p {
  margin-bottom: 0;
}

form.info-cine-det {
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

form.info-cine-det h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0;
  color: var(--mc-black);
}

form.info-cine-det select {
  height: 32px;
  width: 100%;
  background: none;
  box-shadow: 0px 0px 4px #0000001A;
  border: 1px solid #D8076B1A;
  border-radius: 8px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 32px;
  color: var(--mc-black);
  padding: 0 6px 2px 25px;
  font-weight: 500;
  background: url(../images/icone-cidade.png) no-repeat 5px center #ffffff10;
}

.data-filme {
  color: var(--mc-black);
  width: 100%;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  border-top: 1px solid #BBB7B7;
  border-bottom: 1px solid #BBB7B7;
}

@media (max-width: 991px) {
  form.info-cine-det {
    flex-direction: column;
    align-items: flex-start;
  }

  form.info-cine-det h4 {
    margin-bottom: 16px;
  }

  .data-filme {
    border-bottom: 0px solid #BBB7B7;
  }

  .data-filme.on-prog {
    height: 100%;
    display: flex;
    justify-content: space-around;
  }
}



.classind {
  /* position: absolute; */
  padding: 3px;
}

.data-filme .classind span {
  font-size: 26px;
  border-radius: 8px;
  color: var(--mc-white);
  display: inline-block;
  text-align: center;
  font-weight: bold;
  padding-inline: 8px;
}

.data-filme h4 {
  margin-bottom: 0;
  font-size: 14px;
}

.data-filme h4 span {
  color: var(--mc-red-dark);
}

.data-filme.on-prog legend {
  font-size: 14px;
  line-height: 16px;
}

@media (max-width: 991px) {
  .data-filme {
    flex-direction: column;
    padding: 16px 0;
    align-items: start;
    gap: 1px;
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
    justify-content: space-around;
    height: 100%;

  }

  .data-filme h4 {
    display: contents;
  }

  .content-programacao .filme .col-cont-mv h2 {
    font-size: 24px;
    font-weight: 800;
  }
}

span.claL, span.claAL {
  background: #00A85A;
}

span.cla10, span.claA10 {
  background: #01AFF0;
}

span.cla12, span.claA12 {
  background: #FFCC29;
}

span.cla14, span.claA14 {
  background: #F58633;
}

span.cla16, span.claA16 {
  background: #EC3237;
}

span.cla18, span.claA18 {
  background: #000;
}

.content-programacao .filme .sala-filme {
  display: inline-flex;
  flex-direction: column;
  margin-top: 24px;
}

@media (max-width: 991px) {
  .content-programacao .filme .sala-filme {
    flex-direction: column;
  }
}

.content-programacao .filme .sala-filme .sala-data {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: #BBB7B7;
  border-radius: 8px 8px 0 0;
  gap: 16px;
  font-weight: 700;
}

.content-programacao .filme .sala-filme .sala-data .sala {
  color: var(--mc-red-dark);
}

.content-programacao .filme .sala-filme .sala-data .video {
  color: var(--mc-black);
}

.content-programacao .filme .sala-filme .sala-data img {
  margin-right: 16px;
  height: 26px;
}

.content-programacao .filme .sala-filme .spcbox {
  background: var(--mc-orange);
  padding: 8px 16px;
}

.content-programacao .filme .sala-filme .spcbox h4 {
  margin-bottom: 0;
  text-transform: uppercase;
  color: var(--mc-white);
}

.content-programacao .filme .sala-filme .horbox {
  display: flex;
  gap: 16px;
  padding: 8px 16px;
  border: 1px solid #BBB7B7;
  border-radius: 0 0 8px 8px;
}

.content-programacao .filme .sala-filme .horbox .hor {
  padding: 8px 16px;
  color: var(--mc-white);
  background: var(--mc-red-dark);
  border: 1px solid var(--mc-red-dark);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  border-radius: 8px;
  position: relative;
  transition-duration: 0.2s;
}

.content-programacao .filme .sala-filme .horbox .hor::before {
  content: 'comprar';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 35px;
  color: #ffffff00;
  transition-duration: 0.2s;
}

.content-programacao .filme .sala-filme .horbox .hor.disabled {
  opacity: 0.3;
  background: var(--mc-grey);
  color: var(--mc-red-dark);
}

.content-programacao .filme .sala-filme .horbox .hor.disabled::before {
  content: 'Expirado';
  font-size: 12px;
}

.content-programacao .filme .sala-filme .horbox .hor.disabled:hover::before {
  color: var(--mc-red-dark);
}

.content-programacao .filme .sala-filme .horbox .hor.lotado {
  opacity: 0.3;
  background: var(--mc-grey);
  color: var(--mc-red-dark);
}

.content-programacao .filme .sala-filme .horbox .hor.lotado::before { 
  content: 'Esgotado'; 
  font-size: 12px;
}

.content-programacao .filme .sala-filme .horbox .hor.lotado:hover::before {
  color: var(--mc-red-dark);
}

.content-programacao .filme .sala-filme .horbox .hor:hover {
  color: #ffffff00;
}

.content-programacao .filme .sala-filme .horbox .hor:hover::before {
  color: var(--mc-white);
}

@media (max-width: 991px) {
  .content-programacao .filme .sala-filme .horbox {
    justify-content: flex-start;
    width: 100%;
    flex-wrap: wrap;
  }

  .content-programacao .filme .sala-filme .horbox .hor {
    margin-left: 0;
    margin: 8px 8px 0 0;
  }

  .content-programacao .filme .sala-filme .sala-data {
    width: 100%;
    flex-wrap: wrap;
  }

  .tabs-dias-horarios .owl-item .item {
    margin: 0 2px !important;
  }
}

.box-prog-hor {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .box-prog-hor {
    flex-direction: column;
  }
}

.box-prog-hor .sala-filme .sala-data {
  justify-content: space-between;
}

.box-prog-hor .sala-filme .spcbox h4 {
  text-align: center;
}

.box-prog-hor .sala-filme .horbox {
  justify-content: center;
}


/** SLIDERS **/
.owl-theme .owl-nav [class*='owl-'] {
  position: absolute;
  top: 40%;
  font-size: 0;
  padding: 16px;
}

.owl-carousel .owl-nav .owl-prev {
  background: url(../images/navigation-arrow-left.svg) no-repeat center center;
  left: -50px;
  opacity: 0.6;
  transition-duration: 0.2s;
  border-radius: 50%;
  padding: 25px
}

.owl-carousel .owl-nav .owl-prev:hover {
  background: url(../images/navigation-arrow-left.svg) no-repeat center center;
  opacity: 1;
}

.owl-carousel .owl-nav .owl-next {
  background: url(../images/navigation-arrow-right.svg) no-repeat center center;
  right: -50px;
  opacity: 0.6;
  transition-duration: 0.2s;
  border-radius: 50%;
  padding: 25px;
}

.owl-carousel .owl-nav .owl-next:hover {
  background: url(../images/navigation-arrow-right.svg) no-repeat center center;
  opacity: 1;
}

@media (max-width: 991px) {
  .owl-theme .owl-nav [class*='owl-'] {
    top: 30%;
  }

  .owl-carousel .owl-nav .owl-prev {
    left: 0;
  }

  .owl-carousel .owl-nav .owl-next {
    right: 0;
  }
}

.owl-theme .owl-dots {
  margin: -74px auto 0;
  background: linear-gradient(0deg, var(--mc-grey) 10%, rgba(255, 255, 255, 0) 50%);
  padding: 16px 0;
  z-index: 99;
  position: relative;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.owl-theme .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  margin: 8px;
  background: var(--mc-white);
  border: 1px solid var(--mc-red-light);
  border-radius: 4px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--mc-red-dark);
}

@media (max-width: 991px) {

  .owl-theme .owl-dots,
  .owl-carousel .owl-dots.disabled,
  .owl-carousel .owl-nav.disabled {
    display: none;
  }
}

.main-banner .owl-nav .owl-next {
  right: 30px;
}

.main-banner .owl-nav .owl-prev {
  left: 30px;
}

@media (max-width: 991px) {
  .main-banner .owl-nav .owl-next {
    top: 22%;
    right: 10px;
    opacity: 0.2;
  }

  .main-banner .owl-nav .owl-prev {
    top: 22%;
    left: 10px;
    opacity: 0.2;
  }
}


.prod-promo .owl-item.active.center img {

  transition-duration: 0.2s;
}

.prod-promo .item {
  position: relative;
}

.prod-promo .item p {
  color: var(--mc-black);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 32px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: table;
  text-align: center;
}

.with-stuck.stuck {
  position: fixed;
  top: 28px;
  padding: 8px 10px 16px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  z-index: 9;
  background: var(--mc-grey);
  max-width: 1320px;
  width: 100%;
}

.tabs-dias-horarios {
  margin: 24px 0;
}

.tabs-dias-horarios .owl-item .item {
  text-align: center;
  color: var(--mc-black);
  padding: 16px;
  margin: 0 8px;
  cursor: pointer;
  border: 2px solid var(--mc-red-dark);
  border-radius: 24px;
}

.tabs-dias-horarios .owl-item .item h1,
.tabs-dias-horarios .owl-item .item h4 {
  margin-bottom: 0;
}

.tabs-dias-horarios .owl-item .item.select {
  color: var(--mc-white);
  border: 2px solid var(--mc-red-dark);
  background: var(--mc-red-dark);
}

.tabs-dias-horarios .owl-dots,
.tabs-dias-horarios .owl-dots.disabled {
  display: none;
}

.tabs-dias-horarios .owl-nav .owl-prev,
.tabs-dias-horarios .owl-nav .owl-prev:hover {
  box-shadow: none;
  top: 20px;
  left: -30px;
}

.tabs-dias-horarios .owl-nav .owl-next,
.tabs-dias-horarios .owl-nav .owl-next:hover {
  box-shadow: none;
  top: 20px;
  right: -30px;
}

@media (max-width: 991px) {

  .tabs-dias-horarios .owl-nav .owl-prev,
  .tabs-dias-horarios .owl-nav .owl-prev:hover {
    left: -20px;
  }

  .tabs-dias-horarios .owl-nav .owl-next,
  .tabs-dias-horarios .owl-nav .owl-next:hover {
    right: -20px;
  }
}

.promos-produtos {
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.promos-produtos li {
  position: relative;
  padding: 8px;
}

.promos-produtos li.prod {
  width: 50%;
}

.promos-produtos li.prom {
  /*width: 33%;*/
  width: 50%;
}

@media (max-width: 991px) {
  .promos-produtos li.prod {
    width: 100%;
  }

  .promos-produtos li.prom {
    width: 100%;
  }
}


.promos-produtos li p {
  color: var(--mc-black);
  font-size: 40px;
  font-weight: 900;
  position: absolute;
  display: table;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-shadow: 0px 3px 6px #00000080;
}

.promos-produtos li img {
  border-radius: 16px;
  width: 100%;
}



.pp-side {
  background: #E2E9EC10;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 24px;
}

.pp-side ul {
  padding: 0;
  margin: 0;
}

.pp-side .item {
  width: 100%;
  margin-bottom: 12px;
}

.pp-side .item p {
  text-align: right;
  text-transform: uppercase;
  color: var(--mc-black);
  font-size: 8px;
  margin-bottom: 0;
}

.pp-side .item img {
  width: 100%;
}

img.img-promo-prod {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 24px;
}

.sec-tt {
  color: #D8076B;
}

.redux-box {
  background: #F7F8F9;
  max-width: 100%;
  width: 500px;
  margin: 32px auto;
  padding: 24px;
  border-radius: 24px;
}

form.contato label {
  display: block;
}

form.contato input[type="text"],
form.contato input[type="password"],
form.contato input[type="email"],
form.contato input[type="tel"],
form.contato select {
  display: block;
  border: 1px solid #D9E1E7;
  width: 100%;
  height: 40px;
  font-size: 1rem;
  padding: 8px;
  outline: none;
  margin-bottom: 10px;
  color: #000;
  font-weight: 500;
  border-radius: 8px;
  background-color: white;
}

form.contato .custom-file {
  position: relative;
}

form.contato .custom-file .add-cv {
  background: #0090DF;
  color: var(--mc-black);
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  width: 135px;
  position: absolute;
  top: 0;
  height: 40px;
  border-radius: 5px;
  cursor: pointer;
}

form.contato textarea {
  display: block;
  border: 1px solid #D9E1E7;
  border-radius: 8px;
  width: 100%;
  height: 150px;
  font-size: 1rem;
  padding: 8px;
  outline: none;
  margin-bottom: 10px;
  color: #000;
  font-weight: 500;
}

form.contato input[type="submit"] {
  color: var(--mc-white);
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  width: 100%;
  height: 40px;
  border-radius: 5px;
  cursor: pointer;
  border: 0;
  font-weight: 600;
  background: var(--mc-red-dark);
}

.sec-tt.sucess {
  color: #07d84d;
  text-align: center;
  margin: 10px 0;
}

.sec-tt.erro {
  color: #d80731;
  text-align: center;
  margin: 10px 0;
}

ul.bomboniere {
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

ul.bomboniere li {
  width: 18%;
  border: 2px solid var(--mc-red-dark);
  padding: 8px;
  border-radius: 16px;
  text-align: center;
  align-items: center;
  margin: 1%;
}

@media (max-width: 991px) {
  ul.bomboniere li {
    width: 48%;
  }
}

ul.bomboniere li img {
  width: 100%;
}

ul.bomboniere li h5 {
  color: var(--mc-red-dark);
  margin: 16px 0;
}

ul.bomboniere li p {
  margin-bottom: 4px;
}


ul.cinemas-list {
  padding: 0;
  justify-content: center;
}

ul.cinemas-list li {
  background: #005866;
  box-shadow: 0px 0px 6px #00000029;
  border-radius: 8px;
  margin: 0 1% 15px;
  text-align: center;
  position: relative;
}

ul.cinemas-list li .tag {
  position: initial;
  width: 100%;
  border-radius: 0;
}

ul.cinemas-list li div {
  border-radius: 8px;
}

@media (max-width: 991px) {
  ul.cinemas-list {
    display: block;
  }

  ul.cinemas-list li {
    width: 100%;
  }
}

ul.cinemas-list li h6 {
  color: var(--mc-white);
  font-size: 20px;
  line-height: 27px;
  margin: 0;
  padding: 8px 0;
  border-radius: 8px;
  text-shadow: 0px 3px 6px #00000080;
  background: var(--mc-red-dark);
}

ul.cinemas-list li p {
  color: var(--mc-black);
  font-size: 16px;
  line-height: 18px;
  margin: 0;
  padding: 8px 0 16px;
  border-radius: 8px;
}

ul.cinemas-list li img.img-news {
  width: 100%;
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
}

div.cine-acc h3 {
  color: var(--mc-black);
  text-align: center;
  font-size: 20px;
  line-height: 27px;
  text-shadow: 0px 3px 6px #00000080;
}

div.cine-acc p {
  background: #fff;
  border-radius: 2px;
  padding: 16px;
}

div.cine-acc h3 div {
  border-radius: 4px;
  padding: 4px 0;
  cursor: pointer;
}

img.clube {
  width: 100%;
}

.ad-new {
  width: 100%;
  padding: 4px;
  border-radius: 4px;
  color: var(--mc-black);
  margin-bottom: 20px;
  text-align: center;
}

.ad-new a {
  color: var(--mc-black);
  text-decoration: underline;
}

.accordion-flush .accordion-item:first-child,
.accordion-item:not(:first-of-type) {
  border-top: 1px solid var(--mc-grey);
}

.accordion-flush .accordion-item:last-child {
  border-bottom: 1px solid var(--mc-grey);
}

.accordion-flush .accordion-item {
  border-right: 1px solid var(--mc-grey);
  border-left: 1px solid var(--mc-grey);
  border-radius: 8px;
  margin-bottom: 16px;
}

.accordion-button {
  background: none;
}

.pp-728 {
  width: 100%;
  padding: 24px 0 0;
  background: var(--mc-grey);
  text-align: center;
}

.pp-728 p {
  font-size: 8px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.pp-728 img {
  max-width: 728px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/** FOOTER **/

footer {
  color: var(--mc-black);
  padding: 24px 0 8px;
  background: var(--mc-black);
  margin-bottom: -32px;
}

footer .contfoo li b {
  font-size: 16px;
  line-height: 24px;
}

footer .contfoo .btt-cad:hover {
  opacity: 0.7;
}

footer .contfoo .news-ft {
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 6px;
}

footer .contfoo .news-ft p {
  text-align: center;
  margin-bottom: 0;
  font-size: 14px;
}

footer .contfoo .news-ft .btt-cad {
  background: #fff;
  border-radius: 4px;
  opacity: 1;
  font-size: 12px;
  line-height: 32px;
  padding: 0 8px;
  font-weight: 900;
  margin: 4px auto 0;
  cursor: pointer;
  text-align: center;
  transition-duration: 0.2s;
  text-transform: uppercase;
}

footer ul {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  gap: 16px;
  justify-content: center;
}

footer ul li h3 {
  margin-bottom: 0;
}

footer ul li a {
  color: var(--mc-white);
  padding: 8px;
}

footer ul li a:hover {
  opacity: 0.8;
}

footer .copyright {
  margin-top: 24px;
}

footer .copyright p {
  font-size: 12px;
  line-height: 13px;
  margin-bottom: 0;
  color: var(--mc-white);
}

footer .copyright .final-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}

footer .copyright .final-line p {
  margin-bottom: 0;
}

.btnModalCinema {
  background: var(--mc-red-dark);
  color: var(--mc-white);
  padding: 5px;
  border-radius: 13px;
}

.btnModalCinema:hover {
  cursor: pointer;
  background: var(--mc-red-dark);
  color: var(--mc-white);
  border-radius: 13px;
}

@media (max-width: 991px) {
  .btnModalCinema {
    background: var(--mc-red-dark);
    color: var(--mc-white);
    border-radius: 13px;
    font-size: 14px;
    padding: 5px;
    cursor: pointer;
  }
}

.btn-accept {
  text-align: center !important;
}

#cookie-message {
  z-index: 9999;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--mc-red-dark);
  color: #fff;
  text-align: center;
  padding: 10px;
  padding-top: 20px;

}

#cookie-message::before {
  content: '';
  height: 2px;
  width: 100%;
  background: transparent linear-gradient(90deg, #FFFFFF00 0%, #932836 25%, #C7AC22 48%, #6DA852 64%, #3559A0 83%, #FFFFFF00 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  top: 0;
}

#cookie-message a {
  font-weight: bold;
  color: #ffffff;
}

#cookie-message a:hover {
  font-weight: bold;
  color: #ffffff;
}

#cookie-accept {
  background-color: #fff;
  border: none;
  color: #000;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  height: 35px;
  width: 90px;
  margin-top: 10px;
  border-radius: 8px;
}

@media (max-width: 991px) {
  footer .contfoo .btt-cad {
    margin: 10px auto 34px;
    width: 100%;
  }

  footer .copyright {
    margin-top: 0;
  }

  footer form.row {
    display: none;
  }

  footer .bndes {
    margin: 20px auto 0;
  }

  footer .contfoo,
  footer ul,
  footer .copyright .final-line {
    flex-direction: column;
    text-align: center;
  }

  footer ul li {
    width: 100%;
    margin-bottom: 16px;
  }
}


@media (min-width: 1200px) {
  .container {
    max-width: 1320px;
    width: 100%;
  }
}

@media (min-width: 991px) {
  .container {
    max-width: 1320px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 1320px;
    width: 100%;
  }
}

@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
  }

  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }

  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }
}

.banner-carrossel {
  border-radius: 0px;
}

input:disabled {
  background-color: #f0f0f0 !important;
}

.card-cinema div {
  background-color: var(--mc-red-dark);
  border-radius: 16px;
}

.card-cinema div a img {
  width: 100%;
  border-radius: 16px;
}

.card-cinema div a h6 {
  text-align: center;
  text-decoration: none;
  color: var(--mc-white);
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 4px;
}

.card-cinema div a p {
  text-align: center;
  text-decoration: none;
  color: var(--mc-white);
  margin-bottom: 4px;
}

.modal-cities-title {
  color: #25292B;
  font-size: 18px;
}

.modal-cities-separator {
  height: 1px;
  background-color: #F0F0F0;
  margin: 0 16px 0 16px;
  border-radius: 30px;
}

.modal-header {
  border-bottom: none !important;
}

.modal-cities-title-state {
  color: #2C3134;
  font-size: 16px;

}

.modal-cities-title-state {
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .modal-cities-title-state {
    font-size: 1.1rem;
    margin-left: 1rem;
  }
}

@media (max-width: 576px) {
  .modal-cities-title {
    font-size: 1.15rem;
  }

  .modal-header {
    padding: 1rem 0.5rem !important;
  }

}


.btnModalCinema {
  font-size: 0.875rem;
  padding: 8px 12px;
  transition: all 0.2s;
}

.img-footer {
  height: 40px;
}

@media screen and (max-width: 768px) {
  .modal-dialog .close {
    top: 38% !important;
    right: -3px !important;
  }
}

.hor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.sessao-azul-icon {
  height: 16px;
  width: auto;
  margin-left: 4px;
}

