/* =====================================================
   ARQUIVO: assets/css/style.css 
   (TEMA: BLACK & YELLOW PREMIUM)
===================================================== */

/* --- 0. VARIÁVEIS (PALETA PRETO E AMARELO) --- */
:root {
    /* --- CORES NOVAS --- */
    --color-bg: #000000;                /* Fundo Preto Puro */
    --color-bg-header: rgba(0, 0, 0, 0.95); /* Cabeçalho Preto Translúcido */
    
    /* Cores de Destaque (Mantidas) */
    --color-primary: #f7c600;           /* Amarelo Ouro */
    --color-primary-hover: #ffda47;     /* Amarelo Claro (Hover) */
    
    /* Tipografia */
    --color-text-main: #ffffff;         /* Branco Puro para contraste máximo */
    --color-text-muted: #aaaaaa;        /* Cinza claro para textos secundários */
    --color-text-dark: #000000;         /* Preto (texto dentro de botões amarelos) */

    /* --- DIMENSÕES (Mantidas) --- */
    --container-width: 1120px;
    --header-height: 70px;
    --border-radius: 999px;
    --card-radius: 16px;
}

/* --- 1. RESET E BASE --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--color-bg); /* Usa o preto definido acima */
    color: var(--color-text-main);
    line-height: 1.5;
    /* REMOVIDO: background-image e configurações relacionadas */
}

/* REMOVIDO: body::before (A máscara azul não é mais necessária no fundo preto) */

img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }

/* REGRA GERAL DE LINKS */
a { text-decoration: none; transition: 0.3s; color: inherit; }
/* Garante que qualquer link solto fique amarelo no hover */
a:hover { color: var(--color-primary); }

/* --- 2. HEADER --- */
.landing-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--color-bg-header); /* Agora é preto translúcido */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    height: var(--header-height); display: flex; align-items: center;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.header-left { display: flex; align-items: center; gap: 10px; }
.logo-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--color-primary); box-shadow: 0 0 12px rgba(247, 198, 0, 0.7); }
.logo-text { font-weight: 700; font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-primary); }

.landing-nav { display: flex; gap: 24px; font-size: 14px; font-weight: 500; }
.landing-nav a { color: var(--color-text-main); opacity: 0.7; }
/* Hover específico do menu */
.landing-nav a:hover, .landing-nav a.nav-active { opacity: 1; color: var(--color-primary); }

/* --- 3. HERO SECTION --- */
.landing-main { padding-top: 60px; padding-bottom: 80px; }
.hero-section { padding-bottom: 60px; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }

.hero-tag {
    display: inline-block; color: var(--color-primary); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px;
    background: rgba(247, 198, 0, 0.15); padding: 6px 12px; border-radius: 4px;
}
.hero-title { font-size: clamp(32px, 5vw, 42px); line-height: 1.1; color: #ffffff; margin-bottom: 20px; }
.hero-subtitle { font-size: 16px; line-height: 1.6; color: var(--color-text-muted); margin-bottom: 32px; max-width: 540px; }

.hero-bullets { list-style: none; margin-bottom: 32px; font-size: 15px; color: var(--color-text-main); }
.hero-bullets li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 8px; }
.hero-bullets li::before { content: "•"; color: var(--color-primary); font-size: 1.2em; line-height: 1; }

/* BOTÕES */
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.landing-btn-fill, .landing-btn-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 28px; border-radius: var(--border-radius); text-decoration: none;
    font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
    cursor: pointer; transition: all 0.3s ease;
}
/* Botão Cheio (Amarelo com texto preto) */
.landing-btn-fill {
    background: var(--color-primary); color: var(--color-text-dark);
    border: 2px solid var(--color-primary); box-shadow: 0 4px 15px rgba(247, 198, 0, 0.2);
}
.landing-btn-fill:hover {
    background: var(--color-primary-hover); border-color: var(--color-primary-hover);
    transform: translateY(-2px); box-shadow: 0 10px 25px rgba(247, 198, 0, 0.4); color: var(--color-text-dark); /* Garante texto preto no hover */
}
/* Botão Contorno */
.landing-btn-outline { background: transparent; color: var(--color-primary); border: 2px solid rgba(247, 198, 0, 0.5); }
.landing-btn-outline:hover { border-color: var(--color-primary); background: rgba(247, 198, 0, 0.1); color: var(--color-primary); }

.hero-note { font-size: 12px; color: var(--color-text-muted); font-style: italic; }

.hero-photo-frame {
    position: relative; border-radius: 0; text-align: center; background: transparent;
    border: none; box-shadow: none; filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 0; margin-bottom: 20px; 
}
.hero-photo-frame img { margin: 0 auto; display: block; }

