:root {
    --font-family: "Archivo", serif;
    --ca-red: #D21D24;
    --ca-green: #00A650;
    --ca-blue: #00ADEF;
    --ca-black: #1d1d1d;
    --ca-white: #ffffff;
    --ca-grey: #EBEBEB;
    --ca-light-red: #e68787;
    --ca-gradient: linear-gradient(180deg,rgba(31, 33, 36, 1) 0%, rgba(84, 84, 84, 1) 95%, rgba(171, 171, 171, 1) 100%);
}

h1 {
    font-size: 26px;
    line-height: 40px;
    font-weight: 700;
}

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

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

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

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

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(--ca-red);
    color: var(--ca-white);
    border-radius: 8px;
    opacity: 1;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    padding: 8px 16px;
    cursor: pointer;
    text-align: center;
    transition-duration: 0.2s;
    display: table;
    text-wrap: nowrap;
}

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

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

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

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

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

body {
    font-family: var(--font-family);
    background: #1F2124;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
    grid-gap: 12px;
    color: var(--ca-white);
}

/** HEADER **/

header {
    z-index: 9;
    border-top: 8px solid;
    border: transparent;
    margin-top: 28px;
    margin-bottom: 2px;
}

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

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

@media (max-width: 991px) {
    body {
        grid-gap: 8px;
    }

    header {
        margin-top: 80px;
    }

    header .header-content {
        padding: 0;
    }

    header .header-content .logo {
        width: 133px;
        margin-top: 16px;
        margin-left: 48px;
    }

    .pp-side .item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

}

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

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

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

.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;
        flex-direction: column;
        gap: 8px;
    }

    .with-stuck {
        top: 80px !important;
    }
}

.header-top .header-top-content ul {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

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

.header-top .header-top-content ul li.modo-escuro {
    border-left: 1px solid var(--ca-white);
    padding-left: 8px;
}

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

form.form-city {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding-left: 8px;
    padding-right: 8px;    
}

form.form-city.mdl {
    justify-content: center;
}

.fa-location-dot {
    margin-right: 3%;
}

select.slc-choice {
    border: 0;
    color: #fff;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    width: fit-content;
}

select.slc-choice.mdl {
    padding: 8px 0;
    border-radius: 20px;
    border: 1px solid var(--ca-black);
}

optgroup {
    background: var(--ca-white);
    color: var(--ca-black);
}

#width_tmp_select {
    display: none;
}

@media (max-width: 991px) {
    form.form-city {
        width: 96%;
    }

    select.slc-choice {
        width: 100% !important;
    }

    #resizing_select {
        width: 320px;
    }
}

/** NAV **/

nav.main {
    padding: 0;
}

nav.main .navbar-nav {
    width: 100%;
    align-items: end;
    gap: 16px;
}

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(--ca-white);
    font-size: 20px;
    line-height: 24px;
    cursor: pointer;
    text-shadow: 0 1px 0 var(--ca-black);
}

.dropdown-toggle::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    margin: auto;
    width: 10px;
}

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

nav.main .navbar-nav .nav-item .nav-link.club {
    text-wrap: nowrap;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav.main .navbar-nav .nav-item .nav-link.club img {
    margin-bottom: 8px;
}

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(--ca-grey);
    border-top: 1px solid var(--ca-grey);
}

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

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

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

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

.navbar .nav-item .dropdown-menu {
    background: var(--ca-white);
}

.navbar-nav .dropdown-menu li .dropdown-item {
    background: var(--ca-white);
    color: var(--ca-black);
    font-size: 20px;
    line-height: 24px;
}

.navbar-nav .dropdown-menu li .dropdown-item:hover {
    color: var(--ca-red);
}

.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: 104px;
        left: 0;
        background: none !important;
        box-shadow: none;
        border: 0;
        z-index: 9;
    }

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

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

    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(--ca-grey);
    }

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

    nav.main .navbar-nav .nav-item .nav-link.club {
        flex-direction: row;
        gap: 8px
    }

    nav.main .navbar-nav .nav-item .nav-link.show {
        color: var(--ca-red);
    }

    nav.main .navbar-nav .nav-item .nav-link.club img {
        margin-bottom: 0;
    }

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

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

    .navbar .nav-item .dropdown-menu {
        background: var(--ca-black);
    }

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

    .dropdown-toggle::after {
        bottom: 20px;
        left: initial;
    }

    .navbar-nav .dropdown-menu li .dropdown-item {
        background: var(--ca-black);
        color: var(--ca-white);
        padding: 16px 0 16px 32px;
        font-size: 16px;
        line-height: 20px;
    }

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

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

/*fabiano*/
.todososdias {
    color: #fff;
    padding: 8px;
    border-radius: 5px;
    font-size: 18px;
}

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

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

    .proghoje {
        text-align: center;
        color: var(--ca-white);
        font-size: 20px !important;
        line-height: 21px !important;
        padding: 10px 0;
        border: 0;
        font-weight: 700;
        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: 700;
    }
}

.programacao {
    color: var(--ca-white);
}

form.proghd {
    color: var(--ca-white);
    padding: 0;
}

