.main-header {
    position: relative;
    height: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .8rem;
    z-index: 2;
}

.main-header-logo {
    width: 3.8rem;
    height: 3.8rem;
}

.main-header-logo img {
    width: 100%;
}

.main-header-search {
    position: relative;
}

.main-header-search input {
    padding: .8rem 3.8rem .8rem .8rem;
    border: .2rem solid var(--main);
    border-radius: 80rem;
    background-color: #d9d9d91c;
    max-width: 20rem;
    width: 100%;
    color: var(--white);
    font-family: "Sunflower", sans-serif;
    backdrop-filter: blur(.4rem);
}

.main-header-search input::placeholder {
    color: var(--white);
    font-family: "Sunflower", sans-serif;
}

.main-header-search input:focus {
  outline: none;
}

.main-header-search button {
    position: absolute;
    background-color: #ffffff00;
    border: none;
    cursor: pointer;
    right: 1rem;
    top: .8rem;
}

.main-slide {
    z-index: 997;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 480px;
    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: 1.4rem;
    font-weight: 600;
}

.slide-info del {
    color: #877d7d;
}

.slide-info .btn {
    background: var(--linear-bg);
    width: 10.8rem;
    height: 3rem;
    font-size: 1.4rem;
    font-weight: 600;
    padding: .8rem;
    color: #fff;
    line-height: 1.4rem;
}

.slide .btn img {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 0;
    border: 1px solid transparent;
    overflow: unset;
    object-fit: contain;
    transform: 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: var(--main);
    width: 18px;
    height: 5px;
}

.menu {
    margin-top: 20rem;
    background-color: var(--dark-700);
    width: 100%;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: .2rem solid var(--main);
    padding-block: 2.8rem;
    position: fixed;
    bottom: 0;
    z-index: 999;
}

.menu ul {
    width: 100%;
    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: .6rem;
    color: var(--white);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: .8rem;
    cursor: pointer;
}

.menu ul li a img {
    width: 2.2rem;
}

.hot-slide {
    margin-block: auto;
    margin-bottom: 2rem;
    padding: 2rem 0 2rem 1.2rem;
    width: 100%;
    height: 39rem;
}

.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;
    gap: .4rem;
}

.hot-slide-header-actions .btn {
    background: var(--linear-bg);
    width: 3rem;
    height: 3rem;
    border-radius: .8rem;
    border: none;
    cursor: pointer;
    margin: 1rem 0;
}

.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;
    scroll-snap-type: x mandatory;
}

.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: 1.5rem;
    height: 1.5rem;
    content: attr(data-count);
    position: absolute;
    left: 0;
    bottom: .48rem;
    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.6rem;
    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: #f1b017;
}

.hot-slide-item:nth-child(2) .hot-slide-item-cover::before {
    background: #acdbff;
}

.hot-slide-item:nth-child(3) .hot-slide-item-cover::before {
    background: #c96f56;
}


.hot-slide-itens {
    height: 40rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: .6rem 4rem;
}

.hot-slide-item {
    scroll-snap-align: start;
    display: flex;
    gap: .8rem;
    padding-right: 1.2rem;
}

.hot-slide-item img {
    width: 9rem;
    height: 13rem;
    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;
    line-height: 1.4rem;
}

.hot-slide-item h3 a {
    color: #fff;
    text-decoration: none;
}

main {
    margin-bottom: 8.5rem;
}

.main-home {
    margin-top: 8.5rem;
}

main section {
    padding-inline: 1rem;
    margin-top: 3.6rem;
}

main section header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: .4rem;
}

