/* ═══════════════════════════════════════════
   components.css — Header, Botões, Cards,
   Footer, Formulários, Badges
   ═══════════════════════════════════════════ */

/* ─── Header ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

@supports (backdrop-filter: blur(20px)) {
    .site-header {
        background-color: color-mix(in srgb, var(--bg-primary) 80%, transparent);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
    }
}

.nav-container {
    height: 64px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

/* Theme Toggle */
.theme-toggle-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle-btn:hover {
    background-color: var(--bg-surface-2);
    color: var(--text-primary);
    border-color: var(--accent);
}

.theme-toggle-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background-color: var(--bg-surface);
        border-bottom: 1px solid var(--border);
        padding: 1rem 24px;
    }

    .nav-links.active { display: flex; }

    .nav-links li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        font-size: 1rem;
    }

    .nav-links li:last-child a { border-bottom: none; }

    .mobile-menu-btn { display: block; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO — ESTILOS GENÉRICOS (todas as páginas com .hero)
   Fundo neutro, sem imagem. Imagem só existe em .hero--home.
   ═══════════════════════════════════════════════════════════════ */
/* ── Hero base (todas as páginas) ── */
/* ── Hero base (todas as páginas) ── */
.hero {
  position: relative;
  overflow: hidden;
}

/* Orbe decorativo de canto — presente em todas as páginas com .hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-subtle) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ═══════════════════════════════════════════════════════════════
   HERO HOME (.hero--home) — EXCLUSIVO de index.html
   Nunca use .hero--home em outras páginas.
   Para trocar a imagem: altere o url() abaixo.
   ═══════════════════════════════════════════════════════════════ */
/* ── Hero da HOME — sem tela cheia, sem centralização vertical ── */
/* ── Hero da HOME — sem tela cheia, sem centralização vertical ── */
.hero--home {
  background-image: url('../img/backgrounds/01-back.jpeg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: block;          /* SEM flex aqui */
  min-height: auto;        /* SEM 100vh */
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   HERO DO PRODUTO (.hero--produto-guia)
   ═══════════════════════════════════════════════════════════════ */
.hero--produto-guia {
    background-color: var(--bg-surface);
    padding: 5rem 1.5rem 3rem;
}

.hero--produto-guia .hero__content {
    max-width: 760px;
    margin: 0 auto;
}


/* Overlay escuro do hero */
.hero--home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.60),
    rgba(0, 0, 0, 0.80)
  );
  z-index: 0;
  pointer-events: none;
}

/* Orbes e container ficam acima do overlay */
.hero--home > .container {
    position: relative;
    z-index: 1;
}

.hero--home .hero-orb {
    z-index: 1;
    /* O position: absolute vem do animations.css, não sobrescrever! */
}

/* ───────────────────────────────────────────────────────────────
   Container do hero usa Grid de 2 colunas — padrão Apple:
   Coluna esquerda: bloco de texto (fixo)
   Coluna direita:  espaço vazio intencional (respiro visual)
   ─────────────────────────────────────────────────────────────── */
.hero--home > .container {
    width: 100%;
    display: grid;
    /* Desktop: texto ocupa metade esquerda, metade direita fica vazia */
    grid-template-columns: 1fr 1fr;
    align-items: flex-start; /* GARANTIA DE TOPO, não center */
}

/* Mobile e tablet: texto ocupa toda a largura */
@media (max-width: 767px) {
    .hero--home > .container {
        grid-template-columns: 1fr;
    }
}

/* ── Conteúdo do hero — mobile ── */
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding: 2rem 1.5rem;
  margin: 0 auto;
  text-align: left;
}

/* ── Conteúdo do hero — desktop ── */
@media (min-width: 1024px) {
  .hero--home .hero__content {
    max-width: 640px;
    padding: 3rem 1.5rem;
    margin-left: 8%;
    margin-right: auto;
    text-align: left;
  }
}

/* ───────────────────────────────────────────────────────────────
   Textos do hero home — brancos sobre o overlay escuro
   ─────────────────────────────────────────────────────────────── */
.hero--home .hero__eyebrow {
    color: rgba(255, 255, 255, 0.55);
}

.hero--home .hero__title {
    color: #FFFFFF;
}

.hero--home .hero__text {
    color: rgba(255, 255, 255, 0.70);
}

