/* Variáveis de Cores */
:root {
    /* Cores de Conteúdo */
    --roxo:#9e02cc; 
    --amarelo: #FFC107; 
    --azul: #9e02cc; 
    --preto: #212121;
    --roxo-escuro: #3e0051; 
    
    /* Tema Principal (Branco/Roxo/Preto) */
    --fundo-claro: #ffffff; 
    --texto-escuro: #212121; 
    
    /* Cores da Top Bar e Botão ASSINE */
    --laranja-topo: #9e02cc; 

    /* Cores Dark Mode (Para a seção de planos) */
    --fundo-dark: #121212; 
    --card-dark: #1e1e1e;  
    --texto-claro: #ffffff;
    --texto-secundario-dark: #b3b3b3; 
}

/* Estilos Globais */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--fundo-claro);
    color: var(--texto-escuro);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Classes de Layout e Responsividade */
.d-flex { display: flex; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.d-none { display: none !important; }

@media (min-width: 768px) {
    .d-md-inline-block { display: inline-block !important; }
    .d-md-flex { display: flex !important; }
}
@media (min-width: 992px) {
    .d-lg-block { display: block !important; }
    .d-lg-inline-block { display: inline-block !important; }
}

/* Tipografia e Títulos */
h1, h2, h3, h4 {
    margin-bottom: 0.5em;
    font-weight: 700;
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 1.5em;
    color: var(--roxo); /* Títulos em Roxo */
}

/* Classes de Utilidade de Cor */
.bg-azul { background-color: var(--azul); }
.bg-roxo-escuro { background-color: var(--roxo-escuro); }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-amarelo { color: var(--amarelo); }

/* Botões Genéricos */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9em;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--amarelo);
    color: var(--texto-escuro); /* Botões amarelos com escrita em PRETO */
}

.btn-primary:hover {
    background-color: #ffd84f;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--roxo);
    color: white;
}

.btn-secondary:hover {
    background-color: #7949bd;
    transform: translateY(-2px);
}

/* ==================================== */
/* TOP BAR (Laranja) */
/* ==================================== */
.top-bar {
    background-color: var(--laranja-topo);
    color: white;
    font-size: 0.9em;
    padding: 8px 0;
}