form.proghd .tgg-title {
    display: none;
    font-size: 16px;
    font-weight: 700;
    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: 700;
}

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(--ca-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(--ca-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(--ca-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(--ca-red);
        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%;
    }
}

/** CONTENT **/


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

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

.main-banner {
    margin: 0 auto;
}

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

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

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

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

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

@media (max-width: 991px) {
    .main-banner .owl-item .claind {
        top: 8px;
        right: 16px;
    }

    .main-banner .owl-item .claind span {
        color: var(--ca-white) !important;
        border-radius: 6px !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        margin: 0 !important;
        width: 20px !important;
        height: 20px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        border: 1px solid var(--ca-white);
    }

    .mob-fit-mv {

        margin-bottom: 10px;

    }
}

.main-banner .owl-item .claind span {
    color: var(--ca-white);
    padding: 6px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin: 0 4px;
    width: 32px;
    height: 32px;
    display: block;
    text-align: center;
}

.tematizacao {
    height: 280px;
}

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

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

.nav-tabs .nav-link {
    color: var(--ca-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: 90%;
    height: 4px;
    background: var(--ca-black);
    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(--ca-grey);
}

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

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

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

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

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

@media (max-width: 991px) {

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

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

.car-cartaz .item img,
.car-pre-estreia .item img,
.car-breve .item img,
.car-pre-venda .item img {
    border-radius: 16px;
    box-shadow: 0 0 12px #000;
    height: auto;
}

.car-cartaz .item ul.infos,
.car-pre-estreia .item ul.infos,
.car-breve .item ul.infos,
.car-pre-venda .item ul.infos {
    width: 100%;
    position: absolute;
    background: #00000090;
    border-radius: 8px;
    top: 0;
    color: var(--ca-white);
    height: 100%;
    align-items: start;
    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-pre-estreia .item:hover ul.infos,
.car-breve .item:hover ul.infos,
.car-pre-venda .item:hover ul.infos {
    z-index: 2;
    opacity: 1;
}

.car-cartaz .item ul.infos li,
.car-pre-estreia .item ul.infos li,
.car-breve .item ul.infos li,
.car-pre-venda .item ul.infos li {
    margin: 8px;
    cursor: pointer;
    padding-left: 12%;
}

.car-cartaz .item ul.infos a,
.car-pre-estreia .item ul.infos a,
.car-breve .item ul.infos a,
.car-pre-venda .item ul.infos a {
    color: var(--ca-white);
}

.car-cartaz .item div.data-movie,
.car-pre-estreia .item div.data-movie,
.car-breve .item div.data-movie,
.car-pre-venda .item div.data-movie {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

@media (max-width: 991px) {

    .car-cartaz .item div.data-movie,
    .car-pre-estreia .item div.data-movie,
    .car-breve .item div.data-movie,
    .car-pre-venda .item div.data-movie {
        padding: 0 0 8px;
    }

    .car-cartaz .item ul.infos,
    .car-pre-estreia .item ul.infos,
    .car-breve .item ul.infos,
    .car-pre-venda .item ul.infos {
        align-items: start;
    }
}

.car-cartaz .item h2,
.car-pre-estreia .item h2,
.car-breve .item h2,
.car-pre-venda .item h2 {
    color: var(--ca-white);
    margin: 8px 0 4px;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

@media (max-width: 991px) {

    .car-cartaz .item h2,
    .car-pre-estreia .item h2,
    .car-breve .item h2,
    .car-pre-venda .item h2 {
        font-size: 14px;
        line-height: 20px;
    }
}

.car-cartaz .item div.data-movie .claind,
.car-pre-estreia .item div.data-movie .claind,
.car-breve .item div.data-movie .claind,
.car-pre-venda .item div.data-movie .claind {
    color: var(--ca-white);
}

.car-cartaz .item div.data-movie .claind span,
.car-pre-estreia .item div.data-movie .claind span,
.car-breve .item div.data-movie .claind span,
.car-pre-venda .item div.data-movie .claind span {
    color: var(--ca-white);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    margin: 0 4px;
    display: block;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
}

.car-cartaz .item div.data-movie h5,
.car-pre-estreia .item div.data-movie h5,
.car-breve .item div.data-movie h5,
.car-pre-venda .item div.data-movie h5 {
    margin-bottom: 0;
}

.car-cartaz .item div.data-movie .mv-hrs,
.car-pre-estreia.item div.data-movie .mv-hrs,
.car-breve .item div.data-movie .mv-hrs,
.car-pre-venda .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-pre-estreia .item div.data-movie .mv-hrs li,
.car-breve .item div.data-movie .mv-hrs li,
.car-pre-venda .item div.data-movie .mv-hrs li {
    margin: 0 10px;
    color: var(--ca-white);
}

.car-cartaz .item div.data-movie .mv-hrs .hor,
.car-pre-estreia .item div.data-movie .mv-hrs .hor,
.car-breve .item div.data-movie .mv-hrs .hor,
.car-pre-venda .item div.data-movie .mv-hrs .hor {
    padding: 8px 16px;
    color: var(--ca-white);
    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-pre-estreia .item div.data-movie .mv-hrs .hor::before,
.car-breve .item div.data-movie .mv-hrs .hor::before,
.car-pre-venda .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-pre-estreia .item div.data-movie .mv-hrs .hor:hover,
.car-breve .item div.data-movie .mv-hrs .hor:hover,
.car-pre-venda .item div.data-movie .mv-hrs .hor:hover {
    color: #ffffff00;
}

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

.tag {
    color: var(--ca-white);
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 3;
    text-align: center;
}

.tag-carousel {
    color: var(--ca-white);
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    position: absolute;
    top: 16px;
    right: 80px;
    z-index: 3;
    text-align: center;
}

.tag.estreia {
    background: var(--ca-red);
}

.tag-carousel.estreia {
    background: var(--ca-red);
}

.tag.pre-estreia {
    background: var(--ca-blue);
}

.tag-carousel.pre-estreia {
    background: var(--ca-blue);
}

.tag.pre-venda {
    background: var(--ca-blue);
}

.tag-carousel.pre-venda {
    background: var(--ca-blue);
}

.tag.prox {
    background: var(--ca-green);
}

.tag-carousel.prox {
    background: var(--ca-green);
}

.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(--ca-black);
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .pp-home {
        padding: 4px 0;
    }
    .pp-home.pp-promo {
    background: var(--ca-black);
    margin-bottom: 4px;
}

}

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

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

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

ol.breadcrumb li.breadcrumb-item a {
    color: var(--ca-white);
}

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(--ca-red);
    font-weight: bold;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--ca-white);
}

.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(--ca-white);
    position: relative;
    margin-bottom: 32px;
    font-size: 28px;
}

.movie-block {
    display: flex;
}

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

.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-side {
    width: 80%;
}

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

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

.movie-name {
    padding: 0;
}

.movie-name h1 {
    margin: 0;
}

.movie-name h4 {
    margin: 0;
}

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

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

    .movie-side {
        width: 70%;
        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;
    }
}

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

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

.prog-completa {
    color: var(--ca-white);
    background: var(--ca-red);
    cursor: pointer;
    border-radius: 8px;
    padding: 8px 16px 2px;
}

.valor-ingresso,
.yt-btn {
    color: var(--ca-black);
    background: var(--ca-white);
    cursor: pointer;
    border-radius: 8px;
    padding: 8px 16px;
    text-wrap: nowrap;
}

.valor-ingresso h3,
.yt-btn h3 {
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
}

.valor-ingresso p,
.yt-btn p {
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
}

.valor-ingresso h3 i,
.yt-btn h3 i {
    margin-right: 8px;
}

.ver-dias {
    display: none;
}

@media (max-width: 991px) {

    .owl-theme .owl-dots,
    .owl-carousel .owl-dots.disabled,
    .owl-carousel .owl-nav.disabled {
        display: none;
    }
    
    /* Exception for promo-home carousel - show dots on mobile */
    .promo-home.owl-carousel .owl-dots {
        display: block !important;
    }
    
    /* Exception for salas-especiais-home carousel - show dots on mobile */
    .salas-especiais-home.owl-carousel .owl-dots {
        display: block !important;
        margin: -12px auto 0 !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    /* Make dots smaller on mobile for all visible carousels */
    .owl-carousel .owl-dots .owl-dot span {
        width: 10px !important;
        height: 10px !important;
        margin: 4px !important;
    }
}

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

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

div.title-link>div {
    display: flex;
    align-items: center;
    gap: 16px;
}

div.title-link h1.page-title {
    margin-bottom: 0;
    max-width: 600px;
    font-size: 22px;
}

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

@media (max-width: 1250px) {
    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.page-title {
        margin-bottom: 16px;
    }

    div.title-link div {
        display: block;
        margin-bottom: 16px;
    }

    div.title-link div .valor-ingresso {
        float: left;
        margin-right: 4px;
        margin-bottom: 4px;
    }
}

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

.complexo-laser {
    color: var(--ca-red);
    border-radius: 32px;
    font-weight: 700;
    align-self: center;
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    right: 0;
    top: 0;
}

.complexo-laser img {
    height: 44px;
}

.complexo-laser p {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 12px;
}

@media (max-width: 991px) {
    .complexo-laser {
        display: flex !important;
        position: inherit;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
}


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

.sinopse.snp2 {
    display: none;
}

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

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

.sinopse .movie-people {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 32px;
}

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

.tgg-sinopse {
    display: none;
    font-size: 16px;
    font-weight: 700;
    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;
        margin-top: 10px;
    }
}

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: #D8076B;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 16px;
}

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

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

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

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

.content-programacao .filme .col-cont-mv h2 {
    margin-bottom: 0;
}

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

    .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: 55%;
    }

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

.content-programacao .filme .col-poster img.poster {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px #000;
}

.content-programacao .filme .col-poster ul.infos {
    width: 100%;
    position: absolute;
    background: #00000090;
    border-radius: 8px;
    top: 0;
    color: var(--ca-white);
    height: 100%;
    align-content: center;
    justify-content: center;
    padding: 0;
    display: grid;
    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 ul.infos li {
    margin: 8px;
    cursor: pointer;
    font-size: 16px;
}

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

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

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

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: 700;
    margin-bottom: 0;
    color: var(--ca-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(--ca-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;
    }
}

.data-filme {
    color: var(--ca-white);
    width: 100%;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    justify-content: space-between;
    margin-bottom: 12px;
}


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

@media (max-width: 991px) {
    .data-filme .classind span {
        font-size: 16px;
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
}

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

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

@media (max-width: 991px) {
    .data-filme {
        flex-direction: column;
        padding: 0;
        margin-top: 0;
        align-content: space-between;
        align-items: initial;
        justify-content: center;
    }

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

span.claL {
    background: #00A85A;
}

span.cla10 {
    background: #01AFF0;
}

span.cla12 {
    background: #FFCC29;
}

span.cla14 {
    background: #F58633;
}

span.cla16 {
    background: #EC3237;
}

span.cla18 {
    background: #000;
}

.content-programacao .filme .sala-filme {
    display: flex;
    flex-direction: column;
    background-color: transparent !important;
}

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

.content-programacao .filme .sala-filme .sala-data {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 20px;
}

.content-programacao .filme .sala-filme .sala-data .sala {
    color: var(--ca-red);
    font-weight: bold;
}

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

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

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

.content-programacao .filme .sala-filme .spcbox h4 {
    margin-bottom: 0;
    text-transform: uppercase;
    color: var(--ca-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(--ca-black);
    background: var(--ca-white);
    border: 1px solid var(--ca-white);
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    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;
    font-size: 18px;
    line-height: 42px;
    font-weight: 700;
    color: #ffffff00;
    transition-duration: 0.2s;
}

.content-programacao .filme .sala-filme .horbox .sessao-indisponivel {
    position: relative;
    background-color: #979CA4;
    border: 1px solid #979CA4;
    cursor: default;
}

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

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

.content-programacao .filme .sala-filme .horbox .sessao-indisponivel:hover {
    background-color: #868b93;
    border: 1px solid #979CA4;
}

.content-programacao .filme .sala-filme .horbox .sessao-indisponivel:hover::before {
    color: #ffffff;
}

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

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

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

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

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

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


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

/* Special rule for salas-especiais-home carousel to position dots below */
.salas-especiais-home.owl-carousel .owl-dots {
    margin: -12px auto 0 !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Special rule for promo-home carousel to position dots below */
.promo-home.owl-carousel .owl-dots {
    margin: -12px auto -12px !important;
    position: relative !important;
    z-index: 1 !important;
    margin: 0px;
    margin-top: 8px;
}

.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(--ca-grey);
    border: 1px solid var(--ca-grey);
    border-radius: 50%;
}

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

@media (max-width: 991px) {

    .owl-theme .owl-dots,
    .owl-carousel .owl-dots.disabled,
    .owl-carousel .owl-nav.disabled {
        display: none;
    }
    
    /* Exception for promo-home carousel - show dots on mobile */
    .promo-home.owl-carousel .owl-dots {
        display: block !important;
    }
    
    /* Exception for salas-especiais-home carousel - show dots on mobile */
    .salas-especiais-home.owl-carousel .owl-dots {
        display: block !important;
        margin: -18px auto 0 !important;
        position: relative !important;
        z-index: 1 !important;
        margin: 0px;
    }
}

.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(--ca-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: 30px;
    padding: 0 10px 16px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    z-index: 5;
    background: #1F2124;
    max-width: 1320px;
    width: 100%;
}

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

    .dias-horarios {
        padding: 0;
    }

    .sala-separador-programing {
        margin-top: 10px !important;
    }

    .text-lg-start {
        text-align: start !important;
    }
}

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

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

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

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

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

.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: 38px;
    left: -15px;
}

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

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

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

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


}


.promos-produtos li p {
    color: var(--ca-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 img {
    border-radius: 16px;
    width: 100%;
}



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

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

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

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(--ca-white);
    width: 100%;
    height: 40px;
    font-size: 1rem;
    padding: 8px;
    outline: none;
    margin-bottom: 10px;
    color: var(--ca-black);
    font-weight: 500;
    border-radius: 8px;
}

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

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

form.contato textarea {
    display: block;
    border: 1px solid #383838;
    border-radius: 8px;
    width: 100%;
    height: 150px;
    font-size: 1rem;
    padding: 8px;
    outline: none;
    margin-bottom: 10px;
    color: var(--ca-black);
    background: var(--ca-white);
    font-weight: 500;
}

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

.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: 48%;
    border: 2px solid var(--ca-red);
    border-radius: 24px;
    text-align: center;
    align-items: center;
    margin: 1%;
}

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

    ul.bomboniere li {
        width: 100%;
        margin: 0 auto 16px auto;
    }
}

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

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

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


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

ul.cinemas-list li {
    width: 48%;
    box-shadow: 0px 0px 6px #00000029;
    border-radius: 8px;
    margin: 0 1% 15px;
    text-align: center;
    position: relative;
    background-color: #282A2E;
    padding: 20px;
    cursor: pointer;
}

ul.cinemas-list li:hover {
    transform: scale(1.04);
    transition: transform 0.1s ease-in-out;
}


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

ul.cinemas-list li .tag-carousel {
    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(--ca-white);
    font-size: 20px;
    line-height: 27px;
    margin: 0;
    padding: 8px 0;
    border-radius: 8px;
    text-shadow: 0px 3px 6px #00000080;
}

ul.cinemas-list li p {
    color: var(--ca-white);
    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(--ca-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;
}

img.clube {
    width: 100%;
}

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

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

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

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

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

.accordion-button,
.accordion-body {
    background: var(--ca-white);
    color: var(--ca-black);
}

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

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

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

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

.pp-970 img {
    /* max-width: 728px; Publicidade  http://www.flixmedia.com.br */
    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 {
    position: relative;
    background-image: linear-gradient(145deg, #e30613 0%, #009640 50%, #009fe3 100%);
    border: none;
    border-radius: 8px;
    margin-top: 50px;
}

.modal-content::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--ca-black);
    border-radius: 12px;
    z-index: 0;
}

.modal-header,
.modal-body {
    position: relative;
    z-index: 1;
    background: transparent;
    border: none;
}

.modal-title,
.accordion-button,
.cidadeAccordionModalBtn,
.accordionHeaderText {
    color: white;
}

.accordion-button {
    background-color: rgba(255, 255, 255, 0.1);
}

.accordion-button:hover,
.cidadeAccordionModalBtn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.accordion-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-body {
    background: rgba(0, 0, 0, 0.5);
}

.modal-header h3 {
    color: #E7E7E7 !important;
    font-weight: 400 !important;
    font-size: 24px !important;
}

/** FOOTER **/

footer {
    color: var(--ca-grey);
    padding: 24px 0 0;
    background: var(--ca-black);
    margin-top: -32px;
}

footer .contfoo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
}

@media (min-width: 992px) {
    footer .contfoo {
        gap: 10px; /* Add 10px spacing between items on desktop only */
    }
}

@media (min-width: 992px) {
    .col-lg-custom {
        flex: 0 0 auto;
        width: 11.66666667%;
    }
    .col-lg-custom-newsletter {
        flex: 0 0 auto;
        width: 22%;
    }
}

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

footer .contfoo .newsletter p {
    color: var(--ca-grey);
}

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

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 .contfoo ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 16px; /* Keep gap for desktop */
    justify-content: center;
}