/* ───────────────────────────────────────────────────────────────
   Tipografia do hero — estilos base (todas as páginas)
   ─────────────────────────────────────────────────────────────── */
.hero__eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;     /* tracking largo — marca registrada Apple */
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: block;
}

.hero__title {
    font-family: var(--font-heading);
    /* clamp: mínimo 2.8rem (mobile) até 4.5rem (desktop widescreen) */
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.06;          /* compacto — padrão Apple para títulos hero */
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--text-primary);
    max-width: 520px;           /* linha curta para impacto visual */
}

.hero__text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 460px;           /* subtítulo mais estreito que o título */
    margin-bottom: 2rem;
    font-weight: 400;
}

/* ───────────────────────────────────────────────────────────────
   .hero__actions — wrapper dos botões
   Desktop: lado a lado | Mobile: coluna com largura total
   ─────────────────────────────────────────────────────────────── */
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

@media (max-width: 768px) {
    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .hero__actions .btn {
        min-width: 180px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   BOTÕES — Estilos base
   ═══════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

/* ── Botão primário — funciona em todas as páginas e ambos os temas ── */
/* Para alterar a cor de fundo/texto: mude as variáveis --accent no base.css */
.btn-primary {
    background-color: var(--accent);
    color: #FFFFFF;
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px var(--accent-glow);
}

/* ── Botão outline — usado em páginas internas (fundo neutro) ── */
/* Para alterar cor/borda: ajuste as propriedades abaixo */
.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background-color: var(--accent-subtle);
}

/* ── Botão Secundário ── */
.btn-secondary {
    background-color: transparent;
    border: 1.5px solid var(--accent);
    color: var(--accent);
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--color-on-accent, #FFFFFF);
}

/* ── Botão fantasma do hero (hero--home) — sempre sobre fundo escuro ── */
/* Para mudar a aparência deste botão no hero, ajuste aqui */
.btn-ghost-hero {
    background-color: transparent;
    /* Borda e texto brancos — funciona sobre o overlay escuro do hero */
    color: rgba(255, 255, 255, 0.90);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost-hero:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.75);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Ajuste fino no dark mode: lightmode tem overlay já escuro,
   então não é necessário mudar .btn-ghost-hero por tema —
   o overlay do hero home sempre garante o fundo escuro. */



/* ─── Cards de Pilares ─── */
.pillar-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.pillar-card:hover::before { opacity: 1; }

.pillar-icon {
    width: 48px;
    height: 48px;
    background-color: var(--accent-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.pillar-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pillar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.pillar-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* ─── Cards de Ebook ─── */
.ebook-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.ebook-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.ebook-cover {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--bg-surface-2), var(--bg-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ebook-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ebook-cover-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.ebook-cover-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 1.5;
}

.ebook-cover-placeholder span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.ebook-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.ebook-body h3 {
    font-size: 1.05rem;
    color: var(--text-primary);
}

.ebook-body p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
    flex: 1;
}

.ebook-body .btn {
    width: 100%;
    margin-top: 0.5rem;
    padding: 12px 20px;
}

/* ─── Seção "Nossa Identidade" (split layout) ─── */
.identity-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

.quote-block {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    position: relative;
}

.quote-block::before {
    content: '\201C';
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.2;
    line-height: 1;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.quote-reference {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ─── Badge Kiwify ─── */


/* ─── Checkout Seguro (Novo Padronizado) ─── */
.section--secure-purchase {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.secure-card {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 3rem 2.5rem 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--secure-border-color);
  background-color: var(--secure-card-bg);
  text-align: center;
}

.secure-card__shield {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid var(--secure-border-color);
  background-color: var(--secure-card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secure-border-color);
}

.secure-card__shield svg {
  width: 28px;
  height: 28px;
}

.secure-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: var(--secure-accent);
}

.secure-card__text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 2rem;
  color: var(--text-secondary);
}

.secure-card__powered {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.secure-card__powered-logo {
  height: 18px;
  display: block;
}

@media (max-width: 768px) {
  .secure-card {
    padding: 2.5rem 1.5rem 2rem;
    border-radius: 20px;
    margin: 0 1rem;
  }
  
  .secure-card__title {
    font-size: 1.4rem;
  }
}

/* ─── Footer ─── */
.site-footer {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 72px 0 0;
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 1.8fr 1fr 1fr; }
}

.footer-brand .logo {
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 240px;
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.footer-links li a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1;
}

@media (max-width: 640px) {
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── Forms ─── */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1.25rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control::placeholder { color: var(--text-muted); }

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-subtle);
}

/* ─── Divider ─── */
.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}