main section header h2, main header h2 {
    font-weight: bold;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.main-home section header a {
    color: var(--main);
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: .8rem;
    cursor: pointer;
    text-decoration: none;
}

.films_slide_controls {
    display: flex;
    justify-content: flex-end;
    gap: .4rem;
}

.films_slide_box .slide_control {
    background: var(--linear-bg);
    width: 3rem;
    height: 3rem;
    border-radius: .8rem;
    border: none;
    cursor: pointer;
    margin: 1rem 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;
}

.film {
    flex-shrink: 0;
    width: clamp(6rem, 30%, 10rem);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.film a {
    padding-top: .8rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--white);
}

.film-cover {
    height: 14.4rem;
    position: relative;
}

.film-cover img {
    border-radius: .8rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag {
    background: var(--linear-bg);
    border-radius: .4rem;
    padding: .2rem .4rem;
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    top: .4rem;
    right: .4rem;
    font-size: 1.4rem;
}

.films_box {
    margin-top: 2.3rem;
}

.films_box .films {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 1.8rem 1rem;
}

.films_box .film {
    width: clamp(6rem, 30%, 10rem);
}

.tag {
    padding: .2rem .4rem;
    font-size: 1.4rem;
}

.films_box .film-cover {
    height: 14.4rem;
}

.main-film-cover {
    margin-top: -5.5rem;
}

.main-film-cover img {
    width: 100%;
    height: 28rem;
    object-fit: cover;
    object-position: top;
}

.main-film section {
    margin-top: 0;
}

.film-info h2{
    text-align: center;
    padding: 1.4rem;
    font-weight: bold;
    font-size: 2rem;
}

.film-info p {
    font-size: 1.4rem;
    font-weight: lighter;
    color: var(--gray-200);
    margin-bottom: 2rem;
    cursor: pointer;
}

.text-hidden p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 5;
    box-orient: vertical; 
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical; 
}

.film-info span {
    margin-block: 1rem;
    font-size: 1.4rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .8rem;
}

.film-action {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    font-size: 1.6rem;
    font-weight: bold;
}

.price del {
    color: var(--gray-500);
}

.film-action button, .film-action a {
    background: var(--linear-bg);
    color: var(--white);
}

.film-action .disabled {
    background: var(--error);
    color: var(--white);
}

.film-action-modal-box {
    position: fixed;
    top: 0;
    height: calc(100vh - 5rem);
    width: 100%;
    background: rgba(19, 16, 16, 0.548);
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    z-index: 998;
}

.film-action-modal {
    background-color: var(--dark-700);
    display: flex;
    flex-direction: column;
    width: 96%;
    padding: 1rem 1rem 2rem;
    border-radius: .8rem;
    margin: 0 auto;
}

.modal-close {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.modal-close button {
    background-color: #00000000
}

.modal-content h2 {
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.modal-content .btn {
    width: 100%;
    background: var(--linear-bg);
    color: var(--white);
    margin-top: 1rem;
}

.main-cart {
    margin-block: 2rem;
    padding-inline: 1rem;
}


.cart-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-block: 2rem;
    text-transform: uppercase;
    font-weight: bold;
}

.coupon-content .btn {
    width: 100%;
    background: #4c6ba5 !important;
    color: var(--white);
    margin-top: 1rem;
    margin-block: .8rem;
    margin-bottom: 1.6rem !important;
}


.coupon-content .input-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: .8rem;
}

.coupon-content .input-icon input {
    width: 100%;
    background-color: #03050A;
    color: var(--gray-500);
    border: 1px solid var(--dark-500);
    padding: 1.2rem .8rem 1.2rem 5rem;
    border-radius: .8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.coupon-content .input-icon img {
    width: 4rem;
    position: absolute;
    left: 1rem;
}

.coupon-content .coupon-info {
    font-weight: 500;
    font-size: 1.4rem;
    margin-top: 1.2rem;
    background-color: #4c6ba575;
    padding: 1rem;
    border-radius: .8rem;
    border: .2rem dashed #5273b1;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin-bottom: 1.6rem;
}

.coupon-content .coupon-info .btn-coupon {
    border: none;
    background-color: #00000000;
    cursor: pointer;
}

.main-cart .btn {
    margin: auto;
    color: var(--white);
    background: var(--linear-bg);
    width: 100%;
    text-transform: uppercase;
}

.cart-items {
    margin-block: 2rem 8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    background-color: var(--dark-700);
    width: 100%;
    padding: .6rem;
    border-radius: .8rem;
    display: flex;
    gap: 1rem;
}

.cart-item img {
    width: 7rem;
    border-radius: .8rem;
}

.cart-item-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-info h3 {
    font-size: 1.4rem;
    font-weight: bold;
}

.cart-item-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}

.cart-item-actions .price {
    gap: .4rem;
}

.cart-item-actions a {
    text-decoration: none;
    color: var(--main);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.4rem;
}

.main-view {
    margin-top: -5.5rem;
    height: 50%;
}

.vidyard-player-container {
    width: 90% !important;
}

.main-view img {
    width: 100%;
    height: 100%;
}

.view-actions {
    position: absolute;
    bottom: 12rem;
    right: .5rem;
    background-color: rgba(0, 0, 0, 0.616);
    padding: .8rem;
    border-radius: .8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .8rem;
}

.view-actions img {
    width: 2.5rem;
}

.main-user, .main-payment {
    margin-block: 4rem 8rem;
    padding: .8rem;
}

.main-user header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .8rem;
}