footer .contfoo ul li h3 {
    margin-bottom: 0;
    border-bottom: 1px solid var(--ca-white);
    padding-bottom: 16px;
}

footer .contfoo ul li p {
    margin-bottom: 0;
    border-bottom: 1px solid var(--ca-white);
    padding-bottom: 16px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
}


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

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

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

/* Footer Accordion Styling */
footer .accordion-item {
    background-color: transparent;
    border: none;
    margin-bottom: 8px;
}

footer .accordion-header .accordion-button {
    background-color: #36383A; /* Dark gray, matching existing dark elements */
    color: var(--ca-white);
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    padding: 16px;
    border-radius: 8px;
    text-align: left;
    transition: background-color 0.2s ease-in-out;
}

footer .accordion-header .accordion-button:not(.collapsed) {
    background-color: var(--ca-red); /* Red when expanded */
    color: var(--ca-white);
    box-shadow: none;
}

footer .accordion-header .accordion-button.collapsed {
    background-color: #36383A;
    color: var(--ca-white);
}

footer .accordion-header .accordion-button:hover {
    background-color: #4a4d50; /* Slightly lighter dark gray on hover */
}

footer .accordion-header .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(0deg);
}

footer .accordion-header .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

footer .accordion-collapse {
    border: none;
}

footer .accordion-body {
    background-color: #1F2124; /* Dark background for body */
    color: var(--ca-white);
    padding: 16px;
    border-radius: 0 0 8px 8px;
}