.top-contatos span,
.top-links a {
    margin-right: 20px;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

/* Ícones Feather na Top Bar */
.top-contatos span [data-feather],
.top-links a [data-feather] {
    margin-right: 5px;
    width: 1em; 
    height: 1em;
    vertical-align: middle;
}

.top-links a:hover {
    color: var(--texto-escuro);
}

.social-top a {
    color: white;
    margin-left: 15px;
    font-size: 1.1em;
}

.social-top a [data-feather] {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

/* ==================================== */
/* MAIN HEADER (Navegação Branca) */
/* ==================================== */
.main-header {
    background-color: var(--fundo-claro);
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.8em;
    font-weight: 900;
    color: var(--laranja-topo); 
    margin: 0;
}

.logo small {
    font-size: 0.5em;
    font-weight: normal;
    display: block;
    color: #666;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--texto-escuro);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    text-transform: uppercase;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--roxo);
}

.header-actions {
    display: flex;
    gap: 10px;
}

/* Botão Assine */
.btn-action {
    background-color: var(--laranja-topo);
    color: white;
    padding: 10px 20px;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-action:hover {
    background-color: #f26f1b;
}

/* Botão Central do Cliente (Outline) */
.btn-outline-primary {
    background-color: var(--fundo-claro);
    color: var(--laranja-topo);
    border: 2px solid var(--laranja-topo);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-outline-primary [data-feather] {
    width: 18px;
    height: 18px;
    vertical-align: sub;
    margin-right: 5px;
}

.btn-outline-primary:hover {
    background-color: var(--laranja-topo);
    color: white;
}
.btn-outline-primary:hover [data-feather] {
    color: white;
}

/* ==================================== */
/* HERO BANNER / SLIDE AREA (PARALLAX FUNCIONAL) */
/* ==================================== */
.hero-slide-area {
    background-color: var(--roxo-escuro); 
    color: white;
    padding: 0; 
    position: relative;
    overflow: hidden; 
    min-height: 650px; 
}

.slide-container {
    position: absolute; /* Ocupa 100% da área do pai */
    width: 100%;
    height: 100%;
}

.slide {
    padding: 0; 
    opacity: 0;
    transition: opacity 0.8s ease;
    
    /* POSICIONAMENTO CRUCIAL */
    position: absolute; 
    width: 100%;
    height: 100%; 
    top: 0;
    left: 0;
    
    /* Fundo Parallax */
    background-repeat: no-repeat;
    background-position: center center;
    
    /* MUDANÇA: Use 'cover' para preencher 100% da largura/altura */
    background-size: cover; 
    
    /* Mantido: Parallax em Desktop / Scroll em Mobile */
    background-attachment: fixed; 
}

.slide.active {
    opacity: 1;
    z-index: 2; /* DEVE SER MAIOR QUE OS INATIVOS (Z-INDEX DEFAULT É 1) */
}

/* FUNDOS INDIVIDUAIS (PLACEHOLDERS) */
.slide-bg-1 {
    /* CORREÇÃO: Altere 'slide1.jpg' para 'slide.jpg' */
    background-image: url('slide1.png'); 
    background-color: none;
    
}

.slide-bg-2 {
    background-image: url('slide2.png'); 
    background-color: var(--preto);
    
}

.slide-bg-3 {
    background-image: url('slide3.png'); 
    background-color: var(--azul);
   
}


/* Navegação do Slider (Setas) */
.slide-nav {
    position: absolute;
    top: 50%; /* CENTRA VERTICALMENTE */
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.slide-nav [data-feather] {
    width: 20px;
    height: 20px;
}

.slide-nav:hover {
    background: rgba(0, 0, 0, 0.7);
}

.slide-nav.prev {
    left: 20px;
}

.slide-nav.next {
    right: 20px;
}

/* Dots de Navegação */
.slide-dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 5;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--amarelo);
}

/* ====================================
   SEÇÃO RESOLVA TUDO NO APP
   ==================================== */

   .app-section {
    padding: 80px 0;
    background-color: var(--bg-default); 
}

/* Container principal para alinhar lado a lado */
.app-section .container {
    gap: 40px; 
}

/* Estilização do Lado Esquerdo (Texto e Recursos) */
.app-content-text {
    max-width: 50%;
    flex-grow: 1;
}

.app-logo {
    display: inline-block;
    background-color: var(--primary-color); 
    color: white;
    padding: 8px 15px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 20px;
}

.app-content-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

/* Grid de Recursos/Vantagens */
.app-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 550px;
}

.feature-item {
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item i {
    color: var(--primary-color); 
    width: 18px;
    height: 18px;
    min-width: 18px;
    stroke-width: 3; 
}


/* Estilização do Lado Direito (Mockup e Downloads) */
.app-image-wrapper {
    position: relative;
    max-width: 450px; 
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Plano de fundo atrás do celular (o "retângulo amarelo") */
.app-mockup-bg {
    position: relative; /* Mantemos 'relative' para o fluxo e controle de dimensões */
    width: 100%;
    height: 480px; 
    background-color: #ffc107; /* O amarelo */
    border-radius: 25px;
    overflow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Ajustes Z-index */
    z-index: 1; /* O menor valor: Fica atrás de tudo (do celular e do card) */
}

/* Estilização da Imagem do Aplicativo (Mockup) */
.app-mockup-img {
    position: absolute; /* Essencial para o posicionamento e Z-index */
    bottom: -392px;
    right: -38px;
    width: 612px !important;
    max-width: 494px;
    height: 1227px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    /* Ajustes Z-index */
    z-index: 3; /* O MAIOR valor: Fica na frente do fundo (1) e do card (2) */
}

/*
 * --------------------------------------
 * CSS PARA O EFEITO PARALLAX NA SEÇÃO
 * --------------------------------------
 */

/* 1. Remove o background roxo-escuro do HTML para aplicar o efeito */
#streaming {
    position: relative; /* Essencial para que o parallax-bg se posicione corretamente */
    padding: 80px 0; /* Mantenha o padding para o conteúdo */
    /* Remove a cor de fundo aqui: background-color: transparent !important; */
    overflow: hidden; /* Garante que o efeito não gere barras de rolagem indesejadas */
    z-index: -1;
}

/* 2. Estiliza a div que criará o efeito de fundo fixo e parallax */
.parallax-bg {
    /* Define o fundo e a imagem */
    background-image: url('bgfilmes.png'); /* Mude para o caminho da sua imagem */
    background-attachment: fixed; /* O SEGREDO DO PARALLAX: faz a imagem ficar FIXA na tela */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; /* Garante que a imagem cubra toda a área */

    /* Posicionamento e dimensões */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Joga o fundo para trás do conteúdo da seção */

    /* Adiciona um overlay escuro (opcional) para o texto branco sobressair */
    opacity: 0.8; /* Ajuste a opacidade se necessário */
    content: ''; /* Propriedade necessária se fosse um pseudo-elemento, mantida para clareza */
}

/* 3. Ajuste a classe de background na seção para garantir visibilidade do texto */
.bg-transparente-escuro {
    /* Cor de fundo levemente escura sobre o conteúdo para garantir contraste, se necessário */
    background-color: rgba(0, 0, 0, 0.4); /* Preto com 40% de opacidade */
    z-index: 1;
    position: relative; /* Garante que o conteúdo fique sobre o parallax-bg */
}

/* 4. Garante que o conteúdo (container) fique acima do fundo */
#streaming .container {
    position: relative;
    z-index: 2; /* Garante que o texto fique acima do bg-transparente-escuro e do parallax-bg */
}

/* Caixa de QR Code e Lojas */
.app-download-box {
    position: absolute; /* Essencial para o posicionamento e Z-index */
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    /* Ajustes Z-index */
    z-index: 2; /* Valor intermediário: Fica atrás do celular (3), mas na frente do fundo amarelo (1) */
}

.qr-code-placeholder {
    width: 100%;
}

.qr-code-img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 150px;
    margin: 0 auto 10px;
}

.qr-code-placeholder p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.app-stores {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

/* Estilo do link das lojas com ícones */
.store-link {
    display: flex;
    flex-direction: column; /* Padrão: Ícone e texto empilhados */
    align-items: center;
    padding: 10px 5px; 
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    background-color: #f7f7f7;
    color: var(--text-dark);
}

.store-link:hover {
    background-color: #fff;
    border-color: var(--primary-color);
}

.store-link i {
    width: 24px;
    height: 24px;
    margin-bottom: 5px; 
    color: var(--primary-color); 
    stroke-width: 2;
}

.store-link .small-text {
    font-size: 0.7rem;
    line-height: 1;
    margin-bottom: 0px; /* Removido o pequeno margin-bottom duplicado */
}

.store-link .store-name {
    font-size: 1.1rem;
    font-weight: 600;
}


/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .app-section .container {
        flex-direction: column;
        gap: 60px;
    }

    .app-content-text {
        max-width: 100%;
        text-align: center;
    }
    
    .app-content-text h2 {
        font-size: 2rem;
    }

    .app-logo {
        margin: 0 auto 20px;
    }

    
    
    .app-features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        justify-items: center; 
    }

    .feature-item {
        justify-content: center;
        flex-wrap: nowrap; 
        font-size: 0.95rem;
    }
    
    .app-image-wrapper {
        order: -1; 
    }

    /* Ajuste da caixa de download (desktop: flutuante; mobile: integrada) */
    .app-download-box {
        position: static; 
        transform: none;
        width: 80%; 
        max-width: 350px;
        margin: 0 auto;
        flex-direction: row;
        gap: 30px;
        padding: 20px;
    }
    
    .app-stores {
        width: 45%;
    }
    
    .qr-code-placeholder {
        width: 45%;
    }
    
    /* Ajuste do link das lojas para layout horizontal em mobile/tablet */
    .store-link {
        flex-direction: row; 
        justify-content: center;
        align-items: center;
        gap: 8px; 
        padding: 10px;
    }
    
    .store-link i {
        margin-bottom: 0;
    }
    
    .store-link .small-text {
        /* Oculta "Disponível na" para dar foco no nome da loja e ícone */
        display: none; 
    }
    
    /* Remove o fundo de cor, foca apenas na imagem do celular */
    .app-mockup-bg {
        background-color: transparent;
        height: auto;
        display: none;
    }
    
    .app-mockup-img {
        position: static;
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: 400px;
        filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
    }
}

