@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400; /* Regular */
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700; /* Bold */
    font-style: normal;
}


body {
    font-family: 'Montserrat', sans-serif;
}

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

.div-title {
    margin-bottom: 16px;
    width: 99.6vw;
    max-width: 100vw;
    position: relative;
    right: calc(-50% + 50vw);
    text-align: center;
    text-transform: uppercase;
    height: 160px;
    line-height: 160px;
    display: flex; /* Adiciona flexbox */
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    background: linear-gradient(132.42deg, rgb(255, 177, 43) 4.12%, rgb(255, 18, 114) 77.03%);
}

h1.title {
    text-transform: uppercase;
    margin: 0;
    content: "";
    display: block;
    color: white;
    font-weight: bold;
    font-size: 60px;
    top: 0px;
    left: 0px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/* init pagination */
.pagination {
    float: right;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination a {
    text-decoration: none;
    font-size: 14px;
    color: #FF1272;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 32px;
    height: 32px;
}

.pagination a:hover {
    background: rgba(255, 18, 114, 0.1);
    min-width: 32px;
    height: 32px;
}

.pagination .current-page {
    background: linear-gradient(132.42deg, #FFB12B 4.12%, #FF1272 77.03%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
}
.pagination .current-page a {
    color: white
}

.pagination .arrow {
    font-size: 16px;
    color: #FF1272;
    cursor: pointer;
}

.pagination .arrow:hover {
    opacity: 0.7;
}
/* finish pagination */



/* init carousel */


.box-carrousel {
    position: absolute;
    top: 10%;
    left: 0px;
    width: 65%;
    height: 100%;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    background: linear-gradient(132.42deg, rgb(255, 177, 43) 4.12%, rgb(255, 18, 114) 77.03%);
}
.carousel-container .banner img {
    width: 100%; /* Garante que a imagem ocupe o espaço do contêiner */
    height: auto; /* Mantém a proporção da imagem */
    border-radius: 15px; /* Adiciona o border-radius para deixar as bordas arredondadas */
    object-fit: cover; /* Ajusta a imagem para cobrir o contêiner sem distorções */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adiciona uma sombra para melhorar o destaque */
}
.carousel-container{
    width: 90%;
    margin: 0 auto;
}
.slick-prev:before {
    content: '' !important;
}
.slick-next:before {
    content: '' !important;
}
.slick-prev,
.slick-next {
    width: 40px; /* Define a largura do botão */
    height: 40px; /* Define a altura do botão (tornando-o quadrado) */
    border-radius: 50%; /* Torna o botão redondo */
    background-color: #fff; /* Cor de fundo do botão */
    border: 2px solid #ccc; /* Adiciona uma borda ao botão */
    display: flex; /* Alinha o ícone no centro */
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adiciona sombra ao botão */
    z-index: 1000; /* Garante que os botões fiquem acima de outros elementos */
    cursor: pointer; /* Mostra o cursor de clique */
    transition: all 0.3s ease; /* Adiciona um efeito de transição */
}

.slick-prev:hover,
.slick-next:hover {
    background-color: #f0f0f0; /* Altera a cor do fundo ao passar o mouse */
    border-color: #999; /* Altera a cor da borda ao passar o mouse */
}

.arrow-icon {
    width: 24px; /* Largura da seta */
    height: 24px; /* Altura da seta */
    fill: #FF1272; /* Cor da seta */
    transition: fill 0.3s ease; /* Transição suave para hover */
}

.slick-prev:hover .arrow-icon,
.slick-next:hover .arrow-icon {
    fill: #FF5A92; /* Cor da seta ao passar o mouse */
}
.carousel-news .card, .carousel-lojas .card {
    margin: 0 10px; /* Espaço entre os cards */
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    width: 100%; /* Garante que ocupe 100% do espaço permitido pelo carrossel */
    max-width: 300px; /* Tamanho máximo de largura */
    min-width: 250px; /* Tamanho mínimo de largura */
    height: 400px; /* Altura fixa para todos os cards */
    display: flex;
    flex-direction: column; /* Permite alinhar os elementos no eixo vertical */
    justify-content: space-between; /* Espaça os elementos internos */
}

.carousel-lojas .card-img-top, .carousel-news .card-img-top {
    width: 100%; /* Garante que a imagem ocupe todo o espaço do card */
    height: 200px; /* Define uma altura fixa para a imagem */
}

.carousel-news h5, .carousel-lojas h5 {
    margin: 15px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #333;
    text-align: center;
}

.carousel-news span, .carousel-lojas span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgb(166, 175, 180);
    text-align: center;
    margin: 0 10px; /* Espaço horizontal para textos */
}

.card-link {
    display: block;
    position: relative;
    max-height: 260px;
    border-radius: 15px;
    width: 100%;
    margin: 24px auto;
    overflow: hidden;
    text-align: center;
    color: white;
    margin-left: 0 !important;
}
.card-link .card-body{
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
}
.card-link:hover{
    background-color: rgba(255, 255, 255, 0.8);
    color: white;
}

.see-all-movies {
    float: right;
    top: 0;
    position: absolute;
    right: 0;
    color: #FF1272;
    z-index: 99;
}
.see-all-movies:hover {
    color: #FF1272;
}

.leisure-and-fun .card{
    background-color: transparent;
}

.leisure-and-fun .movies{
    top: -50px;
}
.leisure-and-fun .laisure{
    top: -75px;
}

@media (max-width: 768px) {
    .leisure-and-fun .movies{
        top: 0px;
    }
    .leisure-and-fun .laisure{
        top: 0px;
    }
}

.carousel-movies {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-movies .card img{
    border-radius: 30px;
}

.carousel-movies .card{
    /* width: 275px !important; */
    background-color: transparent;
}

.body-tittle {
    margin: 100px auto;
    max-width: min(90%, 1440px);
    position: relative;
}

.btn-view-all{
    color: #FF1272;
    border: none;
}
.btn-view-all:hover{
    background-color: rgba(255, 18, 114, 0.04);
    color: #FF5A92;
}
.slick-slide {
    margin: 0 10px;
    border: none;
}
.btn.btn-buy-ticket{
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    outline: 0;
    border: 0;
    margin: 0;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-text-decoration: none;
    text-decoration: none;
    color: inherit;
    text-transform: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    min-width: 64px;
    padding: 5px 15px;
    border-radius: 4px;
    -webkit-transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border: 1px solid rgba(255, 18, 114, 0.5);
    color: #FF1272;
}
.btn.btn-buy-ticket:hover{
    text-decoration: none;
    background-color: rgba(255, 18, 114, 0.04);
    border: 1px solid #FF1272;
}
.movie-item a:hover{
    text-decoration: none;
    background-color: rgba(255, 18, 114, 0.04);
    color: white;
}
.download-presentation:hover{
    text-decoration: none;
    color:#FF1272;
}