* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.4;
}

/* Header */
.header {
    position: relative;
    height: 100vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 56px;
}

.logo {
    width: 148px;
    height: 40px;
    fill: #e50914;
}

.nav-buttons {
    display: flex;
    gap: 24px;
}

.language-selector {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #aaa;
    color: #fff;
    padding: 7px 15px;
    border-radius: 2px;
    font-size: 16px;
}

.signin-btn {
    background: #e50914;
    color: #fff;
    border: none;
    padding: 7px 17px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

/* Hero */
.hero {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.email-form {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.email-input {
    padding: 24px 16px;
    width: 450px;
    font-size: 16px;
    border: 1px solid #8c8c8c;
    border-radius: 2px;
    background: rgba(22, 22, 22, 0.7);
    color: #fff;
}

.get-started-btn {
    background: #e50914;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Sections */
.section {
    padding: 70px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.section-content {
    flex: 1;
    padding: 0 3rem;
}

.section h2 {
    font-size: 30px;
    margin-bottom: 16px;
}

.section p {
    font-size: 15px;
}

.section-image {
    flex: 1;
    position: relative;
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* FAQ */
.faq {
    border-top: 2px solid #222;
    padding: 70px 45px;
    text-align: center;
}

.faq h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 815px;
    margin: 0 auto 50px;
}

.faq-item {
    margin-bottom: 8px;
    text-align: left;
}

.faq-question {
    background: #303030;
    color: #fff;
    padding: 20px 30px;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #000;
}

.faq-answer {
    background: #303030;
    color: #fff;
    padding: 0 30px;
    font-size: 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out;
}

.faq-answer.open {
    padding: 30px;
    max-height: 1200px;
    transition: max-height 0.25s ease-in;
}

/* Footer */
.footer {
    border-top: 2px solid #222;
    padding: 70px 45px;
    color: #757575;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer p {
    margin-bottom: 30px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #757575;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-language {
    margin-top: 20px;
}

/* Responsivo */
@media (max-width: 950px) {
    .section {
        flex-direction: column;
        text-align: center;
    }
    
    .section-content, .section-image {
        padding: 0;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .email-form {
        flex-direction: column;
        align-items: center;
    }
    
    .email-input {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 550px) {
    .navbar {
        padding: 24px 20px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero h2, .hero p {
        font-size: 1.125rem;
    }
    
    .section h2 {
        font-size: 1.625rem;
    }
    
    .section p {
        font-size: 1.125rem;
    }
    
    .faq h2 {
        font-size: 1.625rem;
    }
    
    .faq-question, .faq-answer {
        font-size: 1.125rem;
    }
}