```css
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0f0f0f;
    color:#fff;
}

/* HEADER */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:80px;
    background:#111;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 40px;
    z-index:999;
    border-bottom:1px solid #222;
}

.logo h1{
    font-size:32px;
    font-weight:800;
}

.logo span{
    color:#ff4d4d;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:white;
    transition:.3s;
}

nav a:hover{
    color:#ff4d4d;
}

.header-right{
    display:flex;
    gap:10px;
}

.header-right input{
    padding:10px;
    border:none;
    border-radius:6px;
}

.header-right button{
    padding:10px 20px;
    border:none;
    border-radius:6px;
    cursor:pointer;
    background:#ff4d4d;
    color:white;
    font-weight:600;
}

/* BANNER */

.banner{
    margin-top:80px;
    height:600px;
    background:url('../img/banner.jpg');
    background-size:cover;
    background-position:center;
    position:relative;
}

.banner-overlay{
    width:100%;
    height:100%;
    background:linear-gradient(
        to right,
        rgba(0,0,0,.95),
        rgba(0,0,0,.55),
        rgba(0,0,0,.15)
    );
    display:flex;
    align-items:center;
}

.banner-content{
    max-width:700px;
    padding-left:70px;
}

.banner-content h2{
    font-size:60px;
    margin-bottom:20px;
}

.banner-content p{
    font-size:18px;
    line-height:1.7;
    margin-bottom:30px;
}

.buttons{
    display:flex;
    gap:15px;
}

.assistir{
    background:#ff4d4d;
    color:white;
    border:none;
    padding:15px 30px;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
}

.lista{
    background:#333;
    color:white;
    border:none;
    padding:15px 30px;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
}

/* CATEGORIAS */

.categoria{
    padding:50px;
}

.categoria h2{
    margin-bottom:25px;
}

.cards{
    display:flex;
    gap:20px;
    overflow-x:auto;
}

.card{
    min-width:260px;
    background:#181818;
    border-radius:12px;
    overflow:hidden;
    transition:.3s;
}

.card:hover{
    transform:scale(1.05);
}

.card img{
    width:100%;
    height:150px;
    object-fit:cover;
}

.card h3{
    padding:15px;
}

.card p{
    padding:0 15px 15px;
    color:#ccc;
}

/* PERSONAGENS */

.personagens{
    padding:50px;
}

.personagem-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.personagem{
    background:#181818;
    border-radius:12px;
    text-align:center;
    padding:20px;
}

.personagem img{
    width:150px;
    height:150px;
    object-fit:cover;
    border-radius:50%;
    margin-bottom:15px;
}

.personagem h3{
    margin-bottom:10px;
}

/* FOOTER */

footer{
    background:#111;
    margin-top:60px;
}

.footer{
    padding:40px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.footer a{
    color:#ccc;
    text-decoration:none;
}

.footer a:hover{
    color:#ff4d4d;
}
```

```
```