@media (max-width: 576px) {
    .app-features-grid {
        grid-template-columns: 1fr; 
    }

    .app-download-box {
        flex-direction: column; 
        width: 90%;
        padding: 20px;
        width: 90%;
    }
    
    .app-stores, .qr-code-placeholder {
        width: 100%;
    }
    
    .store-link .small-text {
        /* Reexibe "Disponível na" na vertical, se desejar */
        display: inline; 
        margin-right: 5px;
    }
    
    .store-link {
        flex-direction: row; /* Mantém horizontal */
        justify-content: flex-start;
    }
}

/* ====================================
   SEÇÃO DE DÚVIDAS FREQUENTES (FAQ)
   ==================================== */

   .faq-section {
    padding: 80px 0;
    /* Cor de fundo cinza/bege clara da imagem, ajuste se necessário */
    background-color: #f7f5f2; 
}

.faq-section .container {
    display: flex;
    gap: 60px;
    align-items: flex-start; /* Alinha o conteúdo ao topo */
}

/* Coluna da Esquerda (Título e Filtros) */
.faq-sidebar {
    width: 300px; /* Largura fixa para o lado esquerdo */
    flex-shrink: 0;
    padding-top: 10px; /* Alinha com o conteúdo do lado direito */
}

.faq-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 40px;
}

