:root {
    --font-family: 'Gotham Narrow', serif;
    --cc-red01: #9e0000;
    --cc-red02: #c20002;
    --cc-red03: #ff0000;
    --cc-orange: #ff5d00;
    --cc-yellow: #ffc000;
    --cc-black01: #111111;
    --cc-black02: #151515;
    --cc-grey: #ebebeb;
    --cc-white: #ffffff;
    --cc-gradient: linear-gradient(90deg, #9e0000 0%, #c20002 50%, #ff0000 100%);
}

h1 {
    font-size: 32px;
    line-height: 40px;
    font-weight: bold;
}

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

h3 {
    font-size: 20px;
    line-height: 24px;
    font-weight: bold;
}

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

h5 {
    font-size: 12px;
    line-height: 14px;
    font-weight: bold;
}

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

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

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

.ca-btn {
    background: var(--cc-orange);
    color: var(--cc-white);
    border-radius: 24px;
    opacity: 1;
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
    padding: 8px 16px;
    cursor: pointer;
    text-align: center;
    transition-duration: 0.2s;
    width: fit-content;
    text-wrap: nowrap;
    border: 0;
    text-decoration: none;
}

.ca-btn.xl {
    font-size: 20px;
    line-height: 24px;
    padding: 8px 24px;
}

.ca-btn.red {
    background: var(--cc-red01);
}

.ca-btn i {
    margin-right: 8px;
}

.ca-btn:hover {
    opacity: 0.7;
}

body {
    font-family: var(--font-family);
    color: var(--cc-white);
    background: var(--cc-black02);
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
    grid-gap: 20px;
}

/** HEADER **/

header {
    z-index: 9;
    position: relative;
}

header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0;
}

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

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

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

    header .header-content .logo {
        width: 150px;
        position: absolute;
        margin: 0 auto;
        left: 0;
        right: 0;
        top: 12px;
    }

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

    .btnModalCinema {
        border: solid rgb(255, 209, 42) 2px !important;
        border-radius: 20px !important;
        margin-block: 20px !important;
        font-size: 1rem ! important;
    }
    .container-novidades {
        margin-top: 30px;
    }
}

/** Formulário de horários **/
form.form-city {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 36px;
    margin: 0 auto;
    left: 0;
    right: 0;
    width: fit-content;
    gap: 40px
}

form.form-city i.fa-solid {
    font-size: 32px;
}

form.form-city i.fa-solid.fa-chevron-down {
    font-size: 16px;
}

form.form-city label {
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
}

form.form-city .form-group {
    user-select: none;
    display: flex;
    gap: 8px;
    width: 250px;
    align-items: center;
}

form.form-city .form-content {
    display: flex;
    flex-direction: column;
}

form.form-city .form-content select.slc-choice {
    border: 0;
    background: none;
    appearance: none;
    -webkit-appearance: none;
    padding: 0;
    color: var(--cc-white);
    font-size: 20px;
    line-height: 24px;
    font-weight: bold;
    width: calc(100% + 30px);
    padding-top: 20px;
    margin-top: -20px;
    z-index: 2;
}

form.form-city .form-btn {
    background: var(--cc-red01);
    border-radius: 16px;
    border: 0;
    height: 40px;
    font-size: 20px;
    line-height: 24px;
}

form.form-city .form-btn:hover {
    background: var(--cc-red02);
}

@media (max-width: 991px) {
    form.form-city {
        position: initial;
        display: block;
        margin: 0;
        padding-bottom: 32px;
        margin-bottom: 24px;
        border-bottom: 1px solid #ffffff20;
    }

    form.form-city .form-group {
        margin-bottom: 24px;
    }

    form.form-city .form-content select.slc-choice {
        font-size: 18px;
        line-height: 20px;
    }
}

/** Fim do formulário de horários **/

/** Menu principal **/
nav.main {
    padding: 0;
    background: var(--cc-gradient);
    position: unset;
}

nav.main .navbar-nav {
    width: 100%;
    gap: 8px;
    justify-content: center;
}

nav.main .navbar-nav .nav-item .nav-link {
    color: var(--cc-white);
    font-size: 18px;
    line-height: 22px;
    cursor: pointer;
    gap: 8px;
    display: flex;
    align-items: center;
}

nav.main .navbar-nav .nav-item .nav-link.social {
    padding: 8px 0;
}

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

nav.main .navbar-nav .nav-item .nav-link .img-icon {
    height: 32px;
}

nav.main .navbar-nav .nav-item .nav-link i {
    font-size: 32px;
    line-height: 32px;
}

nav.main .navbar-nav .nav-item .nav-link span {
    display: none;
}