/* ─── Card geral ─── */
.card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* ═══════════════════════════════════════════
   Componentes exclusivos — sobre.html
   ═══════════════════════════════════════════ */

/* ─── Hero strip (intro menor) ─── */
.page-hero {
    padding: 100px 0 64px;
    border-bottom: 1px solid var(--border);
}

.page-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 720px;
}

.page-hero-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-hero-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* Badge "Fundador" */
.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: var(--accent-subtle);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}

/* ─── Layout duas colunas para seções ─── */
.section-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 768px) {
    .section-split {
        grid-template-columns: 1fr 380px;
        gap: 64px;
    }
}

/* ─── Bloco de citação lateral ─── */
.aside-quote {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    position: sticky;
    top: 90px;
}

.aside-quote p {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.75;
    color: var(--text-primary);
}

.aside-quote::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.25;
    line-height: 0.5;
    display: block;
    margin-bottom: 0.5rem;
}

/* ─── Blocos de formação (cards internos) ─── */
.formation-block {
    border-left: 3px solid var(--accent);
    padding: 0 0 0 1.5rem;
    margin-top: 2.5rem;
}

.formation-block:first-child { margin-top: 0; }

.formation-block-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.formation-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.tcc-title {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--accent);
}

/* ─── Seção Propósito (destaque) ─── */
.purpose-section {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
    .purpose-section { padding: 2rem 1.5rem; }
}

.doxa-highlight {
    margin-top: 2rem;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, var(--accent-subtle), transparent);
    border-radius: var(--radius-md);
    border: 1px solid var(--accent-subtle);
}

.doxa-highlight p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.75;
    color: var(--text-primary);
}

/* ─── Grid de credenciais ─── */
.credential-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
}

@media (min-width: 640px) {
    .credential-grid { grid-template-columns: repeat(2, 1fr); }
}

.credential-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}

.credential-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.credential-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--accent-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.credential-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    line-height: 1.4;
}

.credential-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── Seção convite final ─── */
.convite-section {
    text-align: center;
    padding: 100px 0;
}

.convite-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1.25rem;
}

.convite-section p {
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ─── Separador de seção ─── */
.section-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   LANDING PAGE — Guia de Sobrevivência no Brasil
   Componentes específicos da página de vendas
   ═══════════════════════════════════════════════════════════════ */

/* ─── Hero da landing page ─── */
.lp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--hero-gradient);
    padding: 120px 0 100px;
    z-index: 0;
}
.lp-hero-deco { position: absolute; border-radius: 50%; pointer-events: none; }
.lp-hero-deco--1 { top:-200px;right:-150px;width:600px;height:600px;background:radial-gradient(circle,var(--accent-subtle) 0%,transparent 60%); }
.lp-hero-deco--2 { bottom:-180px;left:-120px;width:480px;height:480px;background:radial-gradient(circle,var(--accent-subtle) 0%,transparent 60%); }
.lp-hero-deco--3 { top:40%;left:55%;width:200px;height:200px;background:radial-gradient(circle,rgba(245,158,11,0.06) 0%,transparent 70%); }

.lp-eyebrow { font-size:.75rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--accent);margin-bottom:1.25rem;display:flex;align-items:center;gap:.75rem; }
.lp-eyebrow::before { content:'';display:inline-block;width:28px;height:2px;background:var(--accent);border-radius:2px; }

.lp-h1 { font-family: var(--font-heading);font-size:clamp(2.2rem,5.5vw,3.8rem);font-weight:700;line-height:1.15;letter-spacing:-.02em;color:var(--text-primary);margin-bottom:1.5rem; }
.lp-subheadline { font-size:1.15rem;line-height:1.75;color:var(--text-secondary);max-width:620px;margin-bottom:1.25rem; }
.lp-body { font-size:1rem;line-height:1.85;color:var(--text-secondary);max-width:620px;margin-bottom:2rem; }