/* Estilo dos botões de filtro */
.faq-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 18px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background-color: transparent;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background-color: #eee;
}

.filter-btn.active {
    background-color: var(--text-dark); /* Fundo escuro igual ao da imagem */
    color: white;
    border-color: var(--text-dark);
}

/* Coluna da Direita (Conteúdo) */
.faq-content {
    flex-grow: 1;
    width: 100%; /* Permite ocupar o espaço restante */
}

/* Estilo da introdução (Primeira pergunta/caixa) */
.faq-intro-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 0 15px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

.faq-intro-question {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    max-width: 90%;
    margin-top: 0;
}

.faq-answer-intro {
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

.faq-answer-intro p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.faq-answer-intro p:last-child {
    font-weight: 600; /* Estilo para a última frase */
    margin-bottom: 0;
}

.toggle-icon {
    border: none;
    background: #e6e6e6; /* Fundo cinza claro do ícone */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 10px;
}

.toggle-icon i {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    color: var(--text-dark);
}

/* Estilo dos Itens do Acordeão (FAQ Sanfona) */
.accordion-list {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: transform 0.3s;
}

/* Estilo para quando a resposta está aberta */
.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg); /* Gira o ícone de + para X (ou use 'minus' no JS) */
}

.accordion-body {
    padding: 0 0 20px 0;
    /* Estilo de transição deve ser manipulado via JavaScript para altura */
}

.accordion-body[hidden] {
    display: none;
}

.accordion-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 10px;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .faq-section .container {
        flex-direction: column;
        gap: 40px;
    }

    .faq-sidebar {
        width: 100%;
    }
    
    .faq-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .faq-filters {
        justify-content: center;
    }
    
    .faq-content {
        padding: 0;
    }
    
    .faq-intro-box {
        padding-top: 10px;
    }

    .faq-intro-question,
    .accordion-header {
        font-size: 1.1rem;
    }
}

