:root {
	--font-family: "Fira Sans", sans-serif;
	--light-red: #C41925;
	--dark-red: #9A0A0D;
	--orange: #FF531E;
	--black: #212529;
	--black-bg: #212529;
	--grey: #EFEFEF;
	--dark-gray: #797777;
	--white: #FFFFFF;
	--gradient: linear-gradient(90deg, #8C0106 0%, #EC1C25 50%, #8C0106 100%);
}

h1 {
	font-size: 32px;
	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: 400;
}

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

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

.text-light-red {
	color: var(--light-red);
}

.text-orange {
	color: var(--orange);
}

body {
	font-family: var(--font-family);
	padding-top: 40px;
}

.container {
	max-width: 1296px;
	width: 100%;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

.header-top {
	background-color: var(--black);
	position: fixed;
	z-index: 91;
	width: 100%;
	top: 0;
}

@media (max-width: 767.98px) {
	.header-top .container {
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

.main-header {
	background: var(--gradient);
	color: var(--white);
	margin: 18px 0;
	position: relative;
	box-shadow: 0 -14px 0 var(--orange), 0 14px 0 var(--orange);
}

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

.main-header::after {
	content: "";
	position: absolute;
	top: -10px;
	left: 0;
	right: 0px;
	bottom: -10px;
	pointer-events: none;
	z-index: 1;
	border: 5px dashed var(--white);
	border-radius: 0;
	border-right: 0;
	border-left: 0;
}

@media (max-width: 991px) {
	.main-header img.logo {
		max-height: 40px;
		height: auto;
		width: auto;
	}
}

.main-header .nav-link {
	font-size: 20px;
	color: var(--white);
}

.navbar-nav>.dropdown:hover>.dropdown-menu {
	display: block;
	margin-top: 0;
}

@media (max-width: 991px) {
	.navbar-collapse {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		background-color: var(--black-bg);
		z-index: 999;
		padding: 1rem 1.25rem;
	}

	.navbar-collapse.show {
		display: block;
	}

	.dropdown-menu {
		display: block;
		padding: 0;
		background: none;
		border: 0;
		margin-left: 7vw;
	}

	.dropdown-menu li {
		list-style: initial;
	}

	.dropdown-menu li a {
		padding: 10px 0;
	}

	.dropdown-toggle::after {
		border: 0;
	}
}

.navbar-toggler {
	border: 0;
	padding: 0;
}

.navbar-toggler h2 {
	color: var(--grey);
}

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

.btn-prime-club {
	text-decoration: none;
	font-size: 24px;
	padding: 0;
	display: inline-flex;
	align-items: center;
	color: #fff;
}

.btn-prime-club:hover,
.btn-prime-club:focus {
	text-decoration: none;
	color: #ccc;
}

.main-banner {
	width: 100%;
	padding: 32px 0;
	box-sizing: border-box;
}

.main-banner .swiper-slide {
	width: 100%;
	transition: transform 0.3s ease;
	border-radius: 16px;
	overflow: hidden;
}

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

.swiper-slide img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	border-radius: 16px;
}

.swiper-button-next,
.swiper-button-prev {
	color: var(--white);
}

.custom-swiper-button {
	font-size: 40px;
	color: var(--white);
	position: absolute;
	z-index: 9;
}

.custom-swiper-button.cs-prev {
	/* margin-top: -150px; */
	left: -30px;
}

.custom-swiper-button.cs-next {
	/* margin-top: -150px; */
	right: -30px;
}

.custom-swiper-button.cs-prev2 {
	left: -40px;
}

.custom-swiper-button.cs-next2 {
	right: -40px;
}

@media (max-width: 991px) {

	.custom-swiper-button.cs-next {
		margin-top: -145px;
		right: 8px;
	}

	.custom-swiper-button.cs-prev {
		margin-top: -150px;
		left: 8px;
	}

	.custom-swiper-button.cs-prev2 {
		left: 0px;
	}

	.custom-swiper-button.cs-next2 {
		right: 0px;
	}

}

.main-banner-pagination {
	opacity: 0.5;
	position: absolute;
	bottom: 40px !important;
}

.main-banner-pagination:hover {
	opacity: 1;
}

.swiper-pagination-bullet {
	width: 16px;
	height: 16px;
	background: var(--white);
	border-radius: 2px;
}

.swiper-pagination-bullet-active {
	background: var(--orange);
}

@media (max-width: 991px) {
	.main-banner-pagination {
		bottom: 20px !important;
	}

	.swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}
}

.movie-block.container {
	max-width: 728px;
	border: 1px solid var(--orange);
	border-radius: 8px;
	background-color: var(--black-bg);
	padding: 0;
	padding-right: 24px;
	margin: 0 auto;
	width: 94%;
	position: relative;
}

.poster-small {
	height: 90px;
	border-radius: 8px 0 0 8px;
}

.movie-info h3 {
	color: var(--light-red);
	font-weight: 600;
	margin: 0;
}

.movie-info p {
	color: var(--grey);
	margin: 0;
}

.countdown-wrapper {
	min-width: 220px;
}

.countdown-wrapper h4 {
	margin: 0;
	color: var(--orange);
}

.countdown-segment {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.countdown-value {
	font-size: 24px;
	font-weight: 700;
}

.countdown-label {
	font-size: 12px;
	color: var(--orange);
}

@media (max-width: 991px) {
	.movie-block.container {
		padding-right: 16px;
		padding-left: 62px;
		height: 92px;
	}

	.movie-block-content {
		flex-direction: column;
	}

	.colw100 {
		width: 100%;
		padding-top: 16px;
	}

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

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

	.movie-info p {
		font-size: 14px;
	}

	.poster-small {
		position: absolute;
		top: 0;
		left: 0;
	}

	.countdown-wrapper {
		display: flex;
		width: 88%;
		gap: 16px;
		align-items: center;
	}

	.countdown-segment {
		flex-direction: row;
		gap: 8px;
	}

	.btn-light-red.btn-countdown {
		position: absolute;
		bottom: 8px;
		padding: 4px;
		right: 8px;
	}
}

section.promocoes {
	background: #EFEFEF10;
	padding: 40px 0;
}

section.serv-facil {
	padding: 40px 0;
}

div.ad-block {
	padding: 32px 16px;
	text-align: center;
	text-transform: uppercase;
	color: var(--white);
	display: grid;
	grid-gap: 8px;
}

.nav-tabs .nav-link {
	color: var(--grey);
	border: none !important;
	border-bottom: 2px solid transparent;
	padding-left: 0;
	padding-right: 0;
	margin-right: 24px;
	font-weight: 600;
}

.nav-tabs .nav-link.active {
	border-bottom: 3px solid var(--light-red) !important;
	background-color: transparent;
	color: var(--light-red);
	font-weight: 700;
}

.nav-tabs {
	border: none !important;
}

.nav-tabs .nav-item:last-child .nav-link {
	margin-right: 0;
}

.tab-content {
	border: none !important;
	padding: 0;
}

.nav-tabs h2 {
	font-size: 24px;
	line-height: 32px;
	font-weight: 600;
	margin: 0;
}

.btn-light-red {
	background-color: var(--light-red);
	color: var(--white);
	border: none;
	padding: 0.5rem 1rem;
	font-weight: 500;
	border-radius: 4px;
	transition: background-color 0.3s ease;
}

.btn-light-red:hover,
.btn-light-red:focus {
	background-color: var(--dark-red);
	color: var(--white);
	text-decoration: none;
}

@media (max-width: 991px) {
	.btn-light-red {
		font-size: 13px;
	}
}

.btn-orange {
	background-color: var(--black);
	color: var(--orange);
	border: 1px solid var(--orange);
	padding: 0.5rem 1rem;
	font-weight: 500;
	border-radius: 4px;
	transition: background-color 0.3s ease;
}

.btn-orange:hover,
.btn-orange:focus {
	background-color: var(--black-bg);
	border: 1px solid var(--orange);
	color: var(--orange);
	text-decoration: none;
}

@media (max-width: 991px) {
	.btn-orange {
		font-size: 13px;
	}
}

.poster-wrapper {
	position: relative;
	display: inline-block;
	overflow: hidden;
}

.poster-img {
	display: block;
	border-radius: 8px !important;
	width: 100%;
	height: auto;
	border: 4px solid var(--orange);
	outline-offset: -3px;
	outline: 1px dashed var(--white);
	transition: transform .5s;
}

.tag {
	position: absolute;
	top: 8px;
	left: 8px;
	color: var(--white);
	font-size: 14px;
	padding: 4px 10px;
	border-radius: 6px;
	z-index: 3;
	font-weight: 500;
}

.card-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 8px 0 0 0;
}

.card-body>* {
	margin: 0;
}

.card-text {
	color: var(--grey);
}

.card-title {
	color: var(--orange);
	font-size: 1.1rem;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 2.6em;
	margin-bottom: 0.4rem;
}

.card-info-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	height: 1.4em;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-bottom: 0.3rem;
}

.card-info-row span {
	flex-shrink: 0;
}

.card-genero {
	font-size: 0.9rem;
	color: var(--white);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 1.4em;
	margin-bottom: 0.5rem;
	display: block;
	max-width: 100%;
}

.card-body {
	margin-bottom: 1rem;
}


@media (max-width: 576px) {
	.card-title {
		font-size: 1rem;
		-webkit-line-clamp: 2;
		min-height: 2.4em;
	}

	.card-info-row {
		font-size: 0.85rem;
		gap: 0.4rem;
	}

	.card-genero {
		font-size: 0.85rem;
		margin-bottom: 0.5rem;
	}

	.card-body {
		padding: 1rem;
		margin-bottom: 1rem;
	}

	.btn.btn-light-red {
		width: 100%;
		text-align: center;
	}
}


.classificacao-box {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	color: var(--white);
	font-weight: 700;
	font-size: 16px;
	border-radius: 4px;
	font-family: var(--font-family);
	user-select: none;
	margin-right: 6px;
	text-transform: uppercase;
}

.classificacao-L {
	background-color: #4CAF50;
}

.classificacao-10 {
	background-color: #2196F3;
}

.classificacao-12 {
	background-color: #cfbb0b;
}

.classificacao-14 {
	background-color: #FF9800;
}

.classificacao-16 {
	background-color: #F44336;
}

.classificacao-18 {
	background-color: #000;
}

.footer-top {
	background-color: #000;
	border-top: 4px dashed var(--white);
	border-bottom: 4px dashed var(--white);
	outline: 8px solid #000;
	outline-offset: -12px 2px;
}

footer {
	font-family: var(--font-family, "Fira Sans", sans-serif);
}

.footer-bottom {
	background-color: var(--light-red);
}

.footer-bottom h4 {
	margin: 0;
	font-size: 16px;
}

.footer-bottom img {
	height: 40px;
}

.footer-bottom .col-md {
	display: flex;
	align-items: center;
	justify-content: center;
}

.border-opacity {
	border-color: rgba(255, 255, 255, 0.2) !important;
	border-radius: 8px;
}

.footer-top h3 {
	color: var(--orange);
	font-weight: 600;
	margin-bottom: 16px;
}

.footer-top ul li a {
	color: var(--grey);
	text-decoration: none;
	display: block;
	margin-bottom: 8px;
}

.footer-top ul li a:hover {
	color: var(--white);
}

.footer-top .border-opacity {
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-top .btn-light-red {
	background-color: var(--light-red);
	border: none;
}

.footer-top .btn-light-red:hover {
	background-color: var(--dark-red);
}

.footer-top .text-light-red {
	color: var(--light-red);
}

.modal .modal-title {
	font-size: 24px;
	color: var(--orange);
}

.modal .form-label {
	font-weight: 500;
}

@media (max-width: 991px) {
	.footer-top .col-md:not(:last-child) {
		display: none !important;
	}

	.footer-top .text-center {
		justify-content: center;
		text-align: center;
	}

	.footer-top .d-md-flex {
		display: none !important;
	}

	.footer-bottom .row {
		flex-direction: column;
		text-align: center;
	}

	.footer-bottom .col-md {
		flex-direction: column !important;
		justify-content: center !important;
		margin-bottom: 16px;
	}
}

.custom-breadcrumb {
	background-color: transparent;
	font-family: var(--font-family);
	font-size: 1rem;
	margin-top: 2rem;
	margin-bottom: 2rem;
	padding: 0;
}

.custom-breadcrumb .breadcrumb-item a {
	color: var(--grey);
	text-decoration: none;
}

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

.custom-breadcrumb .breadcrumb-item.active {
	color: var(--light-red);
}

.cinema-title {
	font-family: var(--font-family);
	color: var(--orange);
	font-size: 2rem;
	margin-bottom: 0.25rem;
}

.cinema-address {
	font-family: var(--font-family);
	color: var(--grey);
	font-size: 1.125rem;
	margin: 0;
}


.date-tab {
	text-align: center;
	padding: 12px;
	cursor: pointer;
	border: 1px dashed var(--white);
	border-radius: 16px;
	color: var(--grey);
	font-family: var(--font-family);
	transition: all 0.2s ease-in-out;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.date-tab.active {
	background-color: var(--light-red);
	border: 1px solid var(--light-red);
	color: var(--grey);
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
}

.date-carousel .swiper-slide {
	border: 1px dashed var(--white);
	border-radius: 16px;
	text-align: center;
	padding: 8px;
	cursor: pointer;
	min-width: 72px;
	color: var(--grey);
	transition: background 0.3s, border-color 0.3s;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.date-carousel .swiper-slide.active {
	background-color: var(--light-red);
	border: 1px solid var(--light-red);
	color: var(--white);
}

.date-carousel .label {
	font-size: 12px;
	text-transform: uppercase;
	color: var(--grey);
	margin-bottom: 4px;
}

.date-carousel .day {
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
}

.date-carousel .month {
	font-size: 14px;
	text-transform: uppercase;
	margin-top: 4px;
}

/* Desktop */
@media (max-width: 991px) {
	.date-carousel .day {
		font-size: 32px;
	}
}

.card-filme {
	background-color: var(--black-bg);
	padding: 1.5rem;
}

.poster-filme {
	width: 100%;
	object-fit: cover;
	border-radius: 8px;
	border: 4px solid var(--orange);
	outline-offset: -3px;
	outline: 1px dashed var(--white);
	transition: transform .5s;
}

@media (max-width: 991px) {
	.poster-filme {
		height: 235px;
	}
}


.filme-box-content {
	overflow: hidden;
	border-bottom: 1px solid rgba(235, 235, 235, 0.3);
}


.titulo-filme {
	color: var(--grey);
	width: 80%;
	float: right;
	padding: 0 0 16px 24px;
	margin-bottom: 0;
}

.col-poster {
	width: 20%;
	float: left;
	position: relative;
	overflow: hidden;
}

.col-poster2 {
	width: 20%;
	float: left;
	position: relative;
}

.info-filme {
	font-size: 20px;
	color: var(--grey);
	width: 80%;
	float: right;
	padding: 8px 0 8px 24px;
	gap: 24px;
}

.info-filme .info-filme-content {
	gap: 32px;
}

.info-filme.small {
	font-size: 16px;
	gap: 16px;
}

.info-filme.small .info-filme-content {
	gap: 16px;
}

@media (max-width: 991px) {
	.filme-box-content {
		display: flex;
		flex-wrap: wrap;
		overflow: initial;
	}

	.titulo-filme {
		order: 1;
		width: 100%;
		float: none;
		padding: 0;
		margin-bottom: 8px;
	}

	.col-poster {
		order: 2;
		float: none;
		width: 40%;
		margin-bottom: 20px;
	}

	.info-filme {
		flex-wrap: wrap;
		align-items: start;
		height: fit-content;
		order: 3;
		float: none;
		width: 60%;
		padding: 0 0 0 16px;
		margin-top: 0;
		font-size: 16px;
		gap: 0;
	}

	.info-filme .info-filme-content {
		gap: 8px;
		flex-direction: column;
	}

	.info-filme.small {
		gap: 0;
	}

	.info-filme.small .info-filme-content {
		gap: 4px;
	}
}

.botao-filme {
	font-size: 20px;
	color: var(--white);
	background-color: var(--light-red);
	border: none;
	border-radius: 8px;
	padding: 6px 16px;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.botao-filme:hover {
	background-color: var(--dark-red);
}

.horarios-filme {
	gap: 0.5rem;
}

.info-filme-linha {
	padding-bottom: 32px;
	margin-bottom: 32px;
}

.horarios-box {
	width: 80%;
	padding: 0 0 0 24px;
	float: right;
}

@media (max-width: 991px) {
	.horarios-box {
		order: 4;
		padding: 4px;
		float: none;
		width: 100%;
	}
}

@media (min-width: 991px) {
	.horarios-box.snpContentm {
		display: block;
		height: auto !important;
		visibility: visible;
	}
}

.info-sessao {
	border-top: 1px solid rgba(235, 235, 235, 0.3);
}

.btn-horario {
	background-color: var(--light-red);
	color: var(--white);
	border: 1px solid var(--orange);
	border-radius: 8px;
	padding: 2px 20px;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	transition: background-color 0.3s ease;
}

.btn-horario .small {
	display: block;
	font-size: 12px;
	font-weight: 300;
}

.btn-horario:hover {
	background-color: var(--dark-red);
}

.btn.btn-horario-disabled {
	opacity: 0.5;
	background-color: var(--dark-gray);
	color: var(--white);
	border: 1px solid var(--white);
	border-radius: 8px;
	padding: 4px 20px;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
}

.btn.btn-horario-disabled .small {
	display: block;
	font-size: 12px;
	opacity: 0.6;
	font-weight: 300;
}

.form-contato .form-label {
	font-weight: 500;
	font-size: 16px;
}

.form-contato input,
.form-contato select,
.form-contato textarea {
	background-color: var(--black);
	color: var(--grey);
	border: 1px solid var(--grey);
	border-radius: 4px;
}

.form-contato input::placeholder,
.form-contato textarea::placeholder {
	color: var(--grey);
	opacity: 0.6;
}

.form-contato textarea {
	resize: vertical;
}

#sucesso,
#erro {
	font-size: 18px;
	margin-top: 8px;
}

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

ul.infos li {
	cursor: pointer;
	text-align: center;
	color: var(--grey);
}

ul.infos li a {
	color: var(--grey);
}

.poster-wrapper:hover ul.infos,
.col-poster:hover ul.infos {
	z-index: 2;
	opacity: 1;
}

.zoom {
	transition: transform .5s;
}

.zoom:hover {
	transform: scale(1.2);
}

.poster-wrapper:hover .poster-img,
.col-poster:hover .poster-filme {
	transform: scale(1.2);
}

.coca-cola {
	position: fixed;
	left: 8px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 80px;
	height: 80px;
	z-index: 99;
}

@media (max-width: 991px) {
	.coca-cola {
		width: 60px;
		height: 60px;
	}
}

.stuck {
	position: fixed !important;
	top: 40px;
	padding: 10px 10px 16px;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	z-index: 5;
	background: var(--black);
	max-width: 1320px;
	width: 100%;
}

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

.text-unit-selector {
	margin: 4px 0 0 4px;
}

.swiper-pagination-bullet {
	border: 1px solid #9C050B !important;
}
