* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000;
    color: white;
}

header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    width: 100%;
    z-index: 1000;
}

header {
    background: rgba(0,0,0,0.7);
}

.logo {
    color: red;
    font-size: 32px;
    font-weight: bold;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

.banner {
    height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 60px;
}

.banner {
    background-image:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url("./images/netflix_fundo.jpeg");
}

.banner-content h2 {
    font-size: 48px;
}

.banner-content p {
    margin-top: 10px;
    font-size: 20px;
}

.banner-content button {
    margin-top: 20px;
    padding: 12px 15px;
    background: red;
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.catalogo {
    padding: 40px 60px;
    display: flex;
    position: relative;
}

.catalogo h2 {
    position: relative;
    z-index: 20;
}

.filmes {
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    gap: 60px;
}

.poster {
    margin-top: 40px;
    width: 200px;
    transition: transform 0.3s ease;
    position: relative;
}

.poster img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 3px;
    transition: transform 0.5s ease;
}

.poster:hover {
    transform: scale(1.3);
    z-index: 10;
}

.numero {
    position: absolute;
    bottom: -50px;
    right: -50px;
    font-size: 150px;
    font-weight: bold;
    color: white;
    -webkit-text-stroke: 3px red;
    z-index: 5;
    transform: rotate(8deg);
}

.poster:hover .numero {
    transform: scale(1.2) rotate(8deg);
}

.numero1 {
    position: absolute;
    bottom: -50px;
    right: -50px;
    font-size: 120px;
    font-weight: bold;
    color: white;
    -webkit-text-stroke: 3px red;
    z-index: 5;
    transform: rotate(8deg);
}

.poster:hover .numero1 {
    transform: scale(1.2) rotate(8deg);
}

.numero2 {
    position: absolute;
    bottom: -40px;
    right: -40px;
    font-size: 100px;
    font-weight: bold;
    color: white;
    -webkit-text-stroke: 3px red;
    z-index: 5;
    transform: rotate(8deg);
}

.poster:hover .numero2 {
    transform: scale(1.2) rotate(8deg);
}

footer {
    color: white;
    text-decoration: none;
    text-align: center;
    margin-bottom: 10px;
    font-size: 12px;
}