.main-user img {
    width: 14rem;
    border-radius: 100%;
}

.user-info {
    margin-top: .8rem;
}

.user-info ul {
    border: .2rem solid var(--dark-700);
    border-radius: .8rem;
    padding: .8rem;
    list-style: none;
    color: var(--gray-200);
    font-weight: bold;
}

.user-info ul li {
    padding-block: .8rem;
}

.user-info ul li:not(li:last-child) {
    border-bottom: .2rem solid var(--dark-700);
}

.main-user .btn {
    color: var(--white);
    margin: .8rem .8rem;
    background: var(--linear-bg);
}

.payment-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.payment-info h2 {
    font-weight: bold;
    font-size: 1.4rem;
    text-transform: uppercase;
    text-align: center;
}

.payment-info img {
    width: 100%;
    border-radius: .8rem;
}

.payment-info span, p {
    font-weight: bold;
    color: var(--gray-200);
}

.payment-info textarea {
    background-color: var(--dark-700);
    width: 100%;
    color: var(--gray-200);
    resize: none;
    border-radius: .8rem;
    padding: .4rem;
}

.payment-info .btn {
    background: var(--linear-bg);
    color: var(--white);
    width: 100%;
    text-transform: uppercase;
}

.vidyard-player-container {
    background-color: black;
}

.error {
    text-align: center;
}

.film-info  .content_language {
    background: var(--linear-bg);
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    padding: .4rem;
    border-radius: .4rem;
}

.vip-packages {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.vip-packages .vip-package {
    background-color: #0f111db8;
    width: 100%;
    max-width: 40rem;
    padding: 1.2rem;
    border-radius: .8rem;
    display: flex;
    flex-direction: column;

    gap: .8rem;
}

.vip-packages .vip-package-image {
    width: 100%;
    height: 15rem;
    object-fit: cover;
    border-radius: .8rem;
    margin-bottom: .8rem;
}

.vip-packages .vip-package h3 {
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

.vip-packages .vip-package p {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--gray-200);
    text-align: center;
}

.vip-packages .vip-package .price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    font-size: 1.6rem;
    font-weight: bold;
}

.vip-packages .vip-package .btn {
    background: var(--linear-bg);
    color: var(--white);
    width: 100%;
    text-transform: uppercase;
    padding: .8rem;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: .4rem;
}

.vip-packages .vip-package .btn img {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 0;
    border: 1px solid transparent;
    overflow: unset;
    object-fit: contain;
    transform: none;
}

.vip-packages .vip-status-text {
    font-weight: 500;
    font-size: 1.4rem;
    margin-top: 1.2rem;
    background-color: #4c6ba575;
    padding: 1rem;
    border-radius: .8rem;
    border: .2rem dashed #5273b1;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin-bottom: 1.6rem;
}