body {
    background-color: #0b0f14;
    color: white;
}

/* HEADER */
header {
    display: flex;
    flex-flow: column nowrap;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    gap: 32px;
    padding: 20px 50px;
    background-color: #0b0f14;
    z-index: 10;
}

.header-logo-menu {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

header .tr-is-logo {
    font-size: 2vh;
    font-weight: 500;
}

header nav {
    position: absolute;
    top: 100%;
    background-color: #0b0f14;
    width: 100%;
    padding: 20px 50px;
    left: 0;
    display: none;
    flex-flow: column;
    gap: 32px;
    transition: all .3s ease;
}

header nav.ativo {
    display: flex;
}

.menu-hamburguer {
    width: 28px;
    height: 22px;
    padding: 5px;
    box-sizing: content-box;
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    cursor: pointer;
}

.menu-hamburguer span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;

    transition: .4s ease;
}

.menu-hamburguer:hover, .menu-hamburguer.ativo {
    box-shadow: 0px 0px 3px rgba(255, 255, 255, 0.122);
}

.menu-hamburguer.ativo span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-hamburguer.ativo span:nth-child(2) {
    opacity: 0;
}

.menu-hamburguer.ativo span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

header nav a, header nav button {
    color: white;
    text-decoration: none;
    font-size: 1.44vh;
    font-weight: 400;
    width: fit-content;
    transition: all .2s ease;
    background: none;
    padding: 0;
    margin: 0;
    border: none;
    cursor: pointer;
}

header nav a:hover, header nav button:hover {
    transform: scale(1.05);
    color: rgba(255, 255, 255, 0.755);
}
 /* banner */

.banner {
    position: relative;
    height: 100vh;
    z-index: 0;
}

.banner::after {
    content: '';
    position: absolute;
    background-image:
        radial-gradient(circle at 50% 40%, #09101100 0%, #091011d9 100%),
        linear-gradient(to bottom, #09101100 76%, #091011 94%);
    z-index: -3;
    width: 100%;
    height: 100%;
}

.banner-background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -4;
}

.banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.banner-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -70%);
    width: clamp(320px, 50vw, 1200px);
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 32px;
}

.temporada-title {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.tag {
    background: rgba(0, 0, 0, 0.758);
    color: white;
    padding: 1.5vh 2vh;
    font-size: 1.7vh;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

.logo-rm {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;   
    margin-bottom: 20px;
}

.logo-rm img {
    width: 100%;
    height: auto;
}

#max-watch-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vh;
}

#max-watch-btn img {
    filter: brightness(0) invert(90%);
    height: 5vh;
}

#max-watch-btn a {
    color: var(--yellow-emphasis);
    background-color: var(--red-btn);
    padding: 2vh 2.5vh;
    font-size: 2vh;
    border-radius: 50px;
    text-decoration: none;
    transition: all ease 0.5s;
}

#max-watch-btn a:hover {
    font-weight: 500;
    background-color: rgb(255, 37, 37);
    transform: scale(1.05);
    box-shadow: 0px 3px 3px rgba(255, 255, 0, 0.2);
}

@media only screen and (min-width:1024px) {
    header {
        flex-flow: row nowrap;
        justify-content: space-between;
    }

    header nav {
        position: static;
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        padding: 0;
        width: auto;
    }

    .menu-hamburguer {
        display: none;
    }

    .banner-content {
        align-items: flex-start;
        justify-content: start;
        left: 0;
        padding-left: clamp(60px, 5vw, 160px);
        transform: translate(0, -70%);
    }
    
    .temporada-title {
        align-items: flex-start;
    }

    #max-watch-btn {
        flex-flow: row nowrap;
    }
}