/* ─── Lista de bullets ─── */
.check-list { list-style:none;display:flex;flex-direction:column;gap:.75rem;margin-bottom:2rem; }
.check-list li { display:flex;align-items:flex-start;gap:.75rem;font-size:.975rem;line-height:1.6;color:var(--text-secondary); }
.check-list li svg { flex-shrink:0;margin-top:2px; }

/* ─── Botão CTA com pulso ─── */
@keyframes btnPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(124,92,252,0.4); }
    50%      { box-shadow: 0 0 0 12px rgba(124,92,252,0); }
}
.btn-pulse { animation: btnPulse 2.4s ease-in-out infinite; }
.btn-pulse:hover { animation: none; }
@media (prefers-reduced-motion: reduce) { .btn-pulse { animation:none !important; } }

/* ─── Utilitários de cor ─── */
.text-amber { color:#F59E0B;font-weight:600; }
.accent-divider { border:none;height:2px;background:linear-gradient(90deg,var(--accent),transparent);margin:0;opacity:.4; }

/* ─── Grid de cards de conteúdo ─── */
.content-grid { display:grid;grid-template-columns:1fr;gap:1.25rem;margin-top:2.5rem; }
@media (min-width:640px) { .content-grid { grid-template-columns:repeat(2,1fr); } }

.content-card { background-color:var(--bg-surface);border:1px solid var(--border);border-radius:var(--radius-lg);padding:1.5rem;transition:var(--transition);position:relative;overflow:hidden; }
.content-card::before { content:'';position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,var(--accent),transparent);opacity:0;transition:opacity .3s ease; }
.content-card:hover { transform:translateY(-4px);border-color:var(--accent);box-shadow:0 8px 32px rgba(124,92,252,.12); }
.content-card:hover::before { opacity:1; }
.content-card-icon { width:40px;height:40px;background-color:var(--accent-subtle);border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;margin-bottom:1rem; }
.content-card-icon svg { width:20px;height:20px;stroke:var(--accent);fill:none;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round; }
.content-card h3 { font-size:1rem;font-weight:600;color:var(--text-primary);margin-bottom:.6rem;line-height:1.4; }
.content-card p { font-size:.875rem;line-height:1.7;color:var(--text-secondary); }

/* ─── Seção Para Quem É ─── */
.audience-grid { display:grid;grid-template-columns:1fr;gap:1.5rem;margin-top:2.5rem; }
@media (min-width:640px) { .audience-grid { grid-template-columns:1fr 1fr; } }
.audience-col { border-radius:var(--radius-lg);padding:2rem;border:1px solid var(--border); }
.audience-col--yes { background-color:rgba(16,185,129,.05);border-color:rgba(16,185,129,.2); }
.audience-col--no  { background-color:rgba(239,68,68,.05);border-color:rgba(239,68,68,.2); }
.audience-col h3 { font-size:1.1rem;margin-bottom:1.25rem;color:var(--text-primary); }

/* ─── Citação personagem ─── */
.character-quote { font-family: var(--font-heading);font-size:clamp(1.4rem,3vw,2rem);font-style:italic;font-weight:700;color:var(--accent);text-align:center;margin:2rem 0;line-height:1.4;padding:1.5rem 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border); }

/* ─── Card da Oferta ─── */
.offer-card { background-color:var(--bg-surface);border:1px solid var(--accent);border-radius:var(--radius-lg);padding:2.5rem;box-shadow:0 0 40px rgba(124,92,252,.08);max-width:720px;margin:2.5rem auto 0; }
.offer-block-item { display:flex;align-items:flex-start;gap:1.25rem;padding:1.5rem 0;border-bottom:1px solid var(--border); }
.offer-block-item:last-child { border-bottom:none; }
.offer-block-icon { flex-shrink:0;width:48px;height:48px;background-color:var(--accent-subtle);border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center; }
.offer-block-icon svg { width:24px;height:24px;stroke:var(--accent);fill:none;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round; }
.offer-block-text h3 { font-size:1rem;font-weight:600;color:var(--text-primary);margin-bottom:.6rem; }
.offer-block-text p, .offer-block-text ul { font-size:.9rem;color:var(--text-secondary);line-height:1.7; }

