/* style.css */

html {
    scroll-behavior: smooth; /* Faz a rolagem descer suave */
    scroll-padding-top: 30px; /* Faz parar antes do título para o menu não cobrir */
}

/* Variáveis de Cores para facilitar a manutenção */
:root {
    --dark-grey: #242525;
    --emerald-green: #50c878;
    --white: #ffffff;
    --light-grey: #f8f8f8; /* Um cinza claro para fundos alternados */
    --text-color: #333333; /* Um tom mais suave para o texto geral */
}

body {
    font-family: Arial, sans-serif; /* Exemplo de outra propriedade */
    line-height: 1.6; /* Exemplo de outra propriedade */
    margin: 0;
    padding: 0;
    background-color: var(--white);
    color: var(--text-color);
    scroll-behavior: smooth; /* Anima a rolagem para as âncoras */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* NOVO: Top Bar (Com Logo e Menu de Ancoragem) */
.top-bar {
    background-color: var(--dark-grey);
    padding: 15px 0;
    position: sticky; /* Faz a barra ficar fixa no topo ao rolar */
    top: 0;
    z-index: 1000; /* Garante que fique acima de outros elementos */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; /* Ajusta o padding para a barra do topo */
}

.top-bar .logo img {
    max-height: 50px; /* Tamanho da logo na barra */
    width: auto;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Itens do menu lado a lado */
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--emerald-green); /* Verde no hover */
}

.menu-toggle {
    display: none; /* Esconde o botão de menu em desktop */
    background: none;
    border: none;
    font-size: 1.8em;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.3s ease; /* Adicionado para animação do ícone */
}

/* --- HERO SECTION (COM FUNDO LOCAL) --- */
.hero-section {
    background-color: var(--dark-grey);
    
    /* AQUI: Ajustei para o caminho da sua pasta */
    background-image: linear-gradient(rgba(36, 37, 37, 0.85), rgba(36, 37, 37, 0.95)), url('imagens/fund-loja-super.jpg');
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax */
    
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: flex;
    flex-wrap: wrap; /* Para quebrar linha em telas menores */
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    min-width: 300px; /* Garante que o conteúdo não fique muito pequeno */
    text-align: left;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--emerald-green); /* O verde para o título principal para destaque */
    line-height: 1.2; /* Quanto menor o número, mais grudado fica. Tente 1.0 ou 0.9 */
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.hero-content ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

/* --- ÍCONE DE CHECK VERDE PERSONALIZADO (HERO) --- */
.hero-content ul li::before {
    /* 1. Trocamos o emoji por um check de texto simples */
    content: '✔'; 
    
    /* 2. Cores da Marca */
    color: #ffffff; /* A "perninha" do check branca */
    background-color: #50c879; /* O fundo quadrado Verde */
    
    /* 3. Tamanho e Formato do Quadrado */
    width: 22px;
    height: 22px;
    border-radius: 5px; /* Cantos arredondados suavemente */
    
    /* 4. Centralizar o Check dentro do Quadrado */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    /* 5. Ajustes da Fonte do ícone */
    font-size: 13px;
    font-weight: bold;
    
    /* 6. Posicionamento (No Desktop) */
    position: absolute;
    left: 0;
    top: 3px; /* Ajuste fino para alinhar com a altura do texto */
    
    /* 7. Sombra suave (opcional, para dar destaque) */
    box-shadow: 0 3px 8px rgba(80, 200, 121, 0.3);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Borda arredondada para o mockup do app */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Sombra para dar profundidade */
}

/* Botões */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-right: 15px;
    margin-bottom: 15px;
}

.primary-btn {
    background-color: var(--emerald-green); /* O verde vibrante para o CTA principal */
    color: var(--white);
    border: 2px solid var(--emerald-green);
}

.primary-btn:hover {
    background-color: #3aa85d; /* Escurece um pouco no hover */
    border-color: #3aa85d;
}

.secondary-btn {
    background-color: transparent;
    color: var(--emerald-green);
    border: 2px solid var(--emerald-green);
}

.secondary-btn:hover {
    background-color: var(--emerald-green);
    color: var(--white);
}