nav.main .navbar-nav .nav-item .dropdown-menu {
    background: var(--cc-red02);
    border: 1px solid var(--cc-white);
}

nav.main .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    color: var(--cc-white);
}

.dropdown-item:hover {
    color: var(--cc-black01) !important;
}

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

.dropdown-menu {
    margin-top: 0;
}

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

    nav.main .container {
        padding: 0;
    }

    nav.main .content-navbar {
        background: var(--cc-black01);
        padding: 16px;
    }

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

    nav.main .navbar-nav .nav-item .nav-link .img-icon {
        height: 24px;
    }

    nav.main .navbar-nav .nav-item .nav-link span {
        display: initial;
    }

    nav.main .navbar-toggler {
        border: 0;
        padding: 18px 16px;
    }

    nav.main .navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
        background: url(../images/menu.svg) no-repeat;
        background-size: 100%;
        width: 1em;
        height: 1em;
    }

    nav.main .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background: url(../images/menu.svg) no-repeat;
        background-size: 100%;
        width: 1em;
        height: 1em;
    }
}

/** Fim do Menu principal **/

/** Fim do HEADER **/

.todososdias {
    color: var(--cc-white);
    padding: 8px;
    border-radius: 5px;
    font-size: 18px;
}

.proghoje {
    text-align: center;
    color: var(--cc-white);
    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(--cc-white);
        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;
    }
}

form.proghd {
    color: var(--cc-white);
    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(--cc-white);
    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(--cc-white);
    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(--cc-white);
    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(--cc-red01);
        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%;
    }
}

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

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

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

.tematizacao {
    height: 280px;
}

@media (max-width: 991px) {
    .site-content article {
        padding: 16px 0 0;
    }
}

/** Banner principal **/

.main-banner {
    margin: 0 auto;
    margin-bottom: 10px;
}

.main-banner .owl-item {
    padding: 0 24px;
}

.main-banner .owl-item img {
    border-radius: 24px;
}

.main-banner .owl-item .claind {
    position: absolute;
    top: 17px;
    right: 32px;
}

.main-banner .owl-item .claind span {
    color: var(--cc-white);
    padding: 8px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    margin: 0 4px;
}

@media (max-width: 991px) {
    .main-banner .owl-item {
        padding: 0 8px;
    }

    .main-banner .owl-item .claind {
        top: 12px;
        right: 12px;
    }
}

/** Fim do Banner principal **/


/** TABS **/
.tab-movie-link {
    position: relative;
}

.more-movies-btn {
    background: var(--cc-red01);
    border-radius: 16px;
    padding: 8px 16px;
    text-wrap: nowrap;
    transition-duration: 0.7s;
    border: none;
    position: absolute;
    right: 16px;
    top: 0;
}

.more-movies-btn:hover {
    background: var(--cc-red01);
    opacity: 0.7;
}

@media (max-width: 991px) {
    .more-movies-btn {
        background-color: var(--cc-red01) !important;
        border-radius: 16px;
        padding: 8px 16px;
        text-wrap: nowrap;
        transition-duration: 0.7s;

        color: var(--cc-grey);
        position: initial;
        background: none;
        width: 100%;
        margin-top: 16px;
    }

    .more-movies-btn:hover {
        background: none;
    }
}

.nav-tabs {
    border: 0;
    gap: 32px;
    margin-bottom: 16px;
}

.nav-tabs .nav-link {
    color: var(--cc-white);
    font-size: 24px;
    line-height: 32px;
    padding: 8px 0;
    border: 0;
    background-color: initial !important;
    position: relative;
}

.nav-tabs .nav-link::after {
    content: '';
    width: 80%;
    height: 4px;
    background: var(--cc-black02);
    position: absolute;
    bottom: -4px;
    left: 5%;
    right: 0;
    margin: 0 auto;
}

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

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

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

.nav-tabs .nav-link.active {
    color: var(--cc-red03);
}

.nav-tabs .nav-link.active::after {
    background: var(--cc-red01)
}

/** Fim das TABS **/

/** Carrossel de posters **/

