/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e5e5e5;
    background-color: #141414;
}

/* Header */
header {
    background-color: #141414;
    color: white;
    padding: 1rem 2rem;
    border-bottom: 1px solid #333;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 2rem;
    color: #e50914; /* Netflix Red */
}

.cta-button, .hero-button {
    background-color: #e50914; /* Netflix Red */
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover, .hero-button:hover {
    background-color: #b00610;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f') no-repeat center center/cover;
    background-blend-mode: multiply;
    background-color: rgba(20,20,20,0.7);
    color: #fff;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e50914;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    background-color: #1c1c1c;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #e50914;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-grid article {
    background-color: #222;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s, background-color 0.3s;
}

.feature-grid article:hover {
    transform: translateY(-10px);
    background-color: #333;
}

.feature-grid h3 {
    margin-bottom: 1rem;
    color: #e50914;
}

/* About & CTA Sections */
.about, .cta {
    padding: 4rem 2rem;
    text-align: center;
}

.about h2, .cta h2 {
    color: #e50914;
}

/* Footer */
footer {
    background-color: #141414;
    color: #888;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #333;
}