* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

body {
    background-color: rgb(26, 29, 41);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.back-button {
    position: absolute;
    top: 15px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 10;
}

.media-name {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 0.8rem 0.6rem;
    border-radius: 5px;
}

.media-name h1 {
    color: #fff;
    font-size: 0.8rem;
}

.button-secondary {
    background: #40424a;
    color: #f9f9f9;
    border: 0;
    border-radius: 0.25rem;
    padding: 1rem 2rem;
    transition: all 0.2s ease-in-out 0s;
    font-size: 0.8rem;
    cursor: pointer;
}

.button-secondary:hover {
    background: #46474e;
}

.button-primary {
    background: #0072d2;
    color: #f9f9f9;
    border: 0;
    border-radius: 0.25rem;
    padding: 0px 24px;
    height: 48px;
    overflow: hidden;
    text-align: center;
    transition: all 0.2s ease-in-out 0s;
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.button-primary:hover {
    background: #0085f5;
}

.input-default {
    backdrop-filter: blur(50px);
    background-color: rgb(49, 52, 62);
    border: 1px solid transparent;
    border-radius: 4px;
    height: 48px;
    margin: 0px;
    outline: none;
    padding: 7px 12px;
    transition: all 0.1s ease 0s;
    width: 100%;
    color: #fff;
}

.search-container {
    /*border: 1px solid red;*/
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.search-container form {
    display: flex;
    align-items: center;
}

.search-container form input {
    letter-spacing: .11px;
    line-height: 1.2;
    background: rgb(75, 78, 90);
    color: rgb(168, 169, 173);
    outline: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
    text-overflow: ellipsis;
    border: 0;
    padding: 1rem 1rem;
    border-radius: 5px;
}

.search-container form button {
    padding: 0 1rem;
    height: 100%;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
}

/** HEADER **/

.header-container {
    z-index: 1;
    display: flex;
    padding: 15px 36px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.03) 15%, rgba(0, 0, 0, 0.125) 30%, rgba(0, 0, 0, 0.25) 46%, rgba(0, 0, 0, 0.4) 61%, rgba(0, 0, 0, 0.553) 75%, rgba(0, 0, 0, 0.694) 88%, rgba(0, 0, 0, 0.8));
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #0e0b14;
}

#helperHeader {
    padding-bottom: 90px;
    display: none;
}