/* --- 4. SEÇÕES GERAIS E NOVOS BLOCOS --- */
.section { padding: 80px 0; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.center-text { text-align: center; max-width: 800px; margin: 0 auto 50px auto; }
.section-tag { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-primary); margin-bottom: 12px; }
.section-title { font-size: 28px; margin-bottom: 16px; color: #ffffff; }
.section-intro { font-size: 16px; line-height: 1.6; color: var(--color-text-muted); font-style: italic; }

/* CARTÕES (Visual Ajustado para o tema Preto) */
.tech-card {
    /* Mudança importante: Fundo agora é um cinza/preto translúcido, não mais azul */
    background: rgba(30, 30, 30, 0.6); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius); padding: 32px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(5px);
}
.tech-card:hover { transform: translateY(-5px); border-color: var(--color-primary); }

/* Grid Filtro */
.filter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.card-blue { border-top: 3px solid var(--color-primary); }
.card-red { border-top: 3px solid #ff4d4d; }
.card-title-gold { color: var(--color-primary); font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.card-title-red { color: #ff4d4d; font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.check-list, .cross-list { list-style: none; }
.check-list li, .cross-list li { margin-bottom: 12px; display: flex; gap: 10px; font-size: 15px; align-items: flex-start; }
.check-list li { color: #fff; }
.check-list li::before { content: "✓"; color: #00ff88; font-weight: bold; }
.cross-list li { color: var(--color-text-muted); }
.cross-list li::before { content: "✕"; color: #ff4d4d; font-weight: bold; }

/* Grid Pilares */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card { text-align: center; }
.pillar-number {
    font-size: 14px; font-weight: 700; color: var(--color-primary);
    border: 1px solid var(--color-primary); display: inline-block;
    padding: 4px 12px; border-radius: 20px; margin-bottom: 15px;
}
.pillar-card h3 { color: #fff; margin-bottom: 10px; font-size: 20px; }
.pillar-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; }
.pillar-card.highlight { background: rgba(247, 198, 0, 0.08); border-color: rgba(247, 198, 0, 0.3); }

/* --- 5. HISTÓRIA & RESULTADOS --- */
.section-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.section-content p { font-size: 15px; line-height: 1.8; color: rgba(255, 255, 255, 0.85); margin-bottom: 20px; }
.section-content strong { color: var(--color-primary); font-weight: 600; }

.social-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; margin-bottom: 40px; }
.social-card {
    /* Ajustado para fundo preto/cinza */
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px; overflow: hidden; transition: all 0.3s ease; position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3); height: 420px; 
}
.social-card:hover { transform: translateY(-5px); border-color: var(--color-primary); box-shadow: 0 10px 30px rgba(247, 198, 0, 0.15); }
.social-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.5s ease; opacity: 0.8; }
.social-card:hover img { transform: scale(1.05); opacity: 1; }
.social-cta { text-align: center; margin-top: 40px; }

/* --- 6. FOOTER --- */
.landing-footer { border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 30px 0; margin-top: auto; background: #000000; }
.footer-inner { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255, 255, 255, 0.4); }

/* --- RESPONSIVO --- */
@media (max-width: 900px) {
    .hero-grid, .section-grid, .filter-grid, .pillars-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-text, .center-text { text-align: center; }
    .hero-bullets li { justify-content: center; }
    .hero-cta-row { justify-content: center; }
    .hero-photo { display: flex; justify-content: center; margin-top: 20px; }
    .hero-photo-frame img { max-width: 80%; }
}
@media (max-width: 600px) {
    .header-inner { flex-direction: column; gap: 15px; }
    .landing-header { height: auto; padding: 15px 0; }
    .landing-btn-fill, .landing-btn-outline { width: 100%; }
    .footer-inner { flex-direction: column; align-items: center; gap: 10px; }
    .social-card { height: 380px; }
}


/* =====================================================
   ESTILOS ESPECÍFICOS: PÁGINA DE DÚVIDAS (FAQ)
   (Adicione isso ao final do seu style.css)
===================================================== */

/* Ajuste do container da grid */
.faq-grid-section {
    padding-bottom: 60px;
}

.faq-grid {
    display: grid;
    /* Cria colunas automáticas com largura mínima de 320px */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

/* ESTILO DO CARD DE DÚVIDA */
.faq-card {
    /* Fundo escuro translúcido (igual aos outros cards do site) */
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    padding: 32px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Efeito Hover: Borda Amarela e sobe um pouco */
.faq-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Destaque para cards especiais (ex: Investimento) */
.faq-card.highlight-card {
    border-color: rgba(247, 198, 0, 0.3);
    background: rgba(247, 198, 0, 0.05);
}

/* Ícone */
.faq-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
}

/* Títulos dentro do Card */
.faq-card h2 {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Textos e Listas */
.faq-card p, .faq-card li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 10px;
}

.faq-card strong {
    color: #fff;
    font-weight: 600;
}

.faq-card ul {
    list-style: none;
    padding-left: 0;
}

.faq-card ul li {
    position: relative;
    padding-left: 15px;
}

/* Bullet point amarelo */
.faq-card ul li::before {
    content: "•";
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

/* Texto pequeno/muted */
.text-muted {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-style: italic;
    margin-top: auto; /* Empurra para o fundo se usar flex */
}

/* Responsivo para Mobile */
@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr; /* Uma coluna no celular */
    }
    .faq-card {
        padding: 24px;
    }
}