/* Seção de Benefícios, Preço, Sobre Nós, Contato */
section {
    padding: 60px 0;
    text-align: center;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--dark-grey);
}

.benefits-section {
    background-color: var(--light-grey); /* Um fundo claro para alternar */
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    /* Poderia ser um SVG com a cor do tema */
}

.benefit-item h3 {
    color: var(--emerald-green);
    margin-bottom: 10px;
}

/* Seção de Preço */
.pricing-section {
    background-color: var(--white);
}

.pricing-card {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 50px;
    border-radius: 15px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card .price-value {
    font-size: 3.5em;
    font-weight: bold;
    color: var(--emerald-green);
    margin-bottom: 10px;
}

.pricing-card .price-value span {
    font-size: 0.5em;
    font-weight: normal;
    color: var(--light-grey);
}

.pricing-card .price-info {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--light-grey);
}

/* Seção de Depoimentos */
.testimonials-section {
    background-color: var(--dark-grey); /* Fundo escuro para destacar */
    color: var(--white);
}

.testimonials-section h2 {
    color: var(--emerald-green); /* Título em verde para contraste */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-item {
    background-color: #333333; /* Um tone ligeiramente mais claro que o fundo */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.testimonial-item .quote {
    font-size: 1.1em;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-item .author {
    font-weight: bold;
    color: var(--emerald-green);
    font-size: 0.95em;
}

/* Formulário de Criação do App */
.app-creation-form {
    background-color: var(--light-grey);
    padding-bottom: 80px;
}

.app-creation-form h2 {
    color: var(--dark-grey);
}

.app-creation-form form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--dark-grey);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box; /* Garante que padding não aumente a largura */
}

.form-group textarea {
    resize: vertical; /* Permite redimensionar verticalmente */
}

.app-creation-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 20px;
}

/* Seção de Perguntas Frequentes (FAQ) - Atualizada */
.faq-section {
    background-color: var(--light-grey);
    padding-bottom: 80px;
}