.movie-carousel .item {
    padding: 20px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.movie-carousel .item .content-poster {
    position: relative;
}

.movie-carousel .item img {
    border-radius: 16px;
    border: 1px solid var(--cc-red03);
}

.movie-carousel .item ul.infos {
    width: 100%;
    position: absolute;
    background: linear-gradient(180deg, #15151570 0%, #111111 100%);
    border: 1px solid var(--cc-red03);
    border-radius: 16px;
    top: 0;
    color: var(--cc-white);
    height: 100%;
    align-items: center;
    justify-content: end;
    padding: 0;
    display: flex;
    gap: 16px;
    z-index: -1;
    opacity: 0;
    padding-bottom: 16px;
    transition-duration: 0.5s;
    flex-direction: column;
}

.movie-carousel .item:hover ul.infos {
    z-index: 2;
    opacity: 1;
}

.movie-carousel .item ul.infos li {
    cursor: pointer;
    text-align: center;
    color: var(--cc-red03);
}

.movie-carousel .item ul.infos a {
    color: var(--cc-red03);
}

.movie-carousel .item h4 {
    margin: 0;
    color: var(--cc-yellow);
    text-align: center;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 16px;
}

.movie-carousel .item div.data-movie {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.movie-carousel .item div.data-movie .claind {
    color: var(--cc-white);
}

.movie-carousel .item div.data-movie .claind span {
    color: var(--cc-white);
    border-radius: 4px;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    display: block;
    width: 30px;
    height: 24px;
    text-align: center;
}

.movie-carousel .item div.data-movie h5 {
    margin-bottom: 0;
}

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

.movie-carousel .item div.data-movie .mv-hrs li {
    margin: 0 10px;
    color: var(--cc-white);
}

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

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

.movie-carousel .item div.data-movie .mv-hrs .hor:hover {
    color: #ffffff00;
}

.movie-carousel .item div.data-movie .mv-hrs .hor:hover::before {
    color: #ffffff;
}

@media (max-width: 991px) {
    .movie-carousel .item {
        padding: 20px 5px 0;
    }

    .movie-carousel .item div.data-movie {
        padding: 0 0 8px;
    }

    .movie-carousel .item h2 {
        font-size: 14px;
        line-height: 20px;
    }
}

/** Fim do Carrossel de posters **/

/** Tags **/
.tag {
    color: var(--cc-white);
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
    padding: 3px 12px;
    border-radius: 24px;
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    z-index: 3;
}

.tag-carrossel {
    color: var(--cc-white);
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
    padding: 3px 12px;
    border-radius: 24px;
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    z-index: 3;
}

.tag.estreia {
    background: var(--cc-red03);
}

.tag-carrossel.estreia {
    background: var(--cc-red03);
}

.tag.pre-estreia {
    background: var(--cc-red01);
}

.tag-carrossel.pre-estreia {
    background: var(--cc-red01);
}

.tag.pre-venda {
    background: var(--cc-orange);
}

.tag-carrossel.pre-venda {
    background: var(--cc-orange);
}

.tag.prox {
    background: var(--cc-red02);
}

.tag-carrossel.prox {
    background: var(--cc-red02);
}

/** Fim das TAGS **/

.countdown-banner {
    border-radius: 24px;
    background: var(--cc-black02);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 0;
    gap: 16px;
    overflow: hidden;
    position: relative;
}

.countdown-banner .countdown-movie-art {
    position: absolute;
    opacity: 0.3;
    z-index: 1;
    width: 100%;
}

.countdown-banner .countdown-movie {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.countdown-banner .countdown-movie .movie-info .countdown-titulo {
    font-size: 32px;
    line-height: 40px;
    font-weight: bold;
    color: var(--cc-red03);
    text-align: center;
    margin-bottom: 0;
}

.countdown-banner .countdown-movie .movie-info .countdown-estreia {
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0;
}

.countdown-banner .countdown-body {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 16px;
    z-index: 2;
}

.countdown-banner .countdown-body h3 {
    margin-bottom: 0;
}

#countdown-movie {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: center;
}

#countdown-movie div {
    border: 1px solid var(--cc-orange);
    border-radius: 60px;
    width: 196px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#countdown-movie div h2 {
    margin-bottom: 0px;
    color: var(--cc-orange);
}

#countdown-movie div p {
    margin-bottom: 0px;
    color: var(--cc-orange);
}

@media (max-width: 991px) {
    .countdown-banner .countdown-movie .movie-info {
        max-width: 100%;
    }

    .countdown-banner .countdown-movie-art {
        height: 100%;
        width: auto;
    }

    .countdown-banner h3 {
        margin-bottom: 0;
        font-size: 16px;
        line-height: 20px;
    }

    .countdown-banner .movie-info h4 {
        font-size: 14px;
        line-height: 16px;
        display: none;
    }

    .countdown-banner .countdown-movie {
        padding: 8px 0 0;
    }

    .countdown-banner .countdown-body {
        padding: 8px 0;
        gap: 8px;
    }

    .countdown-banner .countdown-body h2 {
        margin-bottom: 0;
    }

    .countdown-banner .countdown-body .ca-btn {
        margin: 0;
    }

    #countdown-movie div {
        padding: 4px 0;
        width: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }

    #countdown-movie div.mob-off {
        display: none;
    }

    #countdown-movie div h2 {
        font-size: 16px;
        line-height: 18px;
    }

    #countdown-movie div p {
        font-size: 12px;
    }

}