footer .accordion-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .accordion-body ul li {
    margin-bottom: 8px;
}

footer .accordion-body ul li:last-child {
    margin-bottom: 0;
}

footer .accordion-body ul li a {
    color: var(--ca-white);
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
}

footer .accordion-body ul li a:hover {
    color: var(--ca-red);
}

/* New styling for accordion body links on mobile */
@media (max-width: 991px) {
    footer .accordion-body ul li a {
        background: var(--ca-red);
        color: var(--ca-white);
        border-radius: 8px;
        padding: 8px 16px;
        font-size: 14px;
        line-height: 18px;
        font-weight: 700;
        display: block;
        text-align: center;
        margin-bottom: 8px; /* Spacing between buttons */
        text-decoration: none; /* Remove underline */
        transition: opacity 0.2s;
    }

    footer .accordion-body ul li a:hover {
        opacity: 0.7;
        color: var(--ca-white); /* Keep text white on hover */
    }
}

/* Responsive visibility classes */
.d-lg-none {
    display: none;
}

@media (max-width: 991px) {
    .d-lg-none {
        display: block;
    }
    .d-none.d-lg-block {
        display: none;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }
    .d-none.d-lg-block {
        display: flex !important;
    }
}

footer .contfoo ol {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 24px 16px 0 16px;
    /* margin: 24px 15% 0; */
    border-top: 1px solid var(--ca-white);
}

