/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Estilos do corpo */
body {
    line-height: 1.6;
    background-color: #f4f4f4;
    padding-top: 45px;
}


/* Navbar */
header {
    background-color: #333;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a:not(.btn) {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.nav-links a:not(.btn):hover {
    color: #ffd700;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
}

/* Seção de Apresentação */
.hero {
    background-image: url('https://wallpapers.com/images/high/4k-football-allianz-arena-74bka911gzqrgx4g.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.6); /* Fundo semi-transparente para contraste */
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content h5{
    font-size: 20px;
}

.btn {
    padding: 15px 25px;
    background-color: #ffd700;
    border-radius: 20px;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #ffa500;
    color: #fff;
}

/* Seção Pacotes de Canais */
.pacotes-canais {
    padding: 50px 20px;
    background-color: #696969;
    text-align: center;
}

.pacotes-canais h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.pacotes-canais p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ffffff;
}

.pacotes-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pacote-canais img {
    margin: 5px;
}

.pacote-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pacote-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.pacote-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.pacote-canais {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.pacote-canais img {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    transition: transform 0.3s;
}

.pacote-canais img:hover {
    transform: scale(1.1);
}

.pacote-card p {
    font-size: 16px;
    color: #666;
}

/* Responsividade para Pacotes de Canais */
@media (max-width: 768px) {
    .pacotes-container {
        flex-direction: column;
        align-items: center;
    }

    .pacote-card {
        width: 90%;
        margin: 10px auto;
    }

    .pacote-canais {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        justify-items: center;
    }

    .pacote-canais img {
        width: 50px;
        height: 50px;
        margin: 5px;
    }

}

@media (max-width: 480px) {
    .pacotes-canais h2 {
        font-size: 28px;
    }

    .pacote-card h3 {
        font-size: 20px;
    }

    .pacote-canais img {
        width: 40px;
        height: 40px;
        margin: 5px;
    }

    .pacote-card p {
        font-size: 14px;
    }
}

/* Seção Principais Filmes */
.principais-filmes {
    background-image: url('https://www.oficinadanet.com.br/media/post/59175/1200/todos-os-filmes-que-vao-lancar-em-2025.jpg'); /* Insira o link da imagem desejada */
    background-size: cover;
    margin-top: 30px;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.filmes-overlay {
    background-color: rgba(0, 0, 0, 0.6); /* Fundo semi-transparente para contraste */
    padding: 40px 20px;
    width: 100%;
}

.principais-filmes h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.principais-filmes p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsividade para Principais Filmes */
@media (max-width: 768px) {
    .principais-filmes {
        height: 300px;
    }

    .principais-filmes h2 {
        font-size: 28px;
    }

    .principais-filmes p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .principais-filmes {
        height: 250px;
    }

    .principais-filmes h2 {
        font-size: 24px;
    }

    .principais-filmes p {
        font-size: 14px;
    }
}


/* Seção Teste Grátis */
.teste-gratis {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.teste-gratis h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.teste-gratis p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Formulário de Teste Grátis */
.teste-gratis form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.teste-gratis label {
    font-size: 18px;
    margin-bottom: 10px;
}

.teste-gratis input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 100px;
}

.teste-gratis button {
    padding: 10px 20px;
    background-color: #ffd700;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
}

.teste-gratis button:hover {
    background-color: #ffa500;
    color: #fff;
}

/* Seção de Planos */
.plans {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.plans h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.plans p{
    margin-bottom: 25px;
}

.plans-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.plan-card {
    background-color: #636363;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.plan-icon {
    font-size: 40px;
    color: #ffd700;
    margin-bottom: 10px;
}

.plan-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffffff;
}

.plan-card p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.plan-card ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.plan-card ul li {
    font-size: 16px;
    color: #fffbfb;
    margin-bottom: 10px;
}

.plan-card a.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffd700;
    border-radius: 20px;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.plan-card a.btn:hover {
    background-color: #ffa500;
    color: #fff;
}

.destaque-dispositivos {
    background-color: #4b4b4b;
    color: #ffffff;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}


/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Estilos Responsivos */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        position: absolute;
        background-color: #333;
        top: 56px;
        width: 100%;
        right: 0;
        min-height: 220px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .plan-card {
        width: 90%;
        margin: 10px auto;
    }
}

/* Seção de Demonstração do Vídeo */
.demo-video {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

.demo-video .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Container de vídeo corrigido */
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.video-container video {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    display: block;
}

.demo-video h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.demo-video p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

/* Responsividade para Vídeo */
@media (max-width: 768px) {
    .video-container video {
        height: auto;
    }
    .demo-video h2 {
        font-size: 20px;
        color: #333;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .video-container video {
        height: auto;
    }
    .demo-video h2 {
        font-size: 20px;
        color: #333;
        margin-bottom: 15px;
    }
}

/* Seção Suporte */
/* Seção Suporte */
.suporte {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

.suporte-container {
    max-width: 600px;
    margin: 0 auto;
}

.suporte h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.suporte p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

.suporte-botoes {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-suporte {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    width: 200px;
}

.btn-suporte i {
    font-size: 24px;
    margin-right: 10px;
}

/* WhatsApp */
.btn-suporte.whatsapp {
    background-color: #25D366;
    color: #fff;
}

.btn-suporte.whatsapp:hover {
    background-color: #128C7E;
}

/* Telegram */
.btn-suporte.telegram {
    background-color: #0088cc;
    color: #fff;
}

.btn-suporte.telegram:hover {
    background-color: #006699;
}

/* Responsividade */
@media (max-width: 480px) {
    .suporte-botoes {
        flex-direction: column;
        gap: 10px;
    }

    .btn-suporte {
        width: 100%;
    }
}