/* ==================================== */
/* SEÇÃO DE PLANOS (DARK MODE) */
/* ==================================== */

.planos-section {
    padding: 80px 0;
    background-color: var(--fundo-dark);
}

.section-title {
    color: var(--texto-claro); 
}

.planos-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap; 
}

.plano-card {
    background-color: var(--card-dark);
    color: var(--texto-claro); 
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%; 
    max-width: 320px;
    position: relative;
    border-top: 5px solid var(--roxo); 
}

@media (max-width: 768px) {
 
    .plano-card {
        max-width: 98% !important;
       
    }
}

@media (max-width: 576px) {
    .plano-card {
        width: 95%; /* Aplica a largura de 95% para telas até 576px */
        margin: 0 auto 20px auto; 
    }
}

.plano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.plano-card.destaque {
    border: 3px solid #b74dd7 !;
    transform: scale(1.05);
    background-color: #750098 !; 
    color: white;
}

.plano-card.destaque:hover {
    transform: translateY(-5px) scale(1.05);
}

.plano-card.destaque .plano-titulo,
.plano-card.destaque .info-pagamento,
.plano-card.destaque h4 {
    color: var(--amarelo); 
}

.plano-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--roxo);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
}

.plano-tag.mais-vendido {
    background-color: var(--laranja-topo); 
    color: white;
}

.plano-card h4 {
    font-size: 2.5em;
    color: var(--roxo); 
    margin-top: 10px;
}

.plano-titulo {
    color: var(--roxo); 
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
}

.plano-card.destaque .plano-titulo {
    color: var(--amarelo);
}

.preco {
    color: var(--texto-claro);
    font-size: 3.5em;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
}

.currency {
    font-size: 0.4em;
    vertical-align: top;
    font-weight: normal;
}

.decimal {
    font-size: 0.4em;
    vertical-align: top;
    margin-left: -5px;
}

.periodo {
    font-size: 0.3em;
    font-weight: normal;
    display: block;
}

.vantagens {
    list-style: none;
    text-align: left;
    margin: 20px 0 30px;
    padding-left: 20px;
    color: var(--texto-secundario-dark); 
}

.vantagens li {
    margin-bottom: 10px;
    font-size: 1em;
}

.vantagens li [data-feather] {
    color: var(--roxo);
    margin-right: 10px;
    width: 20px;
    height: 20px;
    vertical-align: sub;
}
.plano-card.destaque .vantagens li [data-feather] {
    color: var(--amarelo);
}

.info-pagamento {
    margin-top: 15px;
    font-size: 0.9em;
    color: var(--amarelo); 
    font-weight: bold;
}

.info-area {
    font-size: 0.8em;
    color: var(--texto-secundario-dark);
    margin-top: 5px;
}