.header-nav-container {
    flex-basis: 70%;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav-container ul {
    list-style: none;
    display: flex;
    flex: 1;
    /*justify-content: space-around;*/
    gap: 3rem;
}

.header-nav-container ul li {
    color: #fff;
    font-weight: 400;
}

.header-nav-container ul li a {
    color: #fff;
}

.header-nav-container ul li a:hover {
    border-bottom: 1.5px solid #fff;
    padding-bottom: 0.2rem;
}

.header-nav-container ul li span {
    letter-spacing: 1.42px;
    border-radius: 1px;
    padding-bottom: 0.2rem;
    transition: all 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
    cursor: pointer;
    margin-left: 4px;
}

.header-profile {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.7rem;
    position: relative;
}

.header-profile img {
    border-radius: 50%;
    width: 51px;
    height: 48px;
}

.header-profile-details-container {
    position: absolute;
    top: 110%;
    background: #141414;
    padding: 1rem 1rem;
    display: none;
    z-index: 1;
}

.header-add-profile-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-profile-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2B2B2B;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.header-profile-details-container ul {
    list-style: none;
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.header-profile-details-container ul li a {
    color: #ACACAC;
    font-weight: 300;
    font-size: 0.9rem;
}

.header-profile span {
    color: #fff;
    font-size: 0.938rem;
    font-weight: 300;
}


/** BANNER **/

.banner-section {
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.banner-content-wrapper {
    overflow: hidden;
    max-width: 1300px;
    margin: 0 auto;
}

.banner-content {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.banner-content img {
    width: 100%;
    max-width: 100%;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.1s ease 0s;
    border: 3px solid transparent;
}

.banner-content img:hover {
    border: 3px solid #e6e6e6;
}

.controls {
    display: flex;
    justify-content: center;
    margin-top: 1em;
    gap: 0.7rem;
}

.controls input[type="radio"] {
    display: none;
}

.controls .dot {
    width: 8px;
    height: 8px;
    background-color: #969EAB;
    border-radius: 50%;
    cursor: pointer;
}

.controls input[type="radio"]:checked + .dot {
    background-color: #fff;
}

/** CATEGORIES **/

.categories-section {
    margin-top: 2rem;
    padding: 0 20px;
}

.categories-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.categories-section header {
    max-width: 1300px;
    margin: 0 auto;
}

.categories-section header h1 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.categories-content article {
    background: linear-gradient(rgb(48, 50, 62), rgb(30, 31, 42));
    flex-basis: 19%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.1s ease 0s;
    border: 2px solid transparent;
}

.categories-content article a {
    color: #fff;
    font-size: 1.3rem;
    padding: 4rem 0;
    font-weight: bold;
    text-align: center;
}

.categories-content article:hover {
    border: 2px solid #e6e6e6;
}


/** MEDIA **/

.media-section {
    margin-top: 2rem;
    padding: 0 20px;
}

.media-section header {
    max-width: 1300px;
    margin: 0 auto;
    color: #f9f9f9;
    font-weight: bold;
    font-size: 1.25rem;
}

.media-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 1.2rem;
    overflow-x: scroll;
    padding: 20px 0;
}

.media-content::-webkit-scrollbar {
    height: 8px;
}

.media-content::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.media-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.media-content > div {
    cursor: pointer;
    transition: all 0.1s ease 0s;
    border: 2px solid transparent;
    border-radius: 5px;
}

.media-content > div:hover {
    border: 2px solid #e6e6e6;
}

.media-content > div img {
    border-radius: 5px;
    height: 100%;
}

/** FOOTER **/

.footer-section {
    background: #0F0B14;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem 0;
    margin-top: 3em;
}

.footer-section ul li {
    color: #E1E1E2;
    cursor: pointer;
}

.footer-section ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    font-weight: 300;
    font-size: 0.75rem;
    margin: 2rem 0;
}

.footer-section span {
    font-weight: 300;
    font-size: 0.75rem;
    color: #cacaca;
}

/** SELECT PROFILE **/

.profile-header {
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.profile-content {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.profile-section h1 {
    text-align: center;
    font-size: 2rem;
    letter-spacing: .11px;
    line-height: 1.2;
    color: #f9f9f9;
    padding-bottom: 1.5rem;
    font-weight: 400;
    margin-top: 3rem;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.profile a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.edit-profile-container {
    position: absolute;
    background: #fff;
    padding: 0.8rem;
    border-radius: 50%;
    bottom: 36px;
    right: 10px;
}

.profile img {
    height: 140px;
    border-radius: 50%;
}

.profile-add {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.add-cointainer:hover {
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
}


.profile span {
    color: #f9f9f9;
    font-size: 1.5rem;
    letter-spacing: .11px;
    line-height: 1.2;
}

.profile img {
    cursor: pointer;
}

.profile img:hover {
    border: 3px solid #fff;
    border-radius: 50%;
}

.add-cointainer {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #31333E;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-cointainer i {
    font-size: 3rem;
}

.profile-add span {
    color: #f9f9f9;
    font-size: 1.5rem;
    letter-spacing: .11px;
    line-height: 1.2;
}

.profile-add a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

/** NEW PROFILE **/

.form-section {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding-top: 3rem;
}

.form-section form {
    display: flex;
    justify-content: center;
    flex: 1;
    gap: 3rem;
}

.form-container {
    flex-basis: 25%;
}


.form-container h3 {
    font-size: 2rem;
    letter-spacing: .11px;
    line-height: 1.2;
    color: #f9f9f9;
    font-weight: 400;
}

.form-container {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.form-container label {
    color: rgb(249, 249, 249);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 1.25px;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.form-container button {
    margin-top: 1.7rem;
}

.form-image {
    display: flex;
    flex-direction: column;
}

.form-image input {
    margin-top: 1rem;
}

/** MEDIA **/

.section-vod {
    padding: 0 20px;
}

.vod-content {
    max-width: 1300px;
    margin: 0 auto;
}

.details-container {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.vod-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    gap: 1.5rem;
}

.vod-header h3 {
    font-size: 2.75rem;
    letter-spacing: .11px;
    line-height: 1.2;
    color: #f9f9f9;
    font-weight: 500;
}

.vod-header select {
    background-color: rgba(182, 182, 182, 0.2);
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    height: 36px;
    color: rgb(249, 249, 249);
    border: none;
    padding: 0 15px;
    outline: none;
    border-right: 15px solid transparent
}

.vod-header select option{
    background-color: #333;
    color: white;
}

.vod-container {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1%; /* Espaçamento entre os itens */
}

.vod {
    flex: 0 0 calc(20% - 1%);
    margin-bottom: 1%;
    transition: transform 0.3s ease;
}

.vod:hover {
    transform: scale(1.05);
}

.media-img, .media-img-home {
    position: relative;
    width: 100%;
}

.media-img img {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    border-radius: 5px;
    border: 3px solid transparent;
}

.background-img {
    width: 100%;
    aspect-ratio: 11 / 16;
    background-size: cover; /* Preenche o espaço mantendo a proporção da imagem */
    background-position: center; /* Centraliza a imagem no plano de fundo */
    border-radius: 5px; /* Opcional: bordas arredondadas */
    background-repeat: no-repeat;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.media-img-home .background-img {
    width: 245px;
}

.vod img:hover {
    border: 3px solid #fff;
}

@media (max-width: 768px) {
    .vod {
        flex: 0 0 calc(33.333% - 1%);
    }
}

@media (max-width: 480px) {
    .vod {
        flex: 0 0 calc(50% - 1%);
    }
}


.bg-shadow {
    background-image: radial-gradient(farthest-side at 73% 21%, transparent, rgb(26, 29, 41));
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
}

.description-container {
    margin-top: 4rem;
    padding: 0 4rem;
    flex-basis: 20%;
    width: 70%;
    margin-bottom: 1rem;
}

.description-container span {
    letter-spacing: -.1px;
    line-height: 1.6;
    color: #f9f9f9;
    font-size: 1.25rem;
    font-weight: 300;
}

.action-buttons {
    margin-top: 1rem;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.play-button {
    background: #f9f9f9;
    border: none;

    transition: all .2s ease-in-out;
    border-radius: 0.25rem;
    padding: 0 24px;
    height: 56px;
    cursor: pointer;
}

.play-button a {
    display: flex;
    align-items: center;
    color: #0e0b14;
}

.play-button:hover {
    background: #cecece;
}

.play-button i {
    font-size: 2.5rem;
}

.trailer-button {
    height: 56px;
    background: #00000099;
    border: 1px solid #f9f9f9;
    border-radius: 0.25rem;
    transition: all .2s ease-in-out;
    padding: 0 24px;
    cursor: pointer;
}

.trailer-button a {
    color: #f9f9f9;
}

.genre {
    padding: 0 4rem;
    font-size: 12px;
    letter-spacing: -.1px;
    line-height: 1.5;
    color: #f9f9f9;
}

.tabs-container {
    margin: 4rem 4rem 0 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    overflow: scroll;
}

.tabs-container button {
    border: 0;
    background: none;
    transition: all 350ms ease 0s;
    cursor: pointer;
    color: #f9f9f9;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.4;
    text-transform: uppercase;
    padding-bottom: 0.4rem;
}

.tabs-container button.active {
    border-bottom: 2px solid #fff;
}

.media-content-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 3rem;
    margin-top: 9rem;
}

.tab {
    margin: 2rem 4rem 0 4rem;
    padding-bottom: 2rem;
    display: flex;
    gap: 1rem;
    overflow-x: scroll;
}

.tab::-webkit-scrollbar {
    height: 8px;
}

.tab::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.tab::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.tab a img {
    width: 300px;
    height: 200px;
    transition: all 350ms ease 0s;
    border: 3px solid transparent;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.69) 0px 26px 30px -10px, rgba(0, 0, 0, 0.73) 0px 16px 10px -10px;
}

#suggestion.tab a img {
    width: 200px;
    height: 300px;
}

.tab a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tab a img:hover {
    border: 3px solid #fff;
}

.tab a span {
    font-size: 0.8rem;
    color: #fff;
}

.title {
    padding: 0 4rem;
    margin-top: 2rem;
}

.title h3 {
    color: #fff;
    font-size: 1.5rem;
}

/** CHANNEL **/

.channel {
    background-color: rgba(182, 182, 182, 0.2);
    flex: 0 0 calc(20% - 1%);
    margin-bottom: 1%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.69) 0px 26px 30px -10px, rgba(0, 0, 0, 0.73) 0px 16px 10px -10px;
    transition: all 350ms ease 0s;
    border: 3px solid transparent;
    flex-direction: column;
}

.channel span {
    text-align: center;
    margin-top: 1.3rem;
    color: #fff;
}

.channel:hover {
    border: 3px solid #fff;
}

@media (max-width: 768px) {
    .channel {
        flex: 0 0 calc(33.333% - 1%);
    }
}

@media (max-width: 480px) {
    .channel {
        flex: 0 0 calc(50% - 1%);
    }
}

@media(max-width: 965px) {
    .header-nav-container ul li span {
        display: none;
    }

    .header-nav-container ul li a i {
        font-size: 1.5rem;
    }
}

@media(max-width: 800px) {
    .categories-content {
        gap: 1.5rem;
    }

    .categories-content article {
        flex-basis: 48%;
    }
}

@media(max-width: 737px) {
    .search-container form {
        flex: 1;
    }

    .search-container form input {
        flex: 1;
    }

    .description-container {
        width: 100%;
    }
}

@media(max-width: 650px) {
    .header-nav-container ul li a i {
        font-size: 1rem;
    }
}

@media(max-width: 620px) {
    .categories-content article {
        flex-basis: 100%;
    }
}

@media(max-width: 550px) {
    .header-nav-container ul {
        gap: 1rem;
    }

    .header-nav-container>img {
        width: 100px;
    }

    .profile-header {
        gap: 1rem;
    }

    .button-secondary {
        width: 100%;
        text-align: center;
    }

    .form-section form {
        display: flex;
        flex-direction: column;
        padding: 25px;
        justify-content: center;
        align-content: center;
        align-items: center;
        text-align: center;
    }

    .form-image {
        justify-content: center;
        align-content: center;
        align-items: center;
        text-align: center;
    }
}