/* Josué 1.9: “Não fui eu que lhe ordenei? Seja forte e corajoso! Não te apavores nem desanimes, pois o Senhor, o Teu Deus, estará contigo por onde quer que andares.”*/


@import url('global.css');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');





.header {

    height: 384px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding: 120px 0px 20px 0px;
    background: linear-gradient(50deg, var(--color-tertiary), #00000085, #961184);
    background-size: 400% 400%;
    box-shadow: inset 0px -23px 30px 0px var(--color-primary);

    animation: gradient 8s ease-in-out infinite alternate;
}



.header__nav {
    width: 100%;
    height: 60px;
    background-color: rgba(130, 47, 163, 0.082);
    padding: 0px 8vw;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
    position: absolute;
    position: fixed;
    top: 0;
    z-index: 1;
}

.header__nav__opcoes {
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
}


.header-button {
    width: 200px;
    height: 50px;
    padding: 14px 0px 0px 0px;
}







.assinaturas {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0px 32px;
}



.assinaturas__card {
    width: 80vw;
    max-width: 336px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    background: var(--color-card);
    transition: ease 0.8s;
    overflow: hidden;

}


.assinaturas__card__header {
    width: 95%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    border: none;
    cursor: pointer;

}

.assinaturas__card__body {
    opacity: 0;
    height: 0px;
    transition: ease-in-out 0.6s;
}


.assinaturas__card__body.active {
    width: 95%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    margin: 20px 0px 70px 0px;
    opacity: 1;
    transition: ease-in-out 0.6s;

}


.assinaturas__card:has(.active) .assinaturas__card__ceta {
    transform: rotate(90deg);
    transition: ease-in-out 0.6s;
}








.filmes {
    margin-top: 50px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}


.filmes__title{
    margin: 20px 0px 10px 0px;
}

.filmes__catalogo {

    width: 100vw;
    height: 470px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    padding: 0px 40px;
    gap: 32px;
    overflow: scroll;
}


.filmes__card {
    border-radius: 10px;
    height: 420px;
}

.filmes__card__img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: ease 2s;
}





.footer__p {
    width: 70%;
    max-width: 500px;
    margin: 0 auto;
    font-size: 10px;
    margin-top: 12px;
    opacity: 32%;
}


footer::after {
    content: "";
    width: 100%;
    height: 16px;
    display: block;
    margin-top: 10px;
}




/* - - - - - - HOVERS - - - - - - -*/




.assinaturas__card:hover {
    cursor: pointer;
    transform: scale(1.1);
    transform: rotate(-3deg);
    transition: ease 0.8s;
    perspective: 4000px;
    transform-style: preserve-3d;
    filter: drop-shadow(0px 0px 8px #cb21ff6b);


}


.filmes__card:nth-child(1):hover {
    cursor: pointer;
    transform: scale(1.08);
    background-image: url(img/hbo-troca.svg);
    background-repeat: no-repeat;
    outline: 2px solid #7f52bd;
    border-radius: 10px;
    transition: ease 1s;
}


.filmes__card:nth-child(2):hover {
    cursor: pointer;
    transform: scale(1.08);
    background-image: url(img/DC-troca.svg);
    background-repeat: no-repeat;
    outline: 2px solid #7f52bd;
    border-radius: 10px;
    transition: ease 1s;
}


.filmes__card:nth-child(3):hover {
    cursor: pointer;
    transform: scale(1.08);
    background-image: url(img/CN-troca.svg);
    background-repeat: no-repeat;
    outline: 2px solid #7f52bd;
    border-radius: 10px;
    transition: ease 1s;
}



.filmes__card:nth-child(4):hover {
    cursor: pointer;
    transform: scale(1.08);
    background-image: url(img/hbo.svg);
    background-repeat: no-repeat;
    outline: 2px solid #7f52bd;
    border-radius: 10px;
    transition: ease 1s;
}

.filmes__card:nth-child(5):hover {
    cursor: pointer;
    transform: scale(1.08);
    background-image: url(img/DC.svg);
    background-repeat: no-repeat;
    outline: 2px solid #7f52bd;
    border-radius: 10px;
    transition: ease 1s;
}

.filmes__card:nth-child(6):hover {
    cursor: pointer;
    transform: scale(1.08);
    background-image: url(img/CN.svg);
    background-repeat: no-repeat;
    outline: 2px solid #7f52bd;
    border-radius: 10px;
    transition: ease 1s;
}




























.filmes__card:hover .filmes__card__img {
    opacity: 0;
}


/* - - - - - @MEDIAS - - - - - -*/