/* ─── Preço ─── */
.price-badge { text-align:center;margin-top:2rem;padding:1.5rem;background:linear-gradient(135deg,var(--accent-subtle),transparent);border-radius:var(--radius-md);border:1px solid var(--accent-subtle); }
.price-badge .price-label { font-size:.75rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--text-muted);margin-bottom:.5rem; }
.price-badge .price-value { font-family: var(--font-heading);font-size:3rem;font-weight:700;color:var(--accent);line-height:1; }
.price-badge .price-cents { font-size:1.5rem;vertical-align:super; }
.price-badge .price-note { font-size:.875rem;color:var(--text-muted);margin-top:.5rem; }

/* ─── FAQ Acordeão ─── */
.faq-list { list-style:none;max-width:760px;margin:2.5rem auto 0;display:flex;flex-direction:column;gap:.75rem; }
.faq-item { background-color:var(--bg-surface);border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden;transition:border-color .2s ease; }
.faq-item.open { border-color:var(--accent); }
.faq-question { width:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1.25rem 1.5rem;background:none;border:none;cursor:pointer;text-align:left;font-family: var(--font-body);font-size:.975rem;font-weight:600;color:var(--text-primary);transition:color .2s ease; }
.faq-question:hover { color:var(--accent); }
.faq-chevron { flex-shrink:0;width:20px;height:20px;stroke:var(--text-muted);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:transform .3s ease,stroke .2s ease; }
.faq-item.open .faq-chevron { transform:rotate(180deg);stroke:var(--accent); }
.faq-answer { max-height:0;overflow:hidden;transition:max-height .35s cubic-bezier(.16,1,.3,1); }
.faq-answer-inner { padding:1.25rem 1.5rem 1.5rem;font-size:.925rem;line-height:1.8;color:var(--text-secondary);border-top:1px solid var(--border); }

/* ─── Segurança CTA ─── */
.lp-security-bar { display:flex;align-items:center;justify-content:center;gap:.6rem;margin-top:1.25rem;font-size:.8rem;color:var(--text-muted); }
.lp-security-bar svg { width:16px;height:16px;stroke:var(--text-muted);fill:none;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round; }

/* ─── H2 do CTA final ─── */
.lp-cta-h2 { font-family: var(--font-heading);font-size:clamp(1.75rem,4vw,2.8rem);font-weight:700;line-height:1.25;max-width:680px;margin:0 auto 2rem; }

/* ─── Grid de diferenciais ─── */
.diff-grid { display:grid;grid-template-columns:1fr;gap:1.25rem;margin-top:2.5rem; }
@media (min-width:640px) { .diff-grid { grid-template-columns:repeat(2,1fr); } }
.diff-card { background-color:var(--bg-surface);border:1px solid var(--border);border-radius:var(--radius-md);padding:1.5rem;transition:var(--transition); }
.diff-card:hover { border-color:var(--accent);transform:translateY(-3px);box-shadow:var(--shadow-sm); }
.diff-card h3 { font-size:.975rem;font-weight:600;color:var(--text-primary);margin-bottom:.6rem; }
.diff-card p { font-size:.875rem;line-height:1.7;color:var(--text-secondary); }

/* Nota: o fundo do hero home está em .hero--home (exclusivo de index.html) */
/* Arquivo de imagem: assets/img/backgrounds/01-back.jpeg */

@media (max-width: 768px) {
    /* Desativa parallax dos orbes em mobile — iOS/Safari */
    [data-parallax] {
        transform: none !important;
        will-change: auto !important;
    }
}

/* ═══════════════════════════════════════════
   FINANCE HUB BLOCK
   ═══════════════════════════════════════════ */

/* ── SUB-SEÇÃO 1: Hero ── */

.fh-hero {
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  max-width: 760px;
  margin: 0 auto;
}

.fh-hero__logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.fh-hero__logo {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.25);
  background-color: #ffffff;
}

.fh-hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.8vw, 2.2rem);
  color: var(--text-primary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.fh-hero__title--accent {
  color: #0a84ff; /* azul Apple / Finance Hub */
}

.fh-hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-secondary);
  opacity: 0.9;
}

/* ── SUB-SEÇÃO 2: Gráficos ── */
.fh-charts__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin-bottom: 0.4rem;
}

.fh-charts__title span {
  color: #0a84ff; /* “parar de adivinhar” em azul */
}

.fh-charts__subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  opacity: 0.8;
  margin-bottom: 1.25rem; /* Margem reduzida */
}

.fh-charts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .fh-charts-grid {
    grid-template-columns: 1fr;
  }
}

