* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #111;
    color: white;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 20px 50px;
    background: linear-gradient(to bottom, #000000cc, transparent);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: red;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

nav a:hover {
    color: red;
}

.banner {
    height: 90vh;
    background: linear-gradient(to right, #000000cc, #000000cc),
                url('https://images.unsplash.com/photo-1536440136628-849c177e76a1') center/cover;
    display: flex;
    align-items: center;
    padding-left: 50px;
}

.banner-content {
    max-width: 500px;
}

.banner h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.banner p {
    margin-bottom: 20px;
}

.buttons button {
    padding: 10px 20px;
    border: none;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

.btn-play {
    background: white;
    color: black;
}

.btn-info {
    background: gray;
    color: white;
}

.row {
    margin-top: 40px;
    padding: 0 50px;
}

.row h2 {
    margin-bottom: 15px;
}

.row-posters {
    display: flex;
    overflow-x: auto;
    gap: 10px;
}

.row-posters img {
    width: 200px;
    border-radius: 5px;
    transition: transform 0.3s;
}

.row-posters img:hover {
    transform: scale(1.1);
}

/* Responsivo */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 32px;
    }

    .banner {
        padding-left: 20px;
    }

    .row {
        padding: 0 20px;
    }
}