.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-promo .exclusivo {
    color: var(--cc-yellow);
    margin-bottom: 16px;
}

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

/* PAGES */
ol.breadcrumb {
    --bs-gutter-x: 1.5rem;
    flex-direction: column;
}

ol.breadcrumb li.breadcrumb-item {
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    display: flex;
    gap: 8px;
    padding-left: 0;
    position: relative;
    width: fit-content;
    font-weight: bold;
}

ol.breadcrumb li.breadcrumb-item a {
    padding-right: 16px;
    position: relative;
    color: var(--cc-white);
}

ol.breadcrumb li.breadcrumb-item a::after {
    content: '/';
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    position: absolute;
    right: 0;
}

ol.breadcrumb li.breadcrumb-item a.menu {
    color: var(--cc-red02);
}

ol.breadcrumb li.breadcrumb-item a.menu::after {
    content: '';
}

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

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

ol.breadcrumb li.breadcrumb-item.active {
    color: var(--cc-yellow);
    font-weight: bold;
}

ol.breadcrumb li.breadcrumb-item h1 {
    margin-bottom: 0;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item+.breadcrumb-item::after {
    display: none;
}

.movie-cine-ing h3.cinema-title {
    margin: 0;
    color: var(--cc-red01);
}

div.title-link {
    display: flex;
    align-items: start;
    justify-content: space-between;
    position: relative;
}

div.title-link h1 {
    color: var(--cc-yellow);
    position: relative;
    margin-bottom: 0;
}

div.title-link div.cine-data {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
}

div.title-link ul.cine-links-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 0;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    div.title-link {
        flex-direction: column;
    }
}

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

