#netflix-section {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    /* 👈 Inverte os lados */
    align-items: stretch;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

#netflix-banner {
    position: fixed;
    /* fixa na tela */
    top: 0;
    left: 0;
    width: 100vw;
    /* largura total da viewport */
    height: 100vh;
    /* altura total da viewport */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    z-index: -1;
    /* para ficar atrás do conteúdo */
}

#netflix-carousel {
    position: relative;
    z-index: 10;
    /* para ficar acima do banner */
    margin-top: 100vh;
    /* para ficar abaixo do banner, ajuste conforme necessário */
    padding: 20px;
    display: flex;
    overflow-x: auto;
}

#netflix-carousel::-webkit-scrollbar {
    display: none;
}

#netflix-carousel .card {
    min-width: clamp(100px, 20vw, 220px);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

#netflix-carousel .card:hover {
    transform: scale(1.05);
}

#scroll-left,
#scroll-right {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    /* Fundo preto semitransparente */
    border: none;
    color: white;
    font-size: clamp(18px, 2vw, 28px);
    padding: clamp(8px, 1.5vw, 14px);
    cursor: pointer;
    z-index: 20;
    border-radius: 50%;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    transition: background 0.3s ease;
}

#scroll-left:hover,
#scroll-right:hover {
    background: rgba(0, 0, 0, 0.8);
    /* Fundo mais escuro ao passar o mouse */
}

#scroll-left {
    left: 12px;
}

#scroll-right {
    left: 70px;
    /* <-- aqui */
}


#hbomax-section {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    /* 👈 Inverte os lados */
    align-items: stretch;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

#hbomax-banner {
    position: fixed;
    /* fixa na tela */
    top: 0;
    left: 0;
    width: 100vw;
    /* largura total da viewport */
    height: 100vh;
    /* altura total da viewport */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    z-index: -1;
    /* para ficar atrás do conteúdo */
}

#hbomax-carousel {
    position: relative;
    z-index: 10;
    /* para ficar acima do banner */
    margin-top: 100vh;
    /* para ficar abaixo do banner, ajuste conforme necessário */
    padding: 20px;
    display: flex;
    overflow-x: auto;
}

#hbomax-carousel::-webkit-scrollbar {
    display: none;
}

#hbomax-carousel .card {
    min-width: clamp(100px, 20vw, 220px);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

#hbomax-carousel .card:hover {
    transform: scale(1.05);
}

#scroll-left,
#scroll-right {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    /* Fundo preto semitransparente */
    border: none;
    color: white;
    font-size: clamp(18px, 2vw, 28px);
    padding: clamp(8px, 1.5vw, 14px);
    cursor: pointer;
    z-index: 20;
    border-radius: 50%;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    transition: background 0.3s ease;
}

#scroll-left:hover,
#scroll-right:hover {
    background: rgba(0, 0, 0, 0.8);
    /* Fundo mais escuro ao passar o mouse */
}

#scroll-left {
    left: 12px;
}

#scroll-right {
    left: 70px;
    /* <-- aqui */
}


#disney-section {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    /* 👈 Inverte os lados */
    align-items: stretch;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

#disney-banner {
    position: fixed;
    /* fixa na tela */
    top: 0;
    left: 0;
    width: 100vw;
    /* largura total da viewport */
    height: 100vh;
    /* altura total da viewport */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    z-index: -1;
    /* para ficar atrás do conteúdo */
}

#disney-carousel {
    position: relative;
    z-index: 10;
    /* para ficar acima do banner */
    margin-top: 100vh;
    /* para ficar abaixo do banner, ajuste conforme necessário */
    padding: 20px;
    display: flex;
    overflow-x: auto;
}

#disney-carousel::-webkit-scrollbar {
    display: none;
}

#disney-carousel .card {
    min-width: clamp(100px, 20vw, 220px);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

#disney-carousel .card:hover {
    transform: scale(1.05);
}

#scroll-left,
#scroll-right {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    /* Fundo preto semitransparente */
    border: none;
    color: white;
    font-size: clamp(18px, 2vw, 28px);
    padding: clamp(8px, 1.5vw, 14px);
    cursor: pointer;
    z-index: 20;
    border-radius: 50%;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    transition: background 0.3s ease;
}


#primevideo-section {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    /* 👈 Inverte os lados */
    align-items: stretch;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

#primevideo-banner {
    position: fixed;
    /* fixa na tela */
    top: 0;
    left: 0;
    width: 100vw;
    /* largura total da viewport */
    height: 100vh;
    /* altura total da viewport */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    z-index: -1;
    /* para ficar atrás do conteúdo */
}

#primevideo-carousel {
    position: relative;
    z-index: 10;
    /* para ficar acima do banner */
    margin-top: 100vh;
    /* para ficar abaixo do banner, ajuste conforme necessário */
    padding: 20px;
    display: flex;
    overflow-x: auto;
}

#primevideo-carousel::-webkit-scrollbar {
    display: none;
}

#primevideo-carousel .card {
    min-width: clamp(100px, 20vw, 220px);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

#primevideo-carousel .card:hover {
    transform: scale(1.05);
}

#paramount-section {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    /* 👈 Inverte os lados */
    align-items: stretch;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

#paramount-banner {
    position: fixed;
    /* fixa na tela */
    top: 0;
    left: 0;
    width: 100vw;
    /* largura total da viewport */
    height: 100vh;
    /* altura total da viewport */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    z-index: -1;
    /* para ficar atrás do conteúdo */
}

#paramount-carousel {
    position: relative;
    z-index: 10;
    /* para ficar acima do banner */
    margin-top: 100vh;
    /* para ficar abaixo do banner, ajuste conforme necessário */
    padding: 20px;
    display: flex;
    overflow-x: auto;
}

#paramount-carousel::-webkit-scrollbar {
    display: none;
}

#paramount-carousel .card {
    min-width: clamp(100px, 20vw, 220px);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

#paramount-carousel .card:hover {
    transform: scale(1.05);
}

