* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #141414;
    color: #ffffff;
    line-height: 1.5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cabeçalho */
.landing-header {
    position: absolute;
    width: 100%;
    top: 0;
    padding: 20px 0;
    z-index: 100;
}

.landing-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #E50914;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.btn {
    padding: 8px 20px;
    border-radius: 3px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-entrar {
    background-color: #E50914;
    color: #ffffff;
}

.btn-entrar:hover {
    background-color: #b20710;
}

/* Seção Hero - CENTRALIZADA */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../assets/images/background.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.hero-content h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    color: #e5e5e5;
}

.btn-comecar {
    background-color: #E50914;
    color: #ffffff;
    padding: 12px 30px;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.btn-comecar:hover {
    background-color: #b20710;
}

/* Seção Filmes */
.secao-filmes {
    padding: 50px 0;
}

.titulo-secao {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.carrossel-filmes {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.carrossel-filmes::-webkit-scrollbar {
    display: none;
}

.card-filme {
    min-width: 180px;
    height: 250px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.card-filme:hover {
    transform: scale(1.08);
    z-index: 10;
}

.card-filme img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 20px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-filme:hover .card-hover {
    opacity: 1;
}

.btn-card {
    padding: 6px 10px;
    border: none;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
}

.btn-card:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Recursos */
.recursos {
    padding: 40px 0;
    border-top: 8px solid #222;
    border-bottom: 8px solid #222;
}

.recurso-item {
    margin: 20px 0;
}

/* FAQ */
.faq {
    padding: 50px 0;
}

.faq-pergunta {
    width: 100%;
    background-color: #303030;
    color: white;
    border: none;
    padding: 15px 20px;
    text-align: left;
    font-size: 1.1rem;
    margin-bottom: 2px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-pergunta:hover {
    background-color: #404040;
}

.faq-resposta {
    background-color: #303030;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-bottom: 2px;
}

.faq-item.active .faq-resposta {
    max-height: 300px;
    padding: 15px 20px;
}

/* Rodapé */
.rodape {
    padding: 40px 0;
    color: #757575;
    border-top: 8px solid #222;
    text-align: center;
}

.aviso-demo {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

/* RESPONSIVIDADE COMPLETA */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .logo {
        font-size: 1.8rem;
    }

    .card-filme {
        min-width: 140px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 7px 15px;
        font-size: 0.9rem;
    }

    .card-filme {
        min-width: 120px;
        height: 170px;
    }
}