.poster-mv .poster {
    width: 100%;
    border-radius: 16px;
    background: linear-gradient(145deg, #e30613 0%, #009640 50%, #009fe3 100%);
}

.poster-mv .border-pst {
    padding: 2px;
    border-radius: 16px;
    background: linear-gradient(145deg, #e30613 0%, #009640 50%, #009fe3 100%);
}

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

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

/** PROGRAMAÇÃO ***/
.programacao h2 {
    color: var(--cc-yellow);
}

.programacao.club {
    margin-top: 32px;
}

.programacao.club h2 {
    color: var(--cc-red03);
}

.programacao.club .img-club {
    width: 100%;
}

.programacao.club .cats {
    margin-bottom: 32px;
}

.programacao.club .cats h3 {
    text-align: center;
    margin-bottom: 0;
}

.programacao.club .cats p {
    margin-bottom: 0;
}

.programacao.club .cats .cat-block {
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.programacao.club .cats .cat-bronze {
    border: 1px solid #CD7F32;
    color: #CD7F32;
}

.programacao.club .cats .cat-prata {
    border: 1px solid var(--cc-grey);
    color: var(--cc-grey);
}

.programacao.club .cats .cat-ouro {
    border: 1px solid var(--cc-yellow);
    color: var(--cc-yellow);
}

@media (max-width: 991px) {
    .programacao.club .cats {
        gap: 16px;
    }
}

.programacao .mapa {
    background: #000;
    border-radius: 16px;
    padding: 16px;
    width: fit-content;
    margin: 0 auto 24px;
    max-width: 100%;
}

.programacao .mapa img {
    max-width: 100%;
}

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

.content-programacao h3 {
    color: #D8076B;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 16px;
}

.content-programacao .filme {
    margin-bottom: 24px;
    padding-bottom: 24px;
    overflow: hidden;
    border-bottom: solid #363636 1px;
}

.content-programacao .filme .row-movie-data {
    width: 80%;
    float: right;
    padding: 0 0 16px 24px;
}

.content-programacao .filme .row-movie-data h2 {
    margin-bottom: 0;
}

.content-programacao .filme {
    margin-bottom: 24px;
    padding-bottom: 24px;
    overflow: hidden;
}

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

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

.content-programacao .filme .col-poster img.poster {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--cc-red03);
}

.content-programacao .filme .col-poster ul.infos {
    width: 100%;
    position: absolute;
    background: linear-gradient(180deg, #15151570 0%, #111111 100%);
    border: 1px solid var(--cc-red03);
    border-radius: 16px;
    top: 0;
    color: var(--cc-white);
    height: 100%;
    align-items: center;
    justify-content: end;
    padding: 0;
    display: flex;
    gap: 16px;
    z-index: -1;
    opacity: 0;
    padding-bottom: 16px;
    transition-duration: 0.5s;
    flex-direction: column;
}

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

.content-programacao .filme .col-poster ul.infos li {
    cursor: pointer;
    text-align: center;
    color: var(--cc-red03);
}

.content-programacao .filme .col-poster ul.infos li a {
    color: var(--cc-red03);
}

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

.content-programacao .filme .sinopse-ctrl {
    display: none;
}

.content-programacao .filme .col-cont-mv.in-movie {
    width: 100%;
    padding: 0;
    float: none;
}

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

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

.content-programacao .filme .sala-filme {
    display: flex;
    margin-top: 16px;
    justify-content: space-between;
    background-color: #262626;
    padding-inline: 5px;
    border-radius: 6px;
}

.content-programacao .filme .sala-filme .sala-data {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 20px;
    color: var(--cc-white);
}

.content-programacao .filme .sala-filme .sala-data .audio {
    color: var(--cc-yellow);
    width: 100px;
    text-align: center;
}

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

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

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

.content-programacao .filme .sala-filme .horbox {
    display: flex;
    gap: 16px;
    padding: 8px 0;
}

.content-programacao .filme .sala-filme .horbox .hor {
    padding: 8px 16px;
    color: var(--cc-white);
    background: var(--cc-orange);
    font-size: 20px;
    line-height: 24px;
    font-weight: bold;
    border-radius: 16px;
    position: relative;
    transition-duration: 0.2s;
}

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

.content-programacao .filme .sala-filme .horbox .hor::before {
    content: 'Comprar';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 42px;
    font-weight: bold;
    color: #ffffff00;
    transition-duration: 0.2s;
}

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

.content-programacao .filme .sala-filme .horbox .hor.disabled {
    opacity: 0.3;
    background: var(--cc-white);
    color: var(--cc-black01);
}

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

.content-programacao .filme .sala-filme .horbox .hor.disabled::before {
    content: 'indisp.';
}

.content-programacao .filme .sala-filme .horbox .hor.disabled:hover::before {
    color: var(--cc-black02);
}

.btnModalCinema {
    border: solid rgb(255, 209, 42) 2px;
    border-radius: 20px;
    margin-block: 10px;
    font-size: 1.3rem;
}

.btnModalCinema:hover {
    cursor: pointer;
    color: rgb(131, 131, 131);
}

#maps-content iframe {
    height: 600px;
}

@media (max-width: 991px) {

    #maps-content iframe {
        height: 600px;
        width: 350px;
    }

    .content-programacao .filme {
        display: flex;
        flex-wrap: wrap;
        border-bottom: 2px solid #EBEBEB30;
        overflow: initial;
        padding-bottom: 0;
    }

    .content-programacao .filme .row-movie-data {
        order: 1;
        width: 100%;
        float: none;
        margin-bottom: 24px;
        padding: 0;
    }

    .content-programacao .filme .col-poster {
        order: 2;
        float: none;
        width: 40%;
    }

    .content-programacao .filme .col-cont-mv {
        order: 4;
        padding: 4px;
        float: none;
        width: 100%;
    }

    .content-programacao .filme .sinopse-ctrl {
        display: block;
        color: var(--cc-white);
        background: url(../images/acc-up.png) no-repeat 96% center var(--cc-red01);
        border-radius: 24px;
        font-size: 14px;
        line-height: 18px;
        font-weight: bold;
        padding: 8px 16px;
        cursor: pointer;
        text-align: center;
        transition-duration: 0.2s;
        width: 100%;
        margin-bottom: 16px;
    }

    .content-programacao .filme .sinopse-ctrl.ativo {
        background: url(../images/acc-down.png) no-repeat 96% center var(--cc-red01);
    }

    .content-programacao .filme .sinopse-ctt {
        margin-bottom: 24px;
    }

    .content-programacao .filme .col-cont-mv h2 {
        font-size: 20px;
        line-height: 24px;
    }

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

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

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

    .content-programacao .filme .col-cont-mv .mob-fit-mv .mob-fit-mv-poster img.poster {
        width: 100%;
        border-radius: 8px;
    }

    .content-programacao .filme .sala-filme {
        flex-direction: column;
    }

    .content-programacao .filme .sala-filme .horbox {
        flex-wrap: wrap;
        gap: 8px;
    }

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

.data-filme {
    color: var(--cc-white);
    width: 80%;
    float: right;
    padding: 8px 0 8px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.data-filme .classind span {
    border-radius: 8px;
    color: var(--cc-white);
    width: 32px;
    height: 32px;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    font-weight: bold;
}

.data-filme .dfleg {
    font-size: 16px;
    line-height: 20px;
    border-radius: 8px;
    padding: 4px 16px;
    color: var(--cc-white);
    border: 1px solid var(--cc-white);
}

.data-filme .dfleg.genre {
    background: var(--cc-white);
    color: var(--cc-black02);
}

.data-filme .dfleg.distr {
    border: 1px solid var(--cc-black02);
    padding: 4px 0;
}

.data-filme .acess {
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {
    .data-filme {
        flex-wrap: wrap;
        align-items: start;
        height: fit-content;
        gap: 16px;
        order: 3;
        float: none;
        width: 60%;
        padding: 0 0 0 16px;
        margin-top: 0;
    }

    .data-filme h4 {
        display: contents;
        font-size: 12px;
        line-height: 24px;
    }

    .data-filme .classind span {
        font-size: 16px;
        width: 32px;
        height: 32px;
        line-height: 32px;
    }

    .data-filme .acess {
        flex-direction: column;
        align-items: start;
    }
}

div.info-cine-det h4 {
    font-size: 24px;
    line-height: 32px;
    color: var(--cc-orange);
}

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(--cc-white);
}

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(--cc-white);
    padding: 0 6px 2px 25px;
    font-weight: 500;
    background: url(../images/icone-cidade.png) no-repeat 5px center #ffffff10;
}

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

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

span.claL {
    background: #00A85A;
}

span.cla10 {
    background: #01AFF0;
}

span.cla12 {
    background: #FFCC29;
}

span.cla14 {
    background: #F58633;
}

span.cla16 {
    background: #EC3237;
}

span.cla18 {
    background: #000;
    border: 1px solid #fff;
}


/** 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;
    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;
    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: 40%;
    }

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

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

.owl-theme .owl-dots {
    margin: -74px auto 0;
    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(--cc-grey);
    border: 1px solid var(--cc-grey);
    border-radius: 50%;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--cc-red01);
}

@media (max-width: 991px) {

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

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

    transition-duration: 0.2s;
}

.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: 5px;
    }

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

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

.prod-promo .item p {
    color: var(--cc-white);
    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: 0;
    padding: 0 10px 16px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    z-index: 5;
    background: var(--cc-black02);
    max-width: 1320px;
    width: 100%;
}

@media (max-width: 991px) {
    .with-stuck.stuck {
        top: 0;
    }

    .dias-horarios {
        padding: 0;
    }
}

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

.tabs-dias-horarios .owl-item .item {
    text-align: center;
    color: var(--cc-white);
    padding: 16px;
    margin: 0 12px;
    cursor: pointer;
    border: 1px solid var(--cc-orange);
    border-radius: 24px;
    padding: 16px 32px;
    font-size: 32px;
    line-height: 40px;
    font-weight: bold;
}

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

.tabs-dias-horarios .owl-item .item.select {
    color: var(--cc-white);
    border: 1px solid var(--cc-orange);
    background: var(--cc-orange);
}

.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: 25px;
    left: -50px;
}

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

@media (max-width: 991px) {
    .tabs-dias-horarios {
        padding: 0 20px;
    }

    .tabs-dias-horarios .owl-item .item {
        padding: 8px;
        margin: 0 4px;
    }

    .tabs-dias-horarios .owl-item .item h4 {
        font-size: 12px;
    }

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

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

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

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

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

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

.promos-produtos li p {
    color: var(--cc-white);
    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.prod img {
    width: 100%;
}

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

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

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

.pp-side {
    margin-bottom: 24px;
    max-width: 300px;
}

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

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

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

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

@media (max-width: 991px) {
    .pp-side {
        display: none;
    }
}

img.img-promo-prod-full {
    width: 98%;
    margin: 0 1%;
    border-radius: 24px;
    margin-bottom: 24px;
    margin-top: -32px;
}

img.img-promo-prod {
    width: 100%;
    border-radius: 24px;
    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 #383838;
    background: var(--cc-black01);
    width: 100%;
    height: 40px;
    font-size: 1rem;
    padding: 8px;
    outline: none;
    margin-bottom: 10px;
    color: var(--cc-white);
    font-weight: 500;
    border-radius: 8px;
}

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

form.contato .custom-file .add-cv {
    background: #0090DF;
    color: var(--cc-white);
    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 #383838;
    background: none;
    border-radius: 8px;
    width: 100%;
    height: 150px;
    font-size: 1rem;
    padding: 8px;
    outline: none;
    margin-bottom: 10px;
    color: var(--cc-white);
    font-weight: 500;
}

form.contato input[type="submit"] {
    color: var(--cc-white);
    font-size: 14px;
    line-height: 18px;
    padding: 8px 50px;
    text-align: center;
    border-radius: 16px;
    cursor: pointer;
    border: 0;
    background: var(--cc-red01);
}

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

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

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

ul.bomboniere li {
    width: 48%;
    border: 2px solid var(--cc-red01);
    border-radius: 24px;
    text-align: center;
    align-items: center;
    margin: 1%;
}

@media (max-width: 991px) {
    ul.bomboniere {
        flex-direction: column;
    }

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

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

ul.bomboniere li h5 {
    color: var(--cc-red01);
    margin: 16px 0;
}

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


ul.cinemas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0;
}

ul.cinemas-list li {
    width: 24%;
    border-radius: 24px;
    text-align: center;
    position: relative;
    background: var(--cc-red02);
}

ul.cinemas-list li img {
    width: 100%;
    border-radius: 24px 24px 0 0;
}

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

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

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

ul.cinemas-list li h4 {
    color: var(--cc-white);
    margin: 0;
    margin: 4px 0 0;
}

ul.cinemas-list li p {
    color: var(--cc-white);
    font-size: 16px;
    line-height: 18px;
    margin: 0 0 4px;
}

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

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

    ul.cinemas-list li {
        width: 100%;
        margin-bottom: 24px;
    }
}

ul.not-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0;
}

ul.not-list li {
    width: 49%;
    position: relative;
    background: var(--cc-black01);
    border-radius: 16px;
}

ul.not-list li a {
    display: flex;
    align-items: center;
    gap: 24px;
}

ul.not-list li a img {
    width: 90px;
    border-radius: 16px 0 0 16px;
}

ul.not-list li a h3 {
    color: var(--cc-red03);
}

ul.not-list li a p {
    color: var(--cc-white);
    margin-bottom: 0;
    text-decoration: underline;
}

@media (max-width: 991px) {
    ul.not-list li {
        width: 100%;
    }
}

div.cine-acc h3 {
    color: var(--cc-white);
    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;
}

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

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

.accordion-flush .accordion-item:first-child,
.accordion-item:not(:first-of-type) {
    border-top: 1px solid #383838;
    background: none;
}

.accordion-flush .accordion-item:last-child {
    border-bottom: 1px solid #383838;
}

.accordion-flush .accordion-item {
    border-right: 1px solid #383838;
    border-left: 1px solid #383838;
    border-radius: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #383838;
}

.accordion-button,
.accordion-body {
    color: var(--cc-white);
    background: var(--cc-black01);
    border-radius: 16px !important;
}

.accordion-button::after {
    background-image: url(../images/acc-down.png);
    background-position: center;
    background-size: auto;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/acc-down.png);
    background-position: center;
    background-size: auto;
}

.accordion-flush>.accordion-item>.accordion-header .accordion-button,
.accordion-flush>.accordion-item>.accordion-header .accordion-button.collapsed {
    background: none;
    color: var(--cc-white);
}

.pp-728 {
    width: 100%;
    padding: 24px 0 40px;
    background: #1F2124;
    text-align: center;
}

.pp-728 p {
    font-size: 8px;
    text-transform: uppercase;
    margin-bottom: 0;
    color: var(--cc-white);
}

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

.pp-970 {
    width: 100%;
    padding: 24px 0 0;
    text-align: center;
}

.pp-970 p {
    font-size: 8px;
    text-transform: uppercase;
    margin-bottom: 0;
    color: var(--cc-white);
}

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

@media (max-width: 991px) {
    .pp-728 {
        padding: 0 0 16px;
    }

    .pp-970 {
        padding: 24px 16px 40px;
    }
}

.modal-content {
    background: var(--cc-black01);
}

.cc-modal {
    /* max-width: 1320px; */
    display: none;
    padding: 16px;
    border-radius: 16px;
    background: var(--cc-black01);
    color: var(--cc-white);
}

.cc-modal h2 {
    border-bottom: 1px solid #ffffff20;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.cc-modal ul.amenities {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc-modal ul.amenities a {
    color: var(--cc-yellow);
}

.cc-modal ul.amenities li {
    font-size: 18px;
    line-height: 24px;
}

.cc-modal ul.amenities li i {
    font-size: 20px;
    line-height: 26px;
    font-size: 24px;
    line-height: 28px;
    margin-right: 8px;
}

.cc-modal ul.cities {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc-modal ul.cities a {
    color: var(--cc-yellow);
}

.cc-modal ul.cities li {
    font-size: 18px;
    line-height: 24px;
    border: 1px solid var(--cc-yellow);
    text-align: center;
    border-radius: 32px;
    padding: 8px 24px;
}

.cc-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #151515;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    /*width: 90%;*/
    margin-top: 20px;
}

#city-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}


.cc-modal-register {
    max-width: 1320px;
    display: none;
    padding: 16px;
    border-radius: 16px;
    background: var(--cc-black01);
    color: var(--cc-white);
}

.cc-modal-register h2 {
    border-bottom: 1px solid #ffffff20;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.cc-modal-register ul.amenities {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc-modal-register ul.amenities a {
    color: var(--cc-yellow);
}

.cc-modal-register ul.amenities li {
    font-size: 18px;
    line-height: 24px;
}

.cc-modal-register ul.amenities li i {
    font-size: 20px;
    line-height: 26px;
    font-size: 24px;
    line-height: 28px;
    margin-right: 8px;
}

.cc-modal-register ul.cities {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc-modal-register ul.cities a {
    color: var(--cc-yellow);
}

.cc-modal-register ul.cities li {
    font-size: 18px;
    line-height: 24px;
    border: 1px solid var(--cc-yellow);
    text-align: center;
    border-radius: 32px;
    padding: 8px 24px;
}

/** FOOTER **/
footer {
    color: var(--cc-grey);
    padding: 24px 0;
    background: var(--cc-black01);
    border-top: 3px solid var(--cc-orange);
}

footer .contfoo {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 24px;
}

footer .contfoo .newsletter {
    border: 1px solid #EBEBEB10;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    width: 100%;
}

footer .contfoo .newsletter .btt-cad {
    background: var(--cc-red01);
    color: var(--cc-white);
    border-radius: 16px;
    height: 28px;
    opacity: 1;
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
    padding: 4px 16px;
    margin: 4px auto 0;
    cursor: pointer;
    text-align: center;
    transition-duration: 0.2s;
    display: table;
}

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

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

footer .contfoo ul li h3 {
    margin-bottom: 0;
    color: var(--cc-yellow);
}

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

footer .contfoo ul li {
    font-size: 16px;
    line-height: 20px;
    color: var(--cc-white);
    font-weight: 300;
}

footer .contfoo ul li a {
    color: var(--cc-white);
    padding: 8px 0;
}

footer .contfoo .copyright {
    padding: 16px 0;
    text-align: center;
}

footer .contfoo .copyright img.logo {
    height: 40px;
}

footer .contfoo .copyright p {
    margin-bottom: 0;
    margin-top: 8px;
    color: var(--cc-white);
}

footer .contfoo .copyright .img-gaia {
    height: 40px;
}

@media (max-width: 991px) {
    footer .contfoo {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    footer .contfoo ul.only-dsk {
        display: none;
    }
}

/** Fim do FOOTER **/

#cookie-message {
    z-index: 9999;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--cc-black01);
    color: var(--cc-white);
    text-align: center;
    padding: 20px 10px 10px;
}

#cookie-message a {
    font-weight: bold;
    color: var(--cc-white);
}

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

