* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body, html {
    width: 100%;
    height: 100%;
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url("../img/banner.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Escurecimento para melhor leitura */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    top: 0;
    left: 0;
}

/* Conteúdo central */
.content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.content h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 30px;
}

/* Botão */
#cta {
    background-color: #e50914;
    color: #fff;
    border: none;
    padding: 18px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

#cta:hover {
    background-color: #ff1e27;
    transform: scale(1.05);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2.5rem;
    }

    #cta {
        font-size: 1rem;
        padding: 15px 20px;
    }
}