.faq-section h2 {
    color: var(--dark-grey);
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    background-color: var(--white);
    color: var(--dark-grey);
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question::after {
    content: '▼'; /* Ícone para indicar que pode ser expandido */
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.faq-question.active {
    background-color: #f0f0f0; /* Mudar cor quando ativo */
}

.faq-question.active::after {
    transform: rotate(180deg); /* Gira o ícone quando ativo */
}

.faq-answer {
    padding: 0 25px;
    background-color: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out; /* Animação suave para abrir/fechar */
}

.faq-answer p {
    padding-top: 10px; /* Adicionado para separar do limite superior */
    padding-bottom: 20px;
    color: var(--text-color);
}

/* Seções Sobre Nós e Contato */
.about-us-section, .contact-section {
    background-color: var(--white);
    color: var(--text-color);
}

.about-us-section p, .contact-section p {
    max-width: 800px;
    margin: 20px auto;
    font-size: 1.1em;
}

.contact-section a {
    color: var(--emerald-green);
    text-decoration: none;
    font-weight: bold;
}

.contact-section a:hover {
    text-decoration: underline;
}

/* Rodapé */
.footer {
    background-color: var(--dark-grey);
    color: var(--light-grey);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
}

.footer a {
    color: var(--emerald-green);
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

/* Aviso de Domínio */
.domain-alert {
    background-color: #fffacd; /* Amarelo claro suave */
    border: 1px solid #ffe89e; /* Borda mais escura para o amarelo */
    padding: 15px;
    margin-bottom: 25px; /* Espaço após o aviso */
    border-radius: 8px;
    font-size: 0.95em;
    line-height: 1.5;
    color: #333333;
    text-align: left; /* Garante que o texto fique alinhado à esquerda dentro do bloco */
}

.domain-alert p {
    margin: 0; /* Remove margem padrão do parágrafo dentro do aviso */
}

.domain-alert a {
    color: #50c878; /* Cor azul para o link, pode ser ajustado para var(--emerald-green) se preferir */
    text-decoration: underline;
    font-weight: bold;
}

.domain-alert a:hover {
    color: #242525; /* Cor mais escura no hover do link */
}

.domain-alert code {
    background-color: #f0f0f0;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: monospace;
    color: var(--dark-grey);
}

/* Media Queries para Responsividade Geral */
@media (max-width: 768px) {
    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .hero-image {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2em;
        line-height: 1.1; /* No celular as vezes precisa ser um pouquinho maior que no PC pra não encavalar */
    }

    .btn {
        display: block;
        margin: 15px auto;
    }

    .hero-ctas {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

     section h2 {
        font-size: 1.8em; /* Tamanho da fonte */
        
        /* AQUI ESTÁ O AJUSTE QUE VOCÊ QUER: */
        line-height: 1.1 !important; /* Aperta as linhas (padrão é aprox 1.4) */
        
        /* Dica extra: Adiciona uma margem lateral para não grudar na borda da tela */
        padding: 0 18px; 
        margin-bottom: 20px; /* Ajusta o espaço abaixo do título */
    }

    .benefits-grid, .testimonials-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas pequenas */
    }

    .app-creation-form form {
        padding: 20px;
    }

    /* NOVO: Menu Mobile */
    .top-bar .container {
        flex-wrap: wrap; /* Permite que os itens quebrem linha */
        justify-content: space-between;
    }

    .main-nav {
        order: 3; /* Coloca a navegação abaixo da logo e do botão */
        width: 100%;
        background-color: #3a3b3c; /* Fundo para o menu aberto */
        max-height: 0; /* Começa escondido */
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    .main-nav.active {
        max-height: 300px; /* Altura suficiente para mostrar os links quando ativo */
        /* Ajuste este valor se seus links forem muitos ou muito poucos */
    }

    .main-nav ul { /* Regras para a lista UL em mobile */
        flex-direction: column; /* Links empilhados */
        padding: 10px 0;
        display: block; /* Garante que a UL se comporte como um bloco */
    }

    .main-nav ul li {
        margin: 0;
        text-align: center;
        padding: 10px 0;
    }

    .main-nav ul li a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .main-nav ul li:last-child a {
        border-bottom: none;
    }

    .menu-toggle {
        display: block; /* Mostra o botão de menu em mobile */
    }

    .menu-toggle.active {
        transform: rotate(90deg); /* Gira o ícone do menu quando ativo */
    }
}

/* Regras para desktop, para esconder o menu-toggle e mostrar a navegação */
@media (min-width: 769px) { /* A partir de 769px, consideramos desktop */
    .main-nav {
        display: block !important; /* Garante que a navegação seja visível em desktop, sobrescrevendo max-height */
        max-height: none !important; /* Remove o max-height no desktop */
    }
    .menu-toggle {
        display: none !important; /* Esconde o botão em desktop */
    }
}

/* ============================================================
   CORREÇÃO DE EMERGÊNCIA - FORÇA BRUTA (CSS BLINDADO)
   ============================================================ */

/* 1. Forçar o layout lado a lado no PC */
.pricing-grid {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: stretch !important; /* Mesma altura */
    gap: 20px !important;
    flex-wrap: wrap !important;
    margin-top: 20px !important;
}

/* 2. Resetar o cartão para não ficar gigante */
.pricing-card {
    width: auto !important;
    flex: 1 !important;
    min-width: 280px !important;
    max-width: 400px !important;
    margin: 0 !important;
    padding: 30px 20px !important; /* Padding normal */
    border-radius: 10px !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

/* 3. ARRUMAR O TEXTO INVISÍVEL (Plano Branco) */
.pricing-card.simple-card {
    background-color: #ffffff !important;
    border: 1px solid #dddddd !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
}

/* Força cor escura no título e preço do cartão branco */
.pricing-card.simple-card h3,
.pricing-card.simple-card .price-value {
    color: #333333 !important; 
}

/* Força cor cinza no texto de descrição (que estava invisível) */
.pricing-card.simple-card .price-info {
    color: #666666 !important;
    font-weight: normal !important;
}

/* 4. ARRUMAR O PLANO ESCURO (Plano Anual) */
.pricing-card.featured-card {
    background-color: #242525 !important; /* Fundo escuro */
    border: 2px solid #50c878 !important; /* Borda Verde */
    color: #ffffff !important;
    transform: scale(1.05); /* Destaque no PC */
    z-index: 10;
}

/* 5. CORRIGIR O TAMANHO GIGANTE DA FONTE */
.pricing-card .price-value {
    font-size: 2.8rem !important; /* Tamanho controlado */
    line-height: 1.1 !important;
    margin: 15px 0 !important;
}

.pricing-card .price-value span {
    font-size: 1rem !important;
    color: #888 !important;
}

/* 6. ARRUMAR A BOLINHA DE DESCONTO (BADGE) */
.badge-discount {
    position: absolute !important;
    top: -15px !important; /* Subi um pouco mais para centralizar na linha */
    left: 50% !important;
    transform: translateX(-50%) !important;
    background-color: #50c878 !important;
    color: #242525 !important;
    
    /* O AJUSTE ESTÁ AQUI: Aumentei o segundo número (laterais) para 25px */
    padding: 8px 25px !important; 
    
    border-radius: 50px !important; /* Deixa arredondado tipo pílula */
    font-size: 1.2rem !important;
    font-weight: bold !important;
    white-space: nowrap !important;
    z-index: 20 !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3) !important;
    
    /* Garante que o texto fique bem no meio */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 100px !important; /* Força uma largura mínima para não ficar espremido */
}

/* ============================================================
   MEDIA QUERY (CELULAR) - VERSÃO FINAL (COM CHECKLIST CORRIGIDO)
   ============================================================ */
@media (max-width: 768px) {

    html {
        /* Valor para o CELULAR (maior, para empurrar o conteúdo para baixo da barra preta) */
        scroll-padding-top: 40px; 
    }

    /* --- 1. CORREÇÃO DO MENU (Vira X e Espaçamento) --- */
    .top-bar .container {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .logo img { max-height: 40px; }

    /* Botão X */
    .menu-toggle {
        display: block !important;
        font-size: 0 !important;
        width: 40px;
        height: 40px;
        position: relative;
        z-index: 1001;
    }

    .menu-toggle::before {
        content: "☰";
        font-size: 2rem;
        color: var(--white);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
    }

    .menu-toggle.active::before {
        content: "✕"; 
        color: var(--emerald-green);
        transform: translate(-50%, -50%) rotate(90deg);
    }

    /* Menu Aberto */
    .main-nav {
        width: 100%;
        background-color: #242525;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        margin-top: 10px;
        border-radius: 0 0 8px 8px;
    }

    .main-nav.active { max-height: 500px; }

    .main-nav ul { flex-direction: column; padding: 0; display: block; }
    .main-nav ul li { width: 100%; border-bottom: 1px solid rgba(255, 255, 255, 0.05); margin: 0; text-align: center; }
    
    .main-nav ul li a {
        display: block;
        padding: 12px 0 !important;
        font-size: 0.9rem !important;
    }
    .main-nav ul li:last-child { border-bottom: none; }


/* --- 2. CORREÇÃO DOS BOTÕES E HERO (E O CHECKLIST VERDE) --- */
    .hero-section .container { 
        flex-direction: column; 
        text-align: center; 
    }
    
    .hero-content, .hero-image { 
        text-align: center; 
        width: 100%; 
    }

    /* AQUI ESTÁ A CORREÇÃO DOS ÍCONES VERDES (ATUALIZADO) */
    .hero-content ul li {
        display: flex !important;          /* Alinha ícone e texto lado a lado */
        justify-content: center !important; /* Centraliza o conjunto na tela */
        align-items: center !important;     /* Alinha na altura (meio) */
        padding-left: 0 !important;         /* Remove recuo antigo */
        text-align: center !important;
        margin-bottom: 10px !important;     /* Espacinho entre as linhas */
    }

    .hero-content ul li::before {
        position: static !important;       /* Destrava a posição fixa do desktop */
        margin-right: 10px !important;     /* Espaço entre o quadrado e o texto */
        
        /* IMPORTANTE: Impede que o quadrado amasse em telas pequenas */
        flex-shrink: 0 !important;
        
        /* Garante que ele ignore ajustes de altura do desktop */
        top: auto !important;
        transform: none !important;
    }
    /* FIM DA CORREÇÃO DOS ÍCONES */

    .hero-ctas {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn {
        display: block;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }


    /* --- 3. OUTROS GRIDS --- */
    .benefits-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .app-creation-form form { padding: 20px; }


    /* --- 4. PREÇOS (SEU CÓDIGO APROVADO) --- */
    .pricing-grid {
        flex-direction: column !important;
        align-items: center !important;
        gap: 35px !important;
    }

    .pricing-card {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        padding: 20px 10px !important;
    }

    .pricing-card.featured-card { transform: scale(1) !important; }
    .pricing-card .price-value { font-size: 1.8rem !important; }
    .pricing-card .price-value span { font-size: 0.8rem !important; }
    .pricing-card h3 { font-size: 1.2rem !important; }
    
    .pricing-card.simple-card .price-info {
        font-size: 0.85rem !important;
        opacity: 0.9 !important;
    }
}

/* --- NOVA SEÇÃO: NOTIFICAÇÕES PUSH --- */

.push-section {
    background-color: var(--white); /* Fundo branco para contraste com a seção cinza anterior */
    padding: 80px 0;
    text-align: left; /* O texto geral fica alinhado à esquerda como no desenho */
}

.push-content-wrapper {
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: space-between;
    gap: 50px; /* Espaço entre a imagem e o texto */
}

/* Área da Imagem */
.push-image {
    flex: 1;
    text-align: center;
}

.push-image img {
    max-width: 100%;
    border-radius: 20px; /* Borda arredondada suave */
    /* Se quiser uma borda cinza fina como no rascunho: */
    border: 1px solid #e0e0e0; 
    padding: 10px;
}

/* Área do Texto */
.push-text {
    flex: 1;
}

.push-text h2 {
    font-size: 2.8em;
    color: var(--dark-grey);
    margin-bottom: 15px;
    line-height: 1.1;
    text-align: left; /* Força alinhamento a esquerda */
}

.push-subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: left;
}

/* Lista de Vantagens */
.push-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.push-list li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 45px; /* Espaço para o ícone */
    text-align: left;
}

/* O Ícone de Check Verde */
.push-list li::before {
    content: '✔'; /* Checkmark */
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: 2px solid var(--emerald-green); /* Círculo verde */
    color: var(--emerald-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.push-list li strong {
    display: block;
    color: var(--dark-grey);
    font-size: 1.1em;
    margin-bottom: 3px;
}

.push-list li span {
    color: #777;
    font-size: 0.95em;
}

/* --- AJUSTE MOBILE PARA ESSA SEÇÃO --- */
/* Adicione isso dentro ou logo após o seu @media (max-width: 768px) existente */
@media (max-width: 768px) {
    .push-section {
        text-align: center; /* No celular, tudo centralizado fica melhor */
    }
    
    .push-content-wrapper {
        flex-direction: column; /* Empilha: Imagem em cima, texto embaixo */
        gap: 30px;
    }

    .push-text h2 {
        font-size: 2em;
        text-align: center;
    }

    .push-subtitle {
        text-align: center;
    }

    .push-list li {
        text-align: left; /* A lista mantém a leitura alinhada à esquerda para facilitar */
    }
}

/* --- ESTILO DO SUBTÍTULO (AJUSTE FINAL DE ESPAÇAMENTO) --- */
.plan-subtitle {
    /* 1. Mantendo o visual que você gostou (Cinza e Centralizado) */
    color: #666666 !important;
    text-align: center !important;
    
    /* 2. Mantendo a largura controlada */
    max-width: 750px !important;
    margin-left: auto !important;
    margin-right: auto !important;

    /* 3. O ESPAÇAMENTO (AQUI ESTÁ A SOLUÇÃO) */
    /* Topo(-10px) | Dir(auto) | BAIXO(90px) | Esq(auto) */
    margin: -10px auto 90px auto !important; 
    
    display: block !important;
    position: relative !important;
}

/* Ajuste para celular (opcional, para não ficar grande demais) */
@media (max-width: 768px) {
    .plan-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}
/* CORREÇÃO DO ESPAÇO NO SUBTÍTULO DO PLANO (MOBILE) */
    .plan-subtitle {
        margin-top: 10px !important;    /* Remove o -20px e coloca +10px */
        margin-bottom: 30px !important; /* Mantém o espaço para os cartões */
        font-size: 1rem !important;
        line-height: 1.4 !important;    /* Melhora a leitura das linhas */
    }

/* ============================================================
   ANIMAÇÕES E EFEITOS VISUAIS
   ============================================================ */

/* 1. Animação de Pulsar (Pulse) Suave */
@keyframes pulseSuave {
    0% { transform: scale(1); filter: brightness(100%); }
    50% { transform: scale(1.03); filter: brightness(110%); } /* Aumenta levemente */
    100% { transform: scale(1); filter: brightness(100%); }
}

/* 2. Animação de Aparecer subindo (Fade In Up) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px); /* Começa 30px para baixo */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Termina no lugar certo */
    }
}

/* APLICANDO O PULSAR NAS IMAGENS */
/* Aplica no celular do topo e na imagem de notificação */
.hero-image img, 
.push-image img {
    animation: pulseSuave 4s infinite ease-in-out; /* 4s = bem lento e suave */
}

/* APLICANDO A ENTRADA NOS TEXTOS DO TOPO */

/* Título */
.hero-content h1 {
    opacity: 0; /* Começa invisível */
    animation: fadeInUp 0.8s ease-out forwards; /* Animação de 0.8s */
}

/* Parágrafo (atraso de 0.2s) */
.hero-content p {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* Lista de Vantagens (atraso de 0.4s) */
.hero-content ul {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* Botões (atraso de 0.6s) */
.hero-ctas {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* ============================================================
   EFEITO DE FLASH (SHINE) NO BOTÃO DO TOPO
   ============================================================ */

/* 1. Configuração do Botão para receber o efeito */
.hero-ctas .primary-btn {
    position: relative; /* Necessário para o flash ficar dentro dele */
    overflow: hidden;   /* Impede que o flash apareça fora das bordas do botão */
    z-index: 1;         /* Garante a ordem das camadas */
}

/* 2. Criação da faixa de luz (O "Flash") */
.hero-ctas .primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Começa escondido na esquerda */
    width: 100%;
    height: 100%;
    
    /* O gradiente: Transparente -> Branco semi-transparente -> Transparente */
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.5), 
        transparent
    );
    
    /* Inclina a faixa para ficar na diagonal */
    transform: skewX(-25deg);
    
    /* Chama a animação */
    animation: shineEffect 4s infinite; /* Roda infinitamente a cada 4 segundos */
}

/* 3. A Animação do Movimento */
@keyframes shineEffect {
    0% {
        left: -100%; /* Início (fora da esquerda) */
    }
    20% {
        left: 200%; /* Passa rápido para a direita */
    }
    100% {
        left: 200%; /* Fica parado lá longe (pausa) até completar 4s */
    }
}

/* --- CORREÇÃO DE ALINHAMENTO DOS BOTÕES NO DESKTOP --- */
@media (min-width: 769px) {
    .hero-ctas {
        display: flex !important;          /* Transforma a caixa dos botões em Flexbox */
        align-items: center !important;    /* O SEGREDO: Força o alinhamento vertical pelo centro */
        justify-content: flex-start !important; /* Mantém alinhado à esquerda junto com o texto */
        gap: 20px !important;              /* Define o espaço entre os botões aqui */
    }

    /* Remove margens antigas para o gap funcionar perfeitamente */
    .hero-ctas .btn {
        margin: 0 !important;
        height: auto !important; /* Garante que a altura seja natural */
    }
}

/* --- BOTÃO VOLTAR AO TOPO (ATUALIZADO) --- */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--emerald-green);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    
    /* Centraliza o ícone SVG perfeitamente */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Animação de entrada */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* Estilo do Ícone SVG dentro do botão */
#back-to-top svg {
    width: 28px;  /* Tamanho do ícone */
    height: 28px;
    stroke-width: 2; /* Espessura da linha (QUER MAIS FINO? MUDE PARA 1.5) */
}

/* Classe para mostrar o botão */
#back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    background-color: #3aa85d;
    transform: translateY(-5px);
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    #back-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    #back-to-top svg {
        width: 24px;
        height: 24px;
    }
}