/* ==================================== */
/* SEÇÃO SERVIÇOS */
/* ==================================== */
.servicos-section {
    padding: 80px 0;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.servico-item {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.servico-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.servico-item [data-feather] { 
    width: 48px; 
    height: 48px;
    margin-bottom: 15px;
}

.icon-amarelo {
    color: var(--amarelo);
}

.servico-item h4 {
    margin-bottom: 5px;
}

/* ==================================== */
/* SEÇÃO SOBRE NÓS */
/* ==================================== */
.sobre-section {
    padding: 80px 0;
    color: white;
}

.sobre-content {
    max-width: 50%;
    padding-right: 50px;
}

.sobre-content h3 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.sobre-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.sobre-image {
    max-width: 45%;
    position: relative;
}

.sobre-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.gaming-info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    width: 80%;
}

.gaming-info h4 {
    color: var(--amarelo);
    margin: 0;
    font-size: 1.2em;
}

.gaming-info p {
    margin: 0;
    font-size: 0.9em;
}

/* ==================================== */
/* FOOTER */
/* ==================================== */
.footer {
    background-color: var(--preto);
    color: white;
    padding: 40px 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
    flex-wrap: wrap;
}

.footer-col {
    min-width: 200px;
}

.logo-footer {
    color: var(--amarelo);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.footer-col h5 {
    color: var(--azul);
    margin-bottom: 15px;
    font-size: 1.1em;
}

.footer-col p {
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #ccc;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--amarelo);
}

.footer-col ul a [data-feather] {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
}

.social-links a {
    color: white;
    margin-right: 15px;
    font-size: 1.2em;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--amarelo);
}

.social-links a [data-feather] {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.8em;
    color: #999;
}

/* ==================================== */
/* WhatsApp Float Button */
/* ==================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.whatsapp-float [data-feather] {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ==================================== */
/* MEDIA QUERIES (Responsividade) */
/* ==================================== */

@media (max-width: 991px) {
    /* Header/Top Bar */
    .d-lg-block { display: none !important; }
    .top-contatos, .top-links {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .top-contatos span { margin: 0 10px; }
    .top-bar .top-links {
        display: none !important; 
    }
    
    .main-header .container {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .logo {
        margin-bottom: 10px;
        width: 100%;
    }
    .header-actions {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    .btn-outline-primary {
        display: none !important; 
    }

    /* Hero Banner */
    .hero-slide-area {
        min-height: 450px;
    }
    .slide-nav {
        top: 60%; 
    }
    .slide {
        /* Desabilita o parallax em muitos dispositivos móveis para melhor performance */
        background-attachment: scroll; 
    }
    
    /* Planos */
    .plano-card {
        margin-bottom: 20px;
        transform: scale(1.0);
    }
    .plano-card.destaque {
        transform: scale(1.0);
    }


    /* Sobre Nós */
    .sobre-section .container {
        flex-direction: column;
        text-align: center;
    }
    .sobre-content {
        max-width: 100%;
        padding: 0;
        margin-bottom: 40px;
    }
    .sobre-image {
        max-width: 100%;
    }
    
    /* Footer */
    .footer-grid {
        justify-content: center;
        text-align: center;
    }
    .footer-col {
        min-width: 100%;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 2em;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float [data-feather] {
        width: 25px;
        height: 25px;
    }
    .top-contatos {
        flex-direction: column;
    }
    .top-contatos span:last-child {
        display: none !important;
    }
}

/* ==================================== */
/* MEDIA QUERIES (Responsividade) */
/* ==================================== */

/* ... (seu código existente) ... */

@media (max-width: 991px) {
    
    /* ... (outras regras de mobile/tablet) ... */

    /* Hero Banner */
    .hero-slide-area {
        min-height: 450px;
    }
    
    .slide-nav {
        top: 60%; 
    }
    
    .slide {
        /* Desabilita o parallax em muitos dispositivos móveis para melhor performance */
        background-attachment: scroll; 
    }
    
    /* 💥 NOVO: Imagens Otimizadas para Mobile e Tablet */
    .slide-bg-1 {
        background-image: url('slide1-mobile.png'); 
        /* Mantém o cover e o center center para preenchimento total */
        background-size: cover; 
        background-position: center center;
    }

    .slide-bg-2 {
        background-image: url('slide2-mobile.png'); 
    }

    .slide-bg-3 {
        background-image: url('slide3-mobile.png'); 
    }
    /* 💥 FIM DO BLOCO MOBILE IMAGES */


    .btn-action {
        background-color: var(--laranja-topo);
        color: white;
        padding: 10px 101px;
        border: none;
        text-transform: uppercase;
        font-weight: bold;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s;
      }

      .top-bar {
        display: none;
      }

      .vantagens {
      
        text-align: center;
       
      }

      .faq-section .container {
       
        text-align: center;
      }

      .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 31px;
        right: 39px;
        box-shadow: none;
      }
      
          .app-image-wrapper {
        order: -1;
        width: 90%;
    }

    
    /* Planos */
    /* ... (resto do seu código @media 991px) ... */
}