footer .contfoo ol li span {
    color: var(--ca-red);
    font-size: 20px;
}

footer .contfoo ol li a {
    color: var(--ca-white);
}

footer .copyright {
    margin-top: 24px;
    padding: 16px 0;
    background: #C02825;
}

footer .copyright h5 {
    margin-bottom: 0;
    color: var(--ca-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;
}

.img-gaia {
    height: 40px;
}

@media (max-width: 991px) {
    footer .copyright {
        margin-top: 0;
    }

    footer form.row {
        display: none;
    }

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

    footer .contfoo {
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin-bottom: 32px;
    }

    footer .contfoo ul {
        gap: 0; /* Remove gap for mobile */
    }

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

    footer .contfoo .newsletter {
        width: 100%;
    }

    footer .contfoo ul {
        width: 100%;
    }

    footer ul {
        display: none;
    }

    footer ul li {
        width: 100%;
        margin-bottom: 16px;
    }
    
    /* No padding for salas-especiais and servicos pages on mobile */
    .no-padding-mobile {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .no-padding-mobile.col {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .no-padding-mobile h1.page-title {
        margin-bottom: 0 !important;
    }
}


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

.tooltip-new {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip-new .tooltiptext {
    visibility: hidden;
    width: 600px;
    top: 0;
    left: 110%;
    background-color: var(--ca-grey);
    color: var(--ca-black);
    text-align: center;
    padding: 5px;
    text-wrap: wrap;
    white-space: normal;
    word-wrap: break-word;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.tooltip-new .tooltiptext::after {
    content: "";
    position: absolute;
    top: 10px;
    left: -10px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent var(--ca-grey) transparent transparent;
}

@media (max-width: 768px) {
    .tooltip-new .tooltiptext {
        width: 200px;
        left: 50%;
        transform: translateX(-50%);
        bottom: 125%;
        top: auto;
    }

    .tooltip-new .tooltiptext::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: 2px;
        border-width: 5px;
        border-style: solid;
        border-color: var(--ca-grey) transparent transparent transparent;
    }

    .tooltiptextArara {
        height: 30px;
        left: -60px !important;

    }

    .tooltiptextArara::after {
        height: 5px !important;
        margin-left: 4px !important;
    }
}

.tooltiptextArara {
    width: 100px !important;
}

.tooltip-new .tooltiptext.welc {
    visibility: visible;
    left: initial;
    right: 86%;
    top: 3px;
    font-size: 14px;
    transition-duration: 0.2s;
}

.tooltip-new .tooltiptext.welc::after {
    background-color: var(--ca-grey);
    content: "\00a0";
    display: block;
    height: 20px;
    left: 80%;
    position: relative;
    top: 7px;
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 20px;
    z-index: -2;
    position: absolute;
}

.tooltip-new:hover .tooltiptext {
    visibility: visible;
}

#cookie-message {
    z-index: 9999;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--ca-black);
    color: var(--ca-white);
    text-align: center;
    padding: 20px 10px 10px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    overflow: hidden;
}

#cookie-message::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(145deg, #e30613 0%, #009640 50%, #009fe3 100%);
    transform: translateY(-27px);
}

#cookie-message a {
    font-weight: 700;
    color: var(--ca-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;
}

.truncate-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    /* altura fixa */
    margin: 8px 0 4px;
}