/* --- ESTILO DO MODAL (LH LINK) --- */
.modal-overlay {
    display: none; /* Começa escondido */
    position: fixed;
    z-index: 10000; /* Fica acima de tudo */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Fundo escuro transparente */
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px); /* Efeito de desfoque no fundo (moderno) */
}

/* Classe para mostrar o modal via JS */
.modal-overlay.show {
    display: flex;
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px; /* Largura máxima */
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    text-align: left;
}

/* Botão X de fechar */
.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #000;
}

/* Animação de entrada */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* --- SEÇÃO DE LOGOS DE CLIENTES --- */
.clients-section {
    background-color: var(--white);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #eee; /* Uma linha sutil para separar do FAQ */
}

.clients-subtitle {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.clients-grid {
    display: flex;
    justify-content: center; /* Centraliza as logos */
    align-items: center;
    flex-wrap: wrap; /* Permite quebrar linha no celular */
    gap: 40px; /* Espaço entre as logos */
}

.client-logo img {
    max-height: 60px; /* Altura máxima para todas ficarem do mesmo tamanho visual */
    width: auto;
    filter: grayscale(100%); /* Deixa preto e branco (elegante) */
    opacity: 0.6; /* Levemente transparente */
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Efeito ao passar o mouse: Fica colorido e aumenta */
.client-logo img:hover {
    filter: grayscale(0%); /* Volta a cor original */
    opacity: 1;
    transform: scale(1.1); /* Aumenta um pouquinho */
}

/* Ajuste para Celular */
@media (max-width: 768px) {
    .clients-grid {
        gap: 30px;
    }
    .client-logo img {
        max-height: 45px; /* Logos menores no celular */
    }
}

/* --- TÍTULOS COM DEGRADÊ (GRADIENT TEXT) --- */

/* Aplica em todos os H2 das seções */
section h2 {
    /* 1. Define o degradê da esquerda (escuro) para direita (verde) */
    background: linear-gradient(90deg, #242525 0%, #50c879 100%);
    
    /* 2. Recorta o fundo no formato das letras */
    -webkit-background-clip: text;
    background-clip: text;
    
    /* 3. Deixa a cor da letra transparente para o fundo aparecer */
    -webkit-text-fill-color: transparent;
    color: transparent;
    
    /* Garante que o bloco se comporte bem com o gradiente */
    display: inline-block;
}

/* --- EXCEÇÃO IMPORTANTE: DEPOIMENTOS --- */
/* Como o fundo dessa seção já é escuro, removemos o gradiente 
   para o texto não sumir e deixamos ele Verdinha Sólido */
.testimonials-section h2 {
    background: none;
    -webkit-text-fill-color: initial;
    color: #50c879; /* Verde da sua marca */
}

/* --- AJUSTE DOS DEPOIMENTOS (ÍCONE DE USUÁRIO) --- */

/* Caixa que segura o ícone e o nome */
.author-box {
    display: flex;
    align-items: center; /* Alinha verticalmente */
    gap: 15px; /* Espaço entre o bonequinho e o texto */
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1); /* Linha fina separadora */
    padding-top: 15px;
}

/* Estilo do ícone SVG */
.user-icon {
    width: 45px;
    height: 45px;
    color: var(--emerald-green); /* Usa o verde da sua marca */
    background-color: rgba(255,255,255,0.1); /* Fundo cinza bem clarinho */
    padding: 8px;
    border-radius: 50%; /* Deixa redondo */
}

/* Ajuste do texto do autor para alinhar melhor */
.testimonial-item .author {
    margin: 0;
    line-height: 1.3;
}

/* --- RESGATE DA ANIMAÇÃO DOS PLANOS (DESKTOP) --- */
@media (min-width: 769px) {
    
    /* 1. Garante que a transição (o movimento suave) esteja ativada */
    .pricing-card {
        transition: all 0.3s ease-in-out !important;
        cursor: pointer; /* Mostra a mãozinha para indicar que é interativo */
    }

    /* 2. Animação do Plano MENSAL (O Branco) */
    .pricing-card.simple-card:hover {
        /* Sobe 10px e aumenta levemente a sombra */
        transform: translateY(-10px) !important;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
        border-color: #ccc !important; /* Escurece levemente a borda */
    }

    /* 3. Animação do Plano ANUAL (O Preto em Destaque) */
    /* Como ele já tem scale(1.05) por padrão, precisamos manter isso e subir */
    .pricing-card.featured-card:hover {
        /* Aumenta de 1.05 para 1.08 e sobe */
        transform: scale(1.08) translateY(-10px) !important;
        box-shadow: 0 30px 60px rgba(0,0,0,0.4) !important;
    }
}

    /* --- REMOVER SOMBRA DE TODAS AS IMAGENS DE DESTAQUE --- */
    .hero-image img, 
    .push-image img {
        box-shadow: none !important;
        border: none !important;
}

    /* --- COR DOS BOTÕES DE SELEÇÃO (RADIO E CHECKBOX) --- */
    input[type="radio"],
    input[type="checkbox"] {
        /* Muda a cor padrão (azul) para o seu verde */
        accent-color: #50c879; 
        
        /* Garante que o cursor mude ao passar o mouse */
        cursor: pointer;
}

/* --- CONFIGURAÇÃO DO VÍDEO DE FUNDO --- */

/* 1. Garante que a seção segure o vídeo */
.hero-section {
    position: relative;
    overflow: hidden; /* Corta o que sobrar do vídeo */
    background: #242525; /* Cor de fundo de segurança */
    background-image: none !important; /* Remove a imagem antiga */
}

/* 2. O Vídeo em si */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    
    /* Centraliza e cobre a tela */
    transform: translate(-50%, -50%);
    object-fit: cover; 
    
    z-index: 0; /* Fica no fundo */
}

/* 3. A Máscara Escura */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente escuro para ler o texto */
    background: linear-gradient(rgba(36, 37, 37, 0.85), rgba(36, 37, 37, 0.95)); 
    z-index: 1; 
}