#cookie-message #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 (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%;
    }
}


.cinema-select-group,
.movie-select-group {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 20;
    background-color: #151515;
    padding: 4px 8px 2px 8px;
}

.cinema-select-group:hover,
.movie-select-group:hover {
    border-color: white;
}

.cinema-select-group.active,
.movie-select-group.active {
    border-color: white;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.cinema-select-group {
    z-index: 99;
}

.cinema-select-content,
.movie-select-content {
    flex: 1;
}

.cinema-select-content label,
.movie-select-content label {
    font-size: 12px;
    display: block;
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.custom-select-trigger .selected-value {
    font-size: 20px;
    color: inherit;
    max-width: 170px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-select-options {
    position: absolute;
    top: 100%;
    left: -1px;
    right: -1px;
    background: #151515;
    border: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    z-index: 10;
}

.cinema-select-group.active .custom-select-options,
.movie-select-group.active .custom-select-options {
    border: 1px solid white;
    border-top: none;
}

.custom-select-options.active {
    /* max-height: 500px; */
    max-height: 2500px;
    padding: 8px 0;
}

.custom-select-option {
    padding: 12px 15px;
    cursor: pointer;
    color: white;
    font-size: 16px;
    transition: background-color 0.2s ease;
    margin: 4px 8px;
    border-radius: 4px;
}

.custom-select-option:hover {
    background-color: #252525;
}

.custom-select-option.selected {
    background-color: #1f1f1f;
}

.custom-select-trigger .fa-chevron-down {
    margin-left: 8px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
    color: inherit;
}

.custom-select-trigger.active .fa-chevron-down {
    transform: rotate(180deg);
}

#tabela-precos img {
    border-radius: 24px;
    max-width: 100%;
}


.novidades {
    border-radius: 16px;
    border: 1px solid var(--cc-red03);
}