.truncate-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2em;
    max-height: 2.4em;
    word-wrap: break-word;
    white-space: normal;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}


.truncate-wrapper-h5 {
    display: flex;
    align-items: center;
    height: 2.4em;
    overflow: hidden;
    box-sizing: border-box;
}

.truncate-text-h5 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2em;
    max-height: 2.4em;
    word-wrap: break-word;
    white-space: normal;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0;
}

.cidadeAccordionModalBtn {
    border: 1px solid var(--ca-red);
    border-radius: 5px;
    text-decoration: none;
    color: var(--ca-red);
    font-weight: 700;
    box-shadow: inset 1px 1px 1px 1px #240000b0;
}


.cidadeAccordionModalBtn:hover {
    border: 1px solid rgb(133, 2, 13);
    border-radius: 5px;
    text-decoration: none;
    color: rgb(133, 2, 13);
    ;
}

#accordionCidades .colapseItemCidadesModal .accordion-body,
.cidadeHeaderAccordion {
    color: var(--ca-white);
    background-color: var(--ca-black) !important;
}

.cidadeHeaderAccordion:not(.collapsed) {
    color: var(--ca-red);
}

.modal-header h5 {
    font-size: 25px !important;
}

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

.modal-body {
    padding-top: 0px;
}

.sala-separador {
    height: 2px;
    background-color: #313439;
    margin-left: 8px;
    margin-right: 8px;
    width: calc(100% - 16px);
    border-radius: 30px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.sala-separador-programing {
    height: 2px;
    background-color: #313439;
    margin-left: 8px;
    margin-right: 8px;
    width: calc(100% - 16px);
    border-radius: 30px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.film-separador-programing {
    height: 2px;
    background-color: #313439;
    margin-left: 8px;
    margin-right: 8px;
    width: calc(100% - 16px);
    border-radius: 30px;
    margin-top: 22px;
    margin-bottom: 22px;
}

.movie-name h1 {
    font-size: 28px;
}

.page-title {
    font-size: 28px;
    margin-bottom: 6px;
}

@media (max-width: 768px) {

    .movie-name h1,
    h1.page-title {
        font-size: 22px;
    }

    .page-title {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .sinopse .movie-people h3 {
        font-size: 16px;
    }

    .sinopse p {
        font-size: 14px;
    }

    .modal-header p {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {

    .movie-name h1,
    h1.page-title,
    .page-title {
        font-size: 18px;
    }

    .sinopse .movie-people h3 {
        font-size: 16px;
    }

    .sinopse p {
        font-size: 14px;
    }
}

.desc-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.duracao-home {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 14px;
}


.footer-h5 {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
}

.prog-completa-h4 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: .5rem;
    color: #ffffff;
}

.exclusivo {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
}

.modal-trailer {
    font-size: 25px;
}

.modal-header p {
    color: #E7E7E7 !important;
    font-weight: 400 !important;
    font-size: 22px !important;
}

@media (max-width: 768px) {
    .modal-header p {
        font-size: 16px !important;
    }
    .exclusivo {
    font-size: 20px;
}
}

.estado-nome {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
}

.main-banner .owl-item .claind span.white-border {
    border: 1px solid white;
}


.btn-close {
    height: auto !important;
    width: auto !important;
}


#ad-floating img {
    right: -5px !important;
}

.accordion-festa .accordion-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    border: none;
}

.accordion-festa .accordion-header .accordion-button {
    background-color: #36383A;
    color: white;
    border-radius: 5px;
    padding: 15px 20px;
    font-weight: 500;
}

.accordion-festa .accordion-button.collapsed {
    background-color: #36383A;
    color: white;
}

.accordion-festa .accordion-button:not(.collapsed) {
    background-color: #36383A;
    color: white;
    box-shadow: none;
}

.accordion-festa .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-festa .accordion-body {
    background-color: #1F2124;
    color: white;
    padding: 20px;
    border-radius: 0 0 5px 5px;
}

.accordion-festa .accordion-collapse {
    border: 0;
}

.btn-festa {
    display: inline-block;
    background-color: #D21D24;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    font-weight: 500;
    text-align: center;
    margin-top: 30px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-festa:hover {
    background-color: #b01a20;
    color: white;
    text-decoration: none;
}

.accordion-flush .accordion-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    border: none;
}

.accordion-flush .accordion-header .accordion-button,
#accordionPromoInfo .accordion-header .accordion-button {
    background-color: #36383A;
    color: white;
    border-radius: 5px;
    padding: 15px 20px;
    font-weight: 500;
}

.accordion-flush .accordion-button.collapsed,
#accordionPromoInfo .accordion-button.collapsed {
    background-color: #36383A;
    color: white;
}