/* --- SEÇÃO FINAL CTA (BANNER DEGRADÊ) --- */
.final-cta-section {
    background-color: var(--white);
    padding: 40px 0 80px 0;
}

.cta-banner {
    background: linear-gradient(90deg, #242525 0%, #50c879 100%);
    border-radius: 20px;
    padding: 60px 30px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    font-size: 2.2em;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.2em;
    margin-bottom: 35px;
    color: #f0f0f0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- BOTÃO COM EFEITO FLASH E HOVER --- */
.cta-banner .primary-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 18px 45px;
    font-size: 1.2em;
    background-color: #50c879;
    border: none;
    display: inline-block;
    transition: all 0.3s ease; /* Garante que a mudança de cor seja suave */
}

/* --- NOVO: EFEITO AO PASSAR O MOUSE (HOVER) --- */
/* Isso faz ele escurecer e subir, igual ao do topo */
.cta-banner .primary-btn:hover {
    background-color: #3aa85d; /* Verde mais escuro */
    transform: translateY(-3px); /* Sobe um pouquinho */
    box-shadow: 0 10px 20px rgba(0,0,0,0.3); /* Sombra para dar profundidade */
}

/* O facho de luz (Flash) */
.cta-banner .primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-25deg);
    animation: shineEffect 4s infinite; 
}

/* Ajuste para Celular */
@media (max-width: 768px) {
    .cta-banner {
        padding: 40px 20px;
        background: linear-gradient(180deg, #242525 0%, #50c879 100%);
    }
    .cta-banner h2 {
        font-size: 1.8em;
    }
    .cta-banner .primary-btn {
        width: 100%;
        display: block;
        box-sizing: border-box;
    }
}