.search-header, .categorie-header {
    top: 0;
    width: 100%;
    padding: 1.2rem;
    position: fixed;
    z-index: 998;
    transition: background-color 0.5s ease;
}

.header-bg {
    background-color: rgba(0, 0, 0, 0.9);
}

.search-header form {
    position: relative;
    margin-inline: auto;
}

.search-header input {
    width: 100%;
    border: 1px solid #ADADAD;
    border-radius: .8rem;
    padding: 1.6rem 1rem 1.6rem 4rem;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ADADAD;
    font-size: 1.4rem;
    font-weight: 600;
    outline: rgba(0, 0, 0, 0);
}

.search-header input::placeholder {
    color: #ADADAD;
    font-size: 1.4rem;
    font-weight: 600;
}

.search-header button {
    position: absolute;
    left: 1rem;
    top: 1.2rem;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    cursor: pointer;
}

.main-slide {
    z-index: 997;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.cover-blur {
    z-index: 997;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.9738270308123249) 34%, rgba(217,217,217,0.40) 100%);
    backdrop-filter: blur(.4rem);
}

.carousel-container {
    z-index: 998;
    margin-top: 4rem;
    overflow: hidden;
    width: min(100%, 800px);
    height: 400px;
    display: flex;
    align-items: center;
    margin-inline: auto;
}

.carousel {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.slide {
    width: 240px;
    height: 358px;
    flex-shrink: 0;
    opacity: 0.5;
    transition: transform 0.5s ease, opacity 0.5s ease;
    position: relative;
    display: flex;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #ADADAD;
    transform: scaleY(0.9);
}

.carousel .slide.active {
    transform: scale(1.1, 1.2);
    opacity: 1;
}

.slide-info {
    width: 100%;
    position: absolute;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8953956582633054) 0%, rgba(0,0,0,0.30155812324929976) 100%);
    padding: 1rem 0 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .8rem;
}

.slide-info .price {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.slide-info span, .slide-info del {
    font-size: 1rem;
    font-weight: 600;
}

.slide-info del {
    color: #dfdfdf;
}

.slide-info .btn {
    background-color: #fff;
    width: 9.8rem;
    height: 2.8rem;
    font-size: 1.2rem;
    font-weight: 600;
    padding: .8rem;
    text-transform: uppercase;
}

.slide .btn img {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 0;
    border: none;
}

.slide-controls {
    margin-top: 1.2rem;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}

.slide-controls .slide-control {
    display: inline-block;
    background-color: #828282;
    width: 16px;
    height: 3px;
    cursor: pointer;
    border-radius: .4rem;
}

.slide-controls .active, .slide-control:hover {
    background-color: #fff;
    width: 18px;
    height: 5px;
}

.no-slide {
    margin-top: 6rem;
}

.hot-slide {
    margin-block: auto;
    margin-bottom: 2rem;
    padding: 2rem 0 2rem 1.2rem;
    width: 100%;
    height: 39rem;
    background: linear-gradient(151deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.9738270308123249) 62%, rgba(56, 13, 22, 0.850577731092437) 100%);
}

.hot-slide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.6rem;
}

.hot-slide-header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hot-slide-header-actions .btn {
    background: #ffffff00;
}

.hot-slide-header h2 {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
}

.hot-slide-content {
    margin: auto;
    max-width: 83.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.hot-slide-content::-webkit-scrollbar {
    display: none;
}

.hot-slide-content .hot-slide-item-cover {
    position: relative;
}

.hot-slide-content .hot-slide-item-cover::before {
    width: 1rem;
    height: 1rem;
    content: attr(data-count);
    position: absolute;
    left: 0;
    bottom: .35rem;
    background: linear-gradient(352deg, rgba(251, 96, 46, 1) 0%, rgba(253, 40, 75, 1) 47%, rgba(238, 54, 147, 1) 100%);
    color: #fff;
    font-size: 1.4rem;
    padding: 1.4rem 1.4rem .4rem .4rem;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    border-radius: 0 .8rem 0;
    text-align: center;
}

.hot-slide-item:nth-child(1) .hot-slide-item-cover::before {
    background: #FBC342;
    width: 2rem;
    height: 2rem;
    font-size: 2rem;
    padding: 2rem 2rem .2rem .2rem;
}

.hot-slide-item:nth-child(2) .hot-slide-item-cover::before {
    background: #9DC8E8;
    width: 2rem;
    height: 2rem;
    font-size: 2rem;
    padding: 2rem 2rem .2rem .2rem;
}

.hot-slide-item:nth-child(3) .hot-slide-item-cover::before {
    background: #F6B29F;
    width: 2rem;
    height: 2rem;
    font-size: 2rem;
    padding: 2rem 2rem .2rem .2rem;
}


.hot-slide-itens {
    height: 40rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: .6rem 4rem;
}

.hot-slide-item {
    display: flex;
    gap: .8rem;
    padding-right: 1.2rem;
}

.hot-slide-item img {
    width: 7rem;
    height: 9.7rem;
    border-radius: .8rem;
}

.hot-slide-item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.hot-slide-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    width: 7.8rem;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4rem;
}