.fh-card {
  border-radius: 20px;
  padding: 1rem 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="light"] .fh-card {
  background-color: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

[data-theme="dark"] .fh-card {
  background-color: #101018;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.fh-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.fh-card__header {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.fh-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background-color: rgba(10, 132, 255, 0.08);
  color: #0a84ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fh-card__icon svg {
  width: 18px;
  height: 18px;
}

.fh-card__title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.fh-card__desc {
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--text-secondary);
}

.fh-card__value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #30d158;
  margin-bottom: 0.35rem;
}

.fh-card__chart-wrap {
  margin-top: 0.15rem;
}

/* legendas do card 2 */
.fh-card__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  margin-bottom: 0.25rem;
  color: var(--text-secondary);
}

.fh-legend--red { color: #ff453a; }
.fh-legend--green { color: #30d158; }

.fh-card__note {
  font-family: var(--font-body);
  font-size: 0.7rem;
  opacity: 0.5;
  margin-top: 0.4rem;
  text-align: right;
}

/* card pizza centralizado */
.fh-card__chart-wrap--pie {
  max-width: 220px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .fh-card {
    border-radius: 20px;
    padding: 1.25rem 1.25rem 1.1rem;
  }
}


/* ── SUB-SEÇÃO 3: CTA ── */

.fh-cta {
  max-width: 680px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: left;
}

@media (max-width: 768px) {
  .fh-cta {
    text-align: center;
  }
}

.fh-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0.75rem 0;
  line-height: 1.2;
}

.fh-cta__text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

.fh-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fh-bullets__item {
  font-family: var(--font-body);
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.fh-bullets__icon {
  color: #30d158;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.fh-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .fh-cta__actions {
    flex-direction: column;
  }

  .fh-cta__actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* Wrapper geral do stack do Finance Hub */
.fh-stack-wrapper {
  position: relative;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

/* Zera margens externas das sections dentro do stack e aplica position sticky para fixar no topo */
.fh-stack-container .fh-sticky-section {
  position: sticky;
  top: 60px; /* Mais alto para caber conteúdo longo */
  margin: 0;
  padding: 0;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fh-hero-section.fh-sticky-section {
  z-index: 1;
  margin-bottom: 2rem;
}

.fh-charts-section.fh-sticky-section {
  z-index: 2;
  margin-bottom: 40vh; /* Usa viewport height para garantir espaço de scroll proporcional */
}

.fh-cta-section.fh-sticky-section {
  z-index: 3;
  margin-top: 0; 
}

/* O último cartão não precisa de margem inferior extra dentro do wrapper */
.fh-stack-container .fh-sticky-section:last-child {
  margin-bottom: 0;
}

/* Dar sombra, borda e limite de largura de cartão para cada bloco, individualmente */
.fh-hero-section .container,
.fh-charts-section .container,
.fh-cta-section .container {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 28px;
  background-color: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

/* Em dark mode, cartões escuros */
[data-theme="dark"] .fh-hero-section .container,
[data-theme="dark"] .fh-charts-section .container,
[data-theme="dark"] .fh-cta-section .container {
  background-color: #101018;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.9);
}

/* Espaçamento interno de cada cartão */
.fh-hero-section .container {
  padding: 3.5rem 2rem 3rem;
}

.fh-charts-section .container {
  padding: 2.25rem 2rem;
}

.fh-cta-section .container {
  padding: 2.25rem 2.5rem;
}

@media (max-width: 768px) {
  /* Em mobile, desabilitar o sticky para os cards fluírem naturalmente e não sobreporem se a tela for muito pequena */
  .fh-stack-container .fh-sticky-section {
    position: relative;
    top: auto;
    margin-bottom: 2rem;
  }

  .fh-hero-section .container,
  .fh-charts-section .container,
  .fh-cta-section .container {
    border-radius: 22px;
    padding: 2.25rem 1.5rem 2.25rem;
  }
}

/* ----- WhatsApp Button Styles ----- */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #25d366;
  background-color: transparent;
  color: #25d366;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-whatsapp:hover {
  background-color: #25d366;
  color: #ffffff;
  border-color: #25d366;
}

[data-theme="dark"] .btn-whatsapp {
  border-color: #25d366;
  color: #25d366;
}

[data-theme="dark"] .btn-whatsapp:hover {
  background-color: #25d366;
  color: #050509;
}