.accordion-flush .accordion-button:not(.collapsed),
#accordionPromoInfo .accordion-button:not(.collapsed) {
    background-color: #36383A;
    color: white;
    box-shadow: none;
}

.accordion-flush .accordion-button::after,
#accordionPromoInfo .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-flush .accordion-body,
#accordionPromoInfo .accordion-body {
    background-color: #1F2124;
    color: white;
    padding: 20px;
    border-radius: 0 0 5px 5px;
}

.accordion-flush .accordion-collapse,
#accordionPromoInfo .accordion-collapse {
    border: 0;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

#accordionPromoInfo .accordion-header {
    margin-bottom: 0;
}

#accordionPromoInfo .accordion-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    border: none;
}

.social-container {
    display: flex;
    align-items: center;
    text-align: center;
    font-weight: 600;
    color: whitesmoke;
    height: 100px;
    padding: 0 10px;
}

.social-link {
    flex: 1;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: whitesmoke;
    padding: 0 8px;
}

.spacer {
    width: 10px;
    height: 55px;
    background-color: transparent;
}

.icon {
    display: inline-flex;
    align-self: center;
    color: whitesmoke;
}

.instagram-bg {
    background-color: #C02825;
}

.whatsapp-bg {
    background-color: rgb(0, 148, 71);
}

.facebook-bg {
    background-color: rgb(0, 147, 206);
}

@media screen and (max-width: 768px) {
    .social-link {
        width: calc(33.33% - 6.67px);
        font-size: 10px;
        gap: 4px;
        padding: 0 5px;
    }

    .social-link i {
        font-size: 13px;
    }

    .spacer {
        width: 10px;
    }
}

.estado-card,
.cinema-card {
    cursor: pointer;
    transition: all 0.2s;
    background-color: #2B2B2B;
    color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
    padding: 10px 20px 20px 20px;
}

.estado-card:hover,
.cinema-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

#estado-atual-nome {
    font-weight: 600;
}

@media (max-width: 767.98px) {
    #estado-atual-nome {
        font-size: 13px;
        margin-bottom: 0;
    }
}

.voltar-btn {
    margin-left: 8px;
    color: #E7E7E7;
}

.estado-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.g-1-desktop {
    --bs-gutter-x: 0.25rem;
    --bs-gutter-y: 0.25rem;
}

#btn-cinema-proximo {
    font-size: 0.9rem;
    background: linear-gradient(to right, #E11C24, #00A650, #02A5E3);
    color: white;
    border: none;
    white-space: nowrap;
    padding: 8px 16px;
    max-width: 250px;
    margin: 0 auto;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#btn-cinema-proximo:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .g-1-desktop {
        --bs-gutter-x: 0.25rem;
        --bs-gutter-y: 0.25rem;
        margin-top: calc(-1 * var(--bs-gutter-y));
        margin-right: calc(-.5 * var(--bs-gutter-x));
        margin-left: calc(-.5 * var(--bs-gutter-x));
    }

    .g-1-desktop>* {
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-top: var(--bs-gutter-y);
    }

    .cinema-info {
        display: flex;
        flex-direction: column;
    }

    .cidade-nome {
        text-align: left;
        font-size: 0.9rem;
        opacity: 0.75;
        margin-bottom: 6px;
    }

    .cinema-nome {
        text-align: center;
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .sala-separador {
        margin-top: 8px;
        margin-bottom: 0px;
    }

    .estado-card,
    .cinema-card {
        padding: 8px 12px !important;
    }

    .modal-header h3 {
        font-size: 18px !important;
    }

    .estado-info {
        width: calc(100% - 8px);
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-right: 8px;
    }

    .cinema-count {
        font-size: 0.85rem;
        text-align: right;
    }

    .estado-nome {
        text-align: right !important;
        width: auto;
        font-size: 13px !important;
    }

    .cinema-info {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cidade-nome {
        font-size: 0.7rem;
        opacity: 0.75;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 35%;
    }

    .cinema-nome {
        font-size: 0.85rem !important;
        text-align: right;
        margin-left: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 65%;
    }

    .modal-content {
        margin-top: 30px;
    }

    .col-12.col-md-6.p-2 {
        padding: 0.125rem !important;
    }

    #btn-cinema-proximo {
        font-size: 0.8rem;
        padding: 5px 15px;
    }
}