.hot-slide-item .price {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.hot-slide-item span, .hot-slide-item del {
    font-size: 1rem;
    font-weight: 600;
}

.hot-slide-item del {
    color: #616161;
}

.hot-slide-item .btn {
    background-color: #fff;
    width: 7.8rem;
    height: 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    padding: .8rem;
    text-transform: uppercase;
}

.hot-slide-item .btn img {
    width: 1.5rem;
}

main {
    margin-bottom: 10rem;
}

main section {
    padding-inline: 1rem;
    margin-top: 3.6rem;
}

main section header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2rem;
}

main section header h2, main header h2 {
    font-weight: bold;
    font-size: 2rem;
}

.main-home section header a {
    cursor: pointer;
}

.main-home section header a img {
    width: 1.5rem;
}

.films-slide-box {
    position: relative;
}

.films-slide-box:hover .slide-control {
    background: linear-gradient(95deg, #0F0E0E 4.57%, rgba(15, 14, 14, 0.00) 149.08%);
}

.films-slide-box .slide-control {
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    background: linear-gradient(95deg, rgba(15, 14, 14, 0.35) 4.57%, rgba(15, 14, 14, 0.00) 149.08%);
    width: 2rem;
    border-radius: .8rem;
}

.films-slide-box .slide-control .icon {
    width: 2.5rem;
}

.films-slide-box .left {
    left: 0;
}

.films-slide-box .right {
    right: 0;
}

.films-slide-box .films {
    max-width: 100%;
    display: flex;
    align-items: stretch;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.films-slide-box .films::-webkit-scrollbar {
    display: none;
}

.films-box .films {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 1.4rem 1.4rem;
}

.film {
    flex-shrink: 0;
    width: 9.9rem;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.content {
    width: min(60%, 25rem) !important;
}

.content .cover-content {
    height: 32rem;
    border-radius: .8rem;
}

.content .cover {
    height: 100% !important;
    width: 100%;
}

.content .film-info {
    height: auto !important;
    justify-content: space-between !important;
    gap: .8rem !important;
}

.content h2 {
    font-size: 1.4rem !important;
    line-clamp: none !important;
    -webkit-line-clamp: none !important;
    -webkit-box-orient: vertical;
}

.content span, .content del {
    font-size: 1.4rem !important;
}

.content .btn
 {
    width: 100% !important;
    height: 3.5rem !important;
    font-size: 1.4rem !important;
}

.go-home {
    margin-top: 3rem;
    margin-inline: auto;
    background-color: #fff;
    width: min(60%, 25rem);
    height: 3.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    padding: .8rem;
    text-transform: uppercase;
    color: black;
}

.cover {
    height: 13.3rem;
    border-radius: .8rem;
    object-fit: cover;
}

.cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.film-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: .8rem;
}

.film h2 {
    padding-top: .8rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4rem;
}

.film .price {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.film span, .film del {
    font-size: 1rem;
    font-weight: 600;
}

.film del {
    color: #616161;
}

.film .btn {
    background-color: #fff;
    width: 7.8rem;
    height: 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    padding: .8rem;
    text-transform: uppercase;
}

.film .btn img {
    width: 1.5rem;
}

.main-categories {
    margin-top: 6rem;
}

.categorie-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(0deg, rgba(0,0,0,1) 6%, rgba(44,10,17,1) 100%);
}

.categorie-header h2 {
    text-align: center;
    width: 90%;
}

.categorie-header a {
    cursor: pointer;
}

.categorie-header a img {
    width: 1.5rem;
}

.main-categories .films-box .cover {
    height: 15.3rem;
}

.content-info {
    padding-inline: 2rem;
    margin-top: 8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.content-info img {
    width: 8rem;
}

.main-search {
    margin-top: 8rem;
}

.menu {
    margin-top: 20rem;
    background-color: #000;
    width: 100%;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: .2rem solid #ADADAD;
    padding-block: 2.8rem;
    position: fixed;
    bottom: 0;
    z-index: 999;
}

.menu ul {
    width: 94%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

.menu ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    padding: .8rem;
    cursor: pointer;
}

.menu ul li a img {
    width: 2.2rem;
}
/* ============================================
   NOVO: destaque dourado no item ativo do rodapé
   ============================================ */

.menu ul {
    display: flex;
    width: 100%;
}

.menu ul li {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    width: 100%;
    text-decoration: none;
}

.menu ul li a .nav-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 3rem;
    border-radius: .8rem;
    transition: background .2s;
}

.menu ul li a.active .nav-icon-wrap {
    background: rgba(212, 175, 106, 0.15);
}

.menu ul li a img {
    width: 2.2rem;
    filter: brightness(0) saturate(100%) invert(50%);
}

.menu ul li a.active img {
    filter: brightness(0) saturate(100%) invert(78%) sepia(47%) saturate(500%) hue-rotate(5deg) brightness(103%);
}

.menu ul li a.active,
.menu ul li a.active:visited {
    color: #e8c77a !important;
}

/* VIP */
.vip-icon-wrap {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    width: 5rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-icon-wrap img {
    filter: none !important;
    width: 4rem !important;
    height: 4rem !important;
    object-fit: contain;
}

.menu {
    border-top-color: #2c1212 !important;
}