#loadingOverlay .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
}

.form-city {
    position: relative;
    display: flex;
    align-items: center;
}

#cityTrigger {
    display: inline-block;
    cursor: pointer;
    color: #fff;
    padding: 5px 10px 5px 5px;
    background-color: transparent;
    border: none;
    font-weight: 600;
    font-size: 1.15em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
    width: auto;
}

@media (max-width: 768px) {
    #cityTrigger {
        max-width: 90vw;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 1.1em;
    }
}

.form-city:after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.form-city i.fa-location-dot {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    position: relative;
    top: -2px;
}

.form-city:after,
.header-top-content ul i {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    position: relative;
}

@-moz-document url-prefix() {
    .with-stuck .dias-horarios.container .owl-carousel.tabs-dias-horarios {
        display: flex !important;
        width: 100% !important;
        justify-content: flex-start !important;
    }

    .with-stuck .dias-horarios.container .owl-stage-outer {
        width: 100% !important;
    }

    .with-stuck .dias-horarios.container .owl-stage {
        display: flex !important;
        width: auto !important;
        transform: none !important;
        justify-content: flex-start !important;
    }

    .with-stuck .dias-horarios.container .owl-item {
        flex: 0 0 auto !important;
        width: auto !important;
        float: none !important;
        display: flex !important;
        justify-content: flex-start !important;
    }

    .with-stuck .dias-horarios.container .abaSelect.item {
        width: 150px !important;
        min-width: 150px !important;
        max-width: 150px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin-right: 10px !important;
    }
}

.banner-destaque {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-destaque img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {

    .with-stuck {
        top: 79px !important;
    }
}

.with-stuck {
    position: sticky;
    z-index: 10;
    background-color: #1f2124;
    top: 40px;
}


/* Mobile Adjustments */

.owl-carousel .owl-stage-outer {
    padding: 8px 0px 8px 0px !important;
}

@media (max-width: 991px) {
    .tabs-dias-horarios .owl-item .item {
        padding: 3px;
        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: -15px;
        top: 11px;
        padding: 25px;
        padding-left: 0px;
    }


    .tabs-dias-horarios .owl-nav .owl-next,
    .tabs-dias-horarios .owl-nav .owl-next:hover {
        right: -15px;
        top: 11px;
        padding: 25px;
        padding-right: 0px;
    }

    .tabs-dias-horarios {
        margin: 8px 0;
    }
    .content-programacao {
        margin-top: 0px;
    }
    .filme{
        margin-bottom: 8px;
    }

    .owl-carousel .owl-stage-outer {
        padding: 4px 0px 8px 0px !important;
    }

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

    div.title-link h1.page-title {
        display: none;
    }

    .tabs-dias-horarios .owl-item .item h4 {
        font-size: 10px;
    }
    
    .tabs-dias-horarios .owl-item .item h1 {
        font-size: 18px;
        line-height: 18px;
        font-weight: 700;
    }

    .tabs-dias-horarios .owl-item .item {
    padding: 3px;
    margin: 0 2px;
    }

    .owl-theme .owl-nav {
        margin-top: 0px !important;
    }

    .content-programacao .filme .col-cont-mv .mob-fit-mv {
        margin-top: 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-data {
        width: 60%;
    }

    .data-filme {
        gap: 14px;
    }
    .with-stuck {
        top: 63px !important;
    }

    .header-top .header-top-content {
        gap: 0px;
    }
        header {
        margin-top: 70px;
    }

    .mob-fit-mv {
        margin-bottom: 4px;
    }

    nav.main {
        top: 88px;
    }

    header .header-content .logo {
        margin-top: 0px;
    }
    ol.breadcrumb { 
        margin-top: 0px;
        margin-bottom: 8px;
    }

    div.title-link div .valor-ingresso { 
        margin-bottom: 0px;
    }

    .valor-ingresso h3, .yt-btn h3{
        font-size: 12px;
        line-height: 12px;
    }

    .ca-btn {
        font-size: 12px;
        width: min-content;
    }

    .content-programacao .filme .sala-filme .horbox {
      padding: 0px;
      gap: 12px;
    }

    .content-programacao .filme .sala-filme .horbox .hor{
        margin: 2px;
        font-size: 16px;
        padding: 8px 12px;
    }

    .content-programacao .filme .sala-filme .sala-data {
        gap: 2px;
        font-size: 16px;
    }

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

    .audio {
        margin-right: 8px;
    }
    nav.main .navbar-nav {
        z-index: 3;
        top: 50px;
        left: 10px;
        background: #1F2124;
        width: 220px;
        position: absolute;
        padding-right: 12px;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }
    .with-stuck {
        z-index: 1;
    }

    .complexo-laser img { 
        margin-top: 4px;
        height: 28px;
    }

    .tooltip-new .tooltiptext { 
        width: 200px;
    }
    
}

@media (max-width: 768px) {
    .tag-carousel {
        right: 50%;
        transform: translateX(50%);
        top: auto;
        bottom: -8px;
        font-size: 11px;
        padding: 0px 4px;
        font-weight: 600;
    }
}

.filme {
    margin-bottom: 8px;
}

footer .contfoo ul li a.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
}


.col-lg-custom-newsletter {
    padding-left: 0;
    padding-right: 0;
}
