/* ═══════════════════════════════════════════════════════════════
   LP G360 PARA EMPRESAS · CSS específico
   Herda: ../../styles.css (tokens + .container + .btn + .placeholder
                            + .marquee + .site-header + .footer + .reveal)
   Mobile-first | Breakpoints: 375 · 768 · 1280
   Cadência: navy → paper → navy → paper (alternando)
   Tipografia mínima: 16px em leitura · 11-13px só em labels uppercase
   ═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS LOCAIS ───────────────────────────────────────── */
.g360-essencia,
.g360-ciclos,
.g360-form-section {
  --pad-y: 80px;
}
@media (min-width: 768px) {
  .g360-essencia,
  .g360-ciclos,
  .g360-form-section {
    --pad-y: 112px;
  }
}

/* ─── EMPHASIS — gradient tipográfico premium (#1E5EFF → #3B82FF → #59B8FF)
   Aplicado em TODAS as palavras-chave destacadas com <em> na LP.
   Cirúrgico: só afeta o elemento <em> específico, sem cascatear pros pais.
   Padrão editorial enterprise: royal profundo → vibrante → luminoso. ──── */
.hero--g360 em,
.g360-form-section em,
.g360-espelhos em,
.g360-ciclos em,
.g360-essencia em,
.g360-trilhas em,
.g360-faq em,
.g360-cta-final em,
.g360-faixa-cta em {
  font-style: normal;
  font-weight: 800;
  background-image: linear-gradient(135deg, #1E5EFF 0%, #3B82FF 50%, #59B8FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Fallback caso o browser não suporte background-clip:text */
  color: #3B82FF;
}

/* ═══════════════════════════════════════════════════════════════
   SISTEMA DE BOTÕES — 4 tiers narrativos
   Tier 1 (.btn--g360-hero): a ação principal da página
   Tier 2 (.btn--primary-exec puro): contextual de dor (fica como esta)
   Tier 3 (.btn--g360-editorial): convite consultivo (outline + seta)
   Tier 4 (.btn--g360-big-closer): momento da decisão (gradient + glow)
   ═══════════════════════════════════════════════════════════════ */

/* ─── TIER 1 · HERO PRIMARY ──────────────────────────────────────
   Usado SÓ no CTA do Hero. Combina com .btn .btn--primary-exec.
   Diferencial: altura maior, shimmer no hover, glow mais presente. */
.btn--g360-hero {
  position: relative;
  min-height: 56px;
  padding: 16px 32px;
  font-size: 13px;
  background: var(--blue);
  box-shadow:
    0 8px 24px rgba(26, 95, 232, 0.30),
    0 2px 6px rgba(26, 95, 232, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.btn--g360-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 1;
  transition: left 0.7s ease;
}
.btn--g360-hero:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow:
    0 14px 36px rgba(26, 95, 232, 0.42),
    0 4px 10px rgba(26, 95, 232, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn--g360-hero:hover::before {
  left: 130%;
}
.btn--g360-hero > * { position: relative; z-index: 2; }

@media (min-width: 768px) {
  .btn--g360-hero {
    min-height: 60px;
    padding: 18px 36px;
    font-size: 13px;
  }
}

/* ─── TIER 3 · EDITORIAL GHOST ───────────────────────────────────
   Usado em fechamentos consultivos (após dobras de método).
   Substitui .btn--primary-exec (não combina com ele).
   Estilo: outline royal, transparente, vira filled no hover. */
.btn--g360-editorial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 24px;
  background: rgba(26, 95, 232, 0.08);
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(26, 95, 232, 0.12);
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.btn--g360-editorial svg {
  transition: transform 0.22s ease;
}
.btn--g360-editorial:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(26, 95, 232, 0.30);
}
.btn--g360-editorial:hover svg {
  transform: translateX(4px);
}
/* Variante para uso sobre fundo navy (paineis escuros) */
.btn--g360-editorial--on-navy {
  color: var(--cyan);
  background: rgba(31, 182, 240, 0.10);
  border-color: rgba(31, 182, 240, 0.70);
  box-shadow: 0 4px 16px rgba(31, 182, 240, 0.14);
}
.btn--g360-editorial--on-navy:hover {
  background: rgba(31, 182, 240, 0.18);
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 8px 24px rgba(31, 182, 240, 0.28);
}

/* ─── TIER 4 · BIG CLOSER ────────────────────────────────────────
   Usado SÓ no CTA final ("momento da decisão"). Combina com
   .btn .btn--primary-exec. Tratamento premium maximum. */
.btn--g360-big-closer {
  position: relative;
  min-height: 64px;
  padding: 20px 40px;
  font-size: 13px;
  background-image: linear-gradient(135deg, #1E5EFF 0%, #1A5FE8 55%, #1747C2 100%);
  background-color: var(--blue);
  box-shadow:
    0 16px 40px rgba(26, 95, 232, 0.40),
    0 4px 12px rgba(31, 182, 240, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}
.btn--g360-big-closer::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(31, 182, 240, 0.45), rgba(26, 95, 232, 0.55));
  filter: blur(14px);
  opacity: 0.6;
  z-index: -1;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.btn--g360-big-closer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 1;
  transition: left 0.8s ease;
}
.btn--g360-big-closer:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 56px rgba(26, 95, 232, 0.52),
    0 8px 18px rgba(31, 182, 240, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.10);
}
.btn--g360-big-closer:hover::before {
  opacity: 0.85;
  filter: blur(18px);
}
.btn--g360-big-closer:hover::after {
  left: 130%;
}
.btn--g360-big-closer > * { position: relative; z-index: 2; }

@media (min-width: 768px) {
  .btn--g360-big-closer {
    min-height: 68px;
    padding: 22px 44px;
    font-size: 14px;
  }
}

/* ─── Respeita reduced-motion (acessibilidade) ──────────────────── */
@media (prefers-reduced-motion: reduce) {
  .btn--g360-hero::before,
  .btn--g360-big-closer::before,
  .btn--g360-big-closer::after {
    display: none;
  }
  .btn--g360-hero:hover,
  .btn--g360-big-closer:hover,
  .btn--g360-editorial:hover {
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   D01 · HERO (sem form, alinhado à esquerda — fundo igual ao da home)
   ═══════════════════════════════════════════════════════════════ */
.hero--g360 {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero--g360::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 460px at 80% 22%, rgba(31, 182, 240, 0.18), transparent 65%),
    radial-gradient(700px 480px at 14% 88%, rgba(26, 95, 232, 0.16), transparent 70%);
}

.hero-in--g360 {
  display: flex;
  justify-content: flex-start;
}

.hero__left--g360 {
  width: 100%;
  max-width: 980px;
  text-align: left;
}

/* Logo G360 placeholder (acima do H1) */
/* Logo G360 oficial — assinatura institucional acima do H1 */
.g360-hero__logo-wrap {
  margin-bottom: 28px;
}
.g360-hero__logo-img {
  width: auto;
  height: 44px;
  display: block;
  /* Garante que SVG escala bem em retina */
  max-width: 240px;
}
@media (min-width: 768px) {
  .g360-hero__logo-img {
    height: 52px;
    max-width: 280px;
  }
}

/* Eyebrow do hero — mesmo padrão da home (cinza + tracinho cyan antes) */
.hero--g360 .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-dark-mute, rgba(255, 255, 255, 0.55));
  margin-bottom: 24px;
}
.hero--g360 .hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--cyan);
  flex-shrink: 0;
}

.hero--g360 .hero__h1 {
  font-size: clamp(32px, 5.4vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 0 0 24px;
  text-wrap: balance;
  max-width: 20ch;
}

.hero--g360 .hero__sub {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.84);
  max-width: 62ch;
  margin: 0 0 40px;
  font-weight: 400;
}

.hero--g360 .hero__cta-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .hero--g360 .hero__cta-row {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}
.hero__cta-microcopy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  font-weight: 400;
}

/* Selo de autoridade */
.g360-hero__selo {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
}
.g360-hero__selo li {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.g360-hero__selo strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════
   D03 · FORMULÁRIO (fundo branco, 2 colunas)
   ═══════════════════════════════════════════════════════════════ */
.g360-form-section {
  background: var(--white);
  color: var(--navy);
  padding: var(--pad-y) 0;
}

.g360-form-section__in {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .g360-form-section__in {
    grid-template-columns: 1fr 1.05fr;
    gap: 72px;
    align-items: start;
  }
}

.g360-form-section__copy {
  max-width: 540px;
}
.g360-form-section__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.g360-form-section__h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 28px;
  color: var(--navy);
}
.g360-form-section__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.g360-form-section__bullets li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 17px;
  line-height: 1.5;
  color: #2E3A52;
}
.g360-form-section__bullet-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 2px;
}



/* ═══════════════════════════════════════════════════════════════
   D04 · PARA QUEM É (5 espelhos, fundo navy com profundidade editorial)
   ═══════════════════════════════════════════════════════════════ */
.g360-espelhos {
  position: relative;
  color: var(--white);
  padding: var(--pad-y, 80px) 0;
  overflow: hidden;
  /* Fundo com 4 camadas pra criar profundidade sem chamar atenção:
     1. Base linear (navy escuro → navy médio → navy escuro) — variação tonal sutil
     2. Zona de luz cyan no canto sup-esquerdo (atrás da headline)
     3. Zona de luz royal no canto inf-direito (atrás dos cards)
     4. Vinheta nas bordas (escurece os 4 cantos sutilmente) */
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, transparent 50%, rgba(0, 0, 0, 0.20) 100%),
    radial-gradient(ellipse 55% 45% at 18% 25%, rgba(31, 182, 240, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 82% 78%, rgba(26, 95, 232, 0.08) 0%, transparent 65%),
    linear-gradient(180deg, var(--navy-deep, #06122B) 0%, var(--navy, #0B1B3A) 50%, var(--navy-deep, #06122B) 100%);
}

/* Textura: grid arquitetônico ultra-sutil (opacity 2.5%) */
.g360-espelhos::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

/* Garante que o conteúdo fica acima das camadas de fundo */
.g360-espelhos > .container {
  position: relative;
  z-index: 1;
}

.g360-espelhos__header {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}
.g360-espelhos__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.g360-espelhos__h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 18px;
  text-wrap: balance;
}
.g360-espelhos__sub {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 60ch;
  margin-inline: auto;
}

.g360-espelhos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
}

/* Profundidade sutil atrás do grid de cards */
.g360-espelhos__grid::before {
  content: "";
  position: absolute;
  inset: -8% -4%;
  background: radial-gradient(60% 50% at 50% 50%, rgba(26, 95, 232, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(20px);
}

@media (min-width: 768px) {
  .g360-espelhos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .g360-espelhos__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.g360-espelho {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.g360-espelho:hover {
  border-color: rgba(31, 182, 240, 0.35);
  transform: translateY(-2px);
}
.g360-espelho__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--cyan);
  margin-bottom: 14px;
}
.g360-espelho__tx {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
}

/* 6º card: fechamento da D04 (fecha o grid 2x3 sem buraco) */
.g360-espelho--fechamento {
  background: linear-gradient(135deg, rgba(31, 182, 240, 0.10) 0%, rgba(26, 95, 232, 0.20) 100%);
  border: 1px solid rgba(31, 182, 240, 0.32);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.g360-espelho--fechamento:hover {
  border-color: rgba(31, 182, 240, 0.55);
}
.g360-espelho-fechamento__tx {
  font-size: 17px;
  line-height: 1.45;
  color: var(--white);
  font-weight: 500;
  margin: 0;
}
.g360-espelho-fechamento__btn {
  align-self: flex-start;
  font-size: 11px;
}

/* ═══════════════════════════════════════════════════════════════
   D05 · OS DOIS CICLOS (fundo paper, 2 diagramas)
   ═══════════════════════════════════════════════════════════════ */
.g360-ciclos {
  background: var(--gray-light);
  color: var(--navy);
  padding: var(--pad-y) 0;
}
.g360-ciclos__header {
  max-width: 800px;
  margin: 0 auto 56px;
  text-align: center;
}
.g360-ciclos__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.g360-ciclos__h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 18px;
  text-wrap: balance;
  color: var(--navy);
}
.g360-ciclos__sub {
  font-size: 18px;
  line-height: 1.5;
  color: #2E3A52;
  margin: 0;
  max-width: 60ch;
  margin-inline: auto;
}

/* ═══════════════════════════════════════════════════════════════
   2 PAINÉIS NARRATIVOS LADO A LADO
   Contraste emocional: dim (apagado, neutro) × live (navy + cyan glow)
   ═══════════════════════════════════════════════════════════════ */
.g360-ciclos__panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}
@media (min-width: 768px) {
  .g360-ciclos__panels {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (min-width: 1280px) {
  .g360-ciclos__panels {
    gap: 36px;
  }
}

/* ─── PAINEL BASE ─────────────────────────────────────────────── */
.g360-ciclo-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 28px 32px;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 768px) {
  .g360-ciclo-panel {
    padding: 44px 40px 40px;
  }
}

/* ─── PAINEL DIM (Ciclo 01 — esforço sem método) ──────────────── */
.g360-ciclo-panel--dim {
  background: #F0F1F4; /* paper fosco, dessaturado */
  color: #54607A; /* texto cinza-azulado opaco */
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 2px 12px rgba(11, 22, 40, 0.04);
}

/* ─── PAINEL LIVE (Ciclo 02 — evolução contínua) ──────────────── */
.g360-ciclo-panel--live {
  background:
    radial-gradient(ellipse 70% 50% at 30% 20%, rgba(31, 182, 240, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 100%, rgba(26, 95, 232, 0.22) 0%, transparent 65%),
    linear-gradient(160deg, #0B1730 0%, #0F1F3D 50%, #122849 100%);
  color: rgba(255, 255, 255, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 64px rgba(11, 22, 40, 0.32),
    0 8px 24px rgba(26, 95, 232, 0.15);
}
.g360-ciclo-panel--live::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

/* ─── HEAD (selo + kicker + título + sub) ─────────────────────── */
.g360-ciclo-panel__head {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(11, 22, 40, 0.08);
}
.g360-ciclo-panel--live .g360-ciclo-panel__head {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.g360-ciclo-panel__head-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.g360-ciclo-panel__mark {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.g360-ciclo-panel__mark--x {
  background: #FCE8E8;
  color: #B33B3B;
  box-shadow: 0 0 0 1px rgba(179, 59, 59, 0.2);
}
.g360-ciclo-panel__mark--ok {
  background: rgba(31, 182, 240, 0.16);
  color: var(--cyan);
  box-shadow: 0 0 0 1px rgba(31, 182, 240, 0.4), 0 0 20px rgba(31, 182, 240, 0.25);
}

.g360-ciclo-panel__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7C8AA3;
}
.g360-ciclo-panel--dim .g360-ciclo-panel__kicker {
  color: #B33B3B;
}
.g360-ciclo-panel--live .g360-ciclo-panel__kicker {
  color: var(--cyan);
}
.g360-ciclo-panel__kicker svg {
  opacity: 0.8;
}

.g360-ciclo-panel__title {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.g360-ciclo-panel--dim .g360-ciclo-panel__title {
  color: #2E3A52;
}
.g360-ciclo-panel--live .g360-ciclo-panel__title {
  color: #FFFFFF;
}

.g360-ciclo-panel__sub {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
  color: inherit;
  opacity: 0.78;
}

/* ─── LISTA (5 itens com timeline lateral) ────────────────────── */
.g360-ciclo-panel__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  flex: 1;
}
/* linha-guia vertical conectando os 5 itens */
.g360-ciclo-panel__list::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(11, 22, 40, 0.1);
}
.g360-ciclo-panel--dim .g360-ciclo-panel__list::before {
  background: linear-gradient(180deg,
    rgba(179, 59, 59, 0) 0%,
    rgba(179, 59, 59, 0.28) 20%,
    rgba(179, 59, 59, 0.28) 80%,
    rgba(179, 59, 59, 0) 100%);
}
.g360-ciclo-panel--live .g360-ciclo-panel__list::before {
  background: linear-gradient(180deg,
    rgba(31, 182, 240, 0) 0%,
    rgba(31, 182, 240, 0.4) 20%,
    rgba(31, 182, 240, 0.4) 80%,
    rgba(31, 182, 240, 0) 100%);
}

.g360-ciclo-panel__item {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .g360-ciclo-panel__item {
    font-size: 16px;
  }
}
/* bolinha de cada item */
.g360-ciclo-panel__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #C9CED8;
  box-shadow: 0 0 0 3px #F0F1F4; /* mesma cor do fundo dim */
}
.g360-ciclo-panel--dim .g360-ciclo-panel__item::before {
  background: #B33B3B;
  box-shadow: 0 0 0 3px #F0F1F4, 0 0 0 4px rgba(179, 59, 59, 0.18);
}
.g360-ciclo-panel--live .g360-ciclo-panel__item::before {
  background: var(--cyan);
  box-shadow: 0 0 0 3px #0F1F3D, 0 0 12px rgba(31, 182, 240, 0.6);
}

.g360-ciclo-panel__item strong {
  display: inline;
  font-weight: 700;
  margin-right: 6px;
}
.g360-ciclo-panel--dim .g360-ciclo-panel__item strong {
  color: #2E3A52;
}
.g360-ciclo-panel--live .g360-ciclo-panel__item strong {
  color: #FFFFFF;
}

.g360-ciclo-panel__item span {
  color: inherit;
  opacity: 0.88;
}

/* ─── SÍNTESE (rodapé editorial do painel) ────────────────────── */
.g360-ciclo-panel__synth {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(11, 22, 40, 0.08);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  color: inherit;
}
.g360-ciclo-panel--live .g360-ciclo-panel__synth {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.g360-ciclo-panel__synth strong {
  font-weight: 700;
}
.g360-ciclo-panel--dim .g360-ciclo-panel__synth strong {
  color: #2E3A52;
}
.g360-ciclo-panel--live .g360-ciclo-panel__synth strong {
  color: var(--cyan);
}

/* ─── FECHAMENTO EDITORIAL (após os 2 painéis) ────────────────── */
.g360-ciclos__fechamento {
  max-width: 760px;
  margin: 64px auto 0;
  text-align: center;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  color: #2E3A52;
  position: relative;
  padding-top: 32px;
}
.g360-ciclos__fechamento::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--cyan);
}
.g360-ciclos__fechamento strong {
  color: var(--navy);
  font-weight: 700;
  display: inline;
}
@media (min-width: 768px) {
  .g360-ciclos__fechamento {
    margin-top: 80px;
    padding-top: 40px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FAIXA CTA INLINE (fundo royal, botão branco)
   ═══════════════════════════════════════════════════════════════ */
.g360-faixa-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 48px 0;
}
@media (min-width: 768px) {
  .g360-faixa-cta { padding: 56px 0; }
}
.g360-faixa-cta__in {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media (min-width: 768px) {
  .g360-faixa-cta__in {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}
.g360-faixa-cta__h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  color: var(--white);
  text-wrap: balance;
  flex: 1;
}
.g360-faixa-cta__btn {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  flex-shrink: 0;
}
.g360-faixa-cta__btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ═══════════════════════════════════════════════════════════════
   D06 · O QUE É (e o que não é) — navy
   ═══════════════════════════════════════════════════════════════ */
.g360-essencia {
  background: var(--navy);
  color: var(--white);
  padding: var(--pad-y) 0;
}
.g360-essencia__header {
  max-width: 880px;
  margin: 0 auto 56px;
  text-align: center;
}
.g360-essencia__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.g360-essencia__h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 18px;
  text-wrap: balance;
}
.g360-essencia__sub {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 60ch;
  margin-inline: auto;
}

/* ─── PAIR: manifesto editorial (esq) × peça hero premium (dir) ─── */
.g360-essencia__pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .g360-essencia__pair {
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center;
  }
}

/* ─── MINI-LABEL institucional (tracinho cyan + mono uppercase) ─── */
.g360-essencia__mini-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D9626B; /* burgundy claro — anuncia coluna negativa */
  margin-bottom: 32px;
}
.g360-essencia__mini-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #B33B3B; /* burgundy — coerencia com painel dim dos Ciclos */
  flex-shrink: 0;
}
.g360-essencia__mini-label--eh {
  color: var(--cyan);
}
.g360-essencia__mini-label--eh .g360-essencia__mini-line {
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(31, 182, 240, 0.6);
}

/* ─── ESQUERDA: lista editorial sem caixa (manifesto) ──────────── */
.g360-essencia__nao {
  padding: 0;
  background: transparent;
  border: none;
}

.g360-essencia__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.g360-essencia__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.g360-essencia__item:first-child {
  border-top: none;
  padding-top: 0;
}
.g360-essencia__item:last-child {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .g360-essencia__item {
    padding: 26px 0;
    gap: 22px;
  }
}

.g360-essencia__item-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(179, 59, 59, 0.14);
  color: #D9626B;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
  box-shadow: 0 0 0 1px rgba(179, 59, 59, 0.28);
}
@media (min-width: 768px) {
  .g360-essencia__item-mark {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

.g360-essencia__item-tx {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.g360-essencia__item-tx strong {
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  letter-spacing: -0.005em;
}
.g360-essencia__item-tx span {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}
@media (min-width: 768px) {
  .g360-essencia__item-tx span {
    font-size: 16px;
  }
}

/* ─── DIREITA: peça hero premium (revelação) ──────────────────── */
.g360-essencia__eh {
  position: relative;
  padding: 40px 28px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(31, 182, 240, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 90% 100%, rgba(26, 95, 232, 0.28) 0%, transparent 65%),
    linear-gradient(155deg, #0E1F3D 0%, #102649 55%, #142E55 100%);
  border: 1px solid rgba(31, 182, 240, 0.22);
  box-shadow:
    0 24px 64px rgba(11, 22, 40, 0.50),
    0 8px 24px rgba(26, 95, 232, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 768px) {
  .g360-essencia__eh {
    padding: 52px 44px;
  }
}
@media (min-width: 1024px) {
  .g360-essencia__eh {
    padding: 60px 52px;
  }
}

/* Grid texture sutil + glow externo orbitando */
.g360-essencia__eh::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 90%);
}
.g360-essencia__eh::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 182, 240, 0.20) 0%, transparent 70%);
  filter: blur(16px);
  pointer-events: none;
  z-index: -1;
}

.g360-essencia__eh-h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 20px;
  color: var(--white);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.g360-essencia__eh-p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}
@media (min-width: 768px) {
  .g360-essencia__eh-p {
    font-size: 17px;
  }
}
.g360-essencia__eh-p strong {
  color: var(--white);
  font-weight: 600;
  display: block;
  margin-top: 14px;
}

/* ─── FECHAMENTO editorial ─────────────────────────────────────── */
.g360-essencia__fechamento {
  max-width: 720px;
  margin: 64px auto 0;
  text-align: center;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  padding-top: 32px;
}
.g360-essencia__fechamento::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(31, 182, 240, 0.6);
}

/* ═══════════════════════════════════════════════════════════════
   D07 · MÉTODO 4+1 — usa as classes .pilares / .pilar-card da home
   (estilo herdado 100% de ../../styles.css, sem CSS específico aqui)
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   D08 · DO OPERADOR AO DIRETOR (navy)
   ═══════════════════════════════════════════════════════════════ */
.g360-trilhas {
  background: var(--navy);
  color: var(--white);
  padding: var(--pad-y, 80px) 0;
}
.g360-trilhas__header {
  max-width: 880px;
  margin: 0 auto 48px;
  text-align: center;
}
.g360-trilhas__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.g360-trilhas__h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 18px;
  text-wrap: balance;
}
.g360-trilhas__sub {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 60ch;
  margin-inline: auto;
}

/* ─── STACKS HORIZONTAIS conectados por timeline vertical ─── */
.g360-trilhas__stacks {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 980px;
  position: relative;
}

/* Linha-guia vertical conectando os 5 stacks (passa atras dos numeros) */
.g360-trilhas__stacks::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: linear-gradient(180deg,
    rgba(31, 182, 240, 0) 0%,
    rgba(31, 182, 240, 0.50) 10%,
    rgba(31, 182, 240, 0.50) 90%,
    rgba(31, 182, 240, 0) 100%);
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 768px) {
  .g360-trilhas__stacks::before {
    left: 39px;
  }
}

.g360-trilha-stack {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: padding 0.2s ease;
}
.g360-trilha-stack:last-child {
  border-bottom: none;
}
@media (min-width: 768px) {
  .g360-trilha-stack {
    grid-template-columns: 80px 1fr;
    gap: 28px;
    padding: 32px 0;
  }
}

/* Numero grande na esquerda — funciona como "no'" da timeline */
.g360-trilha-stack__num {
  font-family: var(--font-mono);
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1;
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(31, 182, 240, 0.35);
  background: var(--navy);
  padding: 6px 4px;
  text-align: center;
  width: fit-content;
  justify-self: center;
  position: relative;
  z-index: 1;
  transition: text-shadow 0.25s ease, transform 0.25s ease;
}

/* Anel sutil ao redor do numero (reforca "no'" da timeline) */
.g360-trilha-stack__num::before {
  content: "";
  position: absolute;
  inset: -10px -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 182, 240, 0.10) 0%, transparent 70%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.g360-trilha-stack:hover .g360-trilha-stack__num {
  text-shadow: 0 0 28px rgba(31, 182, 240, 0.7);
  transform: translateX(2px);
}
.g360-trilha-stack:hover .g360-trilha-stack__num::before {
  opacity: 1;
}

.g360-trilha-stack__body {
  padding-top: 6px;
  min-width: 0;
}
@media (min-width: 768px) {
  .g360-trilha-stack__body {
    padding-top: 10px;
  }
}

.g360-trilha-stack__top {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.g360-trilha-stack__title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--white);
  letter-spacing: -0.01em;
}

.g360-trilha-stack__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 4px 10px;
  border: 1px solid rgba(31, 182, 240, 0.40);
  border-radius: 100px;
  background: rgba(31, 182, 240, 0.06);
  white-space: nowrap;
  line-height: 1;
}

.g360-trilha-stack__desc {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 60ch;
}
@media (min-width: 768px) {
  .g360-trilha-stack__desc {
    font-size: 17px;
  }
}

/* ─── FECHAMENTO editorial separado (manifesto + CTA consultivo) ─── */
.g360-trilhas__fechamento {
  max-width: 760px;
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding-top: 40px;
  position: relative;
}
.g360-trilhas__fechamento::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(31, 182, 240, 0.6);
}
.g360-trilhas__fechamento-tx {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
  font-weight: 500;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .g360-trilhas__fechamento {
    margin-top: 80px;
    padding-top: 48px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   D09 · MENTORES — usa .mentores / .mentor-poster da home
   (estilo herdado 100% de ../../styles.css + main.js controla
   o carrossel automaticamente)
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   D10 · FUNDADORES — usa .fundadores / .fundador-card da home
   D11 · PROVA — usa .depoimentos / .depoimento-reel da home
   (estilo herdado 100% de ../../styles.css, sem CSS específico aqui)
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   D12 · FAQ — bloco editorial premium (ultima quebra de objecoes)
   Refatorado pra parecer "documentacao premium SaaS" / "press kit",
   nao "accordion de template generico".
   ═══════════════════════════════════════════════════════════════ */
.g360-faq {
  position: relative;
  /* Profundidade sutil: zonas suaves de luz, sem neon */
  background:
    radial-gradient(ellipse 65% 45% at 18% 12%, rgba(26, 95, 232, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 88% 92%, rgba(31, 182, 240, 0.06) 0%, transparent 65%),
    linear-gradient(160deg, #06122B 0%, #081933 55%, #051023 100%);
  color: var(--white);
  padding: var(--pad-y, 80px) 0;
  overflow: hidden;
}

.g360-faq__header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
@media (min-width: 768px) {
  .g360-faq__header {
    margin-bottom: 72px;
  }
}

.g360-faq__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.g360-faq__h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
  text-wrap: balance;
  letter-spacing: -0.015em;
}
.g360-faq__sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ─── Lista (mais respiro entre itens) ────────────────────────── */
.g360-faq__list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 768px) {
  .g360-faq__list {
    gap: 16px;
  }
}

/* ─── ITEM fechado: bloco premium navegavel, micro profundidade ── */
.g360-faq__item {
  position: relative;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.045) 0%,
      rgba(255, 255, 255, 0.020) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 1px 2px rgba(0, 0, 0, 0.20);
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.28s ease,
    transform 0.22s ease;
}
.g360-faq__item:hover {
  border-color: rgba(31, 182, 240, 0.24);
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.065) 0%,
      rgba(255, 255, 255, 0.025) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 4px 14px rgba(11, 22, 40, 0.30);
}

/* ─── ITEM aberto: editorial, nao bloco escuro pesado ─────────── */
.g360-faq__item[open],
.g360-faq__item.is-open {
  background:
    linear-gradient(180deg,
      rgba(31, 182, 240, 0.07) 0%,
      rgba(26, 95, 232, 0.04) 100%);
  border-color: rgba(31, 182, 240, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(31, 182, 240, 0.10),
    0 10px 30px rgba(11, 22, 40, 0.32),
    0 0 0 1px rgba(31, 182, 240, 0.08);
}

/* ─── Summary (linha clicavel: numero + pergunta + chevron) ──── */
.g360-faq__item summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 22px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
@media (min-width: 768px) {
  .g360-faq__item summary {
    padding: 26px 28px;
    gap: 24px;
  }
}
.g360-faq__item summary::-webkit-details-marker { display: none; }

/* ─── Numero: mais presenca ─────────────────────────────────── */
.g360-faq__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--cyan);
  flex-shrink: 0;
  line-height: 1;
  transition: text-shadow 0.22s ease;
}
.g360-faq__item[open] .g360-faq__num {
  text-shadow: 0 0 12px rgba(31, 182, 240, 0.45);
}

/* ─── Pergunta ──────────────────────────────────────────────── */
.g360-faq__q {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--white);
  letter-spacing: -0.005em;
}
@media (min-width: 768px) {
  .g360-faq__q {
    font-size: 18px;
  }
}

/* ─── Chevron premium: wrapper circular tipo SaaS ──────────── */
.g360-faq__chev {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.55);
  transition:
    transform 0.32s cubic-bezier(0.32, 0.72, 0, 1),
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}
.g360-faq__item:hover .g360-faq__chev {
  color: var(--cyan);
  border-color: rgba(31, 182, 240, 0.28);
}
.g360-faq__item[open] .g360-faq__chev {
  transform: rotate(180deg);
  color: var(--cyan);
  background: rgba(31, 182, 240, 0.12);
  border-color: rgba(31, 182, 240, 0.45);
}

/* ─── Resposta: editorial, max-width pra leitura confortavel ── */
.g360-faq__a {
  position: relative;
  padding: 4px 22px 24px 22px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 62ch;
}
/* Divisor sutil entre pergunta e resposta */
.g360-faq__a::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(31, 182, 240, 0.45);
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .g360-faq__a {
    padding: 4px 28px 30px 28px;
    font-size: 16.5px;
  }
  .g360-faq__a::before {
    width: 40px;
    margin-bottom: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   D13 · CTA FINAL (composição assimétrica + sistema visual sutil)
   Refator aprovado pelo Guilherme:
   - Composição: copy à esquerda + sistema visual à direita (sutil)
   - Fundo com profundidade: gradient radial + grid + vinheta
   - CTA premium: maior, com glow, hover sofisticado
   - Eyebrow "Próximo passo" pra ancoragem
   ═══════════════════════════════════════════════════════════════ */
.g360-cta-final {
  position: relative;
  background:
    radial-gradient(ellipse 60% 45% at 28% 40%, rgba(26, 95, 232, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 78% 60%, rgba(31, 182, 240, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, rgba(6, 14, 32, 0.55) 100%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 120px 0 140px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .g360-cta-final { padding: 80px 0 96px; }
}

/* Background grid sutil (textura) */
.g360-cta-final__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.g360-cta-final__grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* Sistema visual decorativo (arquitetura de evolução) à direita */
.g360-cta-final__system {
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  width: 720px;
  height: 720px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}
.g360-cta-final__system svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 1023px) {
  .g360-cta-final__system {
    width: 540px;
    height: 540px;
    right: -22%;
    opacity: 0.55;
  }
}
@media (max-width: 767px) {
  .g360-cta-final__system {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    right: -30%;
    opacity: 0.35;
  }
}

/* Container do conteúdo (acima do background) */
.g360-cta-final__in {
  position: relative;
  z-index: 1;
}

/* Coluna esquerda — toda copy + CTA */
.g360-cta-final__copy {
  max-width: 620px;
}

.g360-cta-final__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono, inherit);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
}
.g360-cta-final__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--cyan);
  flex-shrink: 0;
}

.g360-cta-final__h2 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 0 0 20px;
  text-wrap: balance;
  max-width: 18ch;
}

.g360-cta-final__sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 40px;
  max-width: 52ch;
}

.g360-cta-final__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media (min-width: 600px) {
  .g360-cta-final__actions {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}

/* Botão premium: maior + glow */
.g360-cta-final__btn {
  padding: 18px 32px;
  font-size: 14px;
  box-shadow:
    0 0 0 1px rgba(31, 182, 240, 0.30),
    0 12px 32px rgba(26, 95, 232, 0.35),
    0 0 60px rgba(31, 182, 240, 0.18);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  min-width: 330px;
}
.g360-cta-final__btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(31, 182, 240, 0.55),
    0 18px 48px rgba(26, 95, 232, 0.45),
    0 0 80px rgba(31, 182, 240, 0.30);
}

.g360-cta-final__microcopy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   REVEAL — animação de entrada (compatível com main.js da home)
   ═══════════════════════════════════════════════════════════════ */
.g360-form-section .reveal,
.g360-espelhos .reveal,
.g360-ciclos .reveal,
.g360-essencia .reveal,
.g360-trilhas .reveal,
.g360-faq .reveal,
.g360-cta-final .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.g360-form-section .reveal.is-visible,
.g360-espelhos .reveal.is-visible,
.g360-ciclos .reveal.is-visible,
.g360-essencia .reveal.is-visible,
.g360-trilhas .reveal.is-visible,
.g360-faq .reveal.is-visible,
.g360-cta-final .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SWEEP DAS EYEBROWS — alinha com o estilo da home
   (Geologica 11px peso 700 + tracinho cyan antes; cor depende do fundo)
   Aplica em TODAS as dobras internas — substitui os estilos anteriores
   por cascata (vem depois no arquivo).
   ═══════════════════════════════════════════════════════════════ */

/* Eyebrows em fundo NAVY (texto cinza claro) */
.g360-espelhos__eyebrow,
.g360-essencia__eyebrow,
.g360-trilhas__eyebrow,
.g360-faq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-dark-mute, #9CB0CC);
  margin-bottom: 16px;
}

/* Eyebrows em fundo CLARO (paper/branco — texto cinza escuro) */
.g360-form-section__eyebrow,
.g360-ciclos__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute, #5B6B85);
  margin-bottom: 16px;
}

/* Tracinho cyan ANTES do texto (todas as eyebrows) */
.g360-espelhos__eyebrow::before,
.g360-form-section__eyebrow::before,
.g360-ciclos__eyebrow::before,
.g360-essencia__eyebrow::before,
.g360-trilhas__eyebrow::before,
.g360-faq__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--cyan);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SWEEP: HEADERS DE SEÇÃO ALINHADOS À ESQUERDA (padrão da home)
   Aplica em D04, D05, D06, D08, D11, D12 — corrige "torre desigual"
   de headlines longas centralizadas.
   D13 CTA Final continua centralizado (faz sentido pro fechamento).
   ═══════════════════════════════════════════════════════════════ */
.g360-espelhos__header,
.g360-ciclos__header,
.g360-essencia__header,
.g360-trilhas__header,
.g360-faq__header {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 880px;
}
.g360-espelhos__sub,
.g360-ciclos__sub,
.g360-essencia__sub,
.g360-trilhas__sub,
.g360-faq__sub {
  margin-inline: 0;
  max-width: 64ch;
}
.g360-espelhos__h2,
.g360-ciclos__h2,
.g360-essencia__h2,
.g360-trilhas__h2,
.g360-faq__h2 {
  max-width: 22ch;
}

/* ═══════════════════════════════════════════════════════════════
   D07 · MÉTODO 4+1 — overrides editoriais (LP-only, não afeta home)
   Reaplica fundo da seção + cards + base "Gestão da Evolução"
   com mais profundidade e acabamento premium enterprise.
   Visualmente alinhado com o refinamento da D04.
   ═══════════════════════════════════════════════════════════════ */

/* Fundo da seção: 4 camadas sutis (não chapado, mantém leitura limpa) */
.pilares {
  position: relative;
  overflow: hidden;
  background:
    /* Vinheta nas bordas — sombra royal sutil nos cantos */
    radial-gradient(ellipse 80% 70% at 50% 50%, transparent 50%, rgba(26, 95, 232, 0.05) 100%),
    /* Zona de luz cyan no canto sup-esquerdo */
    radial-gradient(ellipse 55% 45% at 18% 25%, rgba(31, 182, 240, 0.05) 0%, transparent 65%),
    /* Zona de luz royal no canto inf-direito */
    radial-gradient(ellipse 60% 50% at 82% 78%, rgba(26, 95, 232, 0.05) 0%, transparent 65%),
    /* Base linear com variação tonal sutil (paper → paper-cool → paper) */
    linear-gradient(180deg, #F4F6F9 0%, #EDF1F7 50%, #F4F6F9 100%);
}

/* Grid arquitetônico ultra-sutil (textura) */
.pilares::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 22, 40, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 22, 40, 0.5) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

.pilares > .container {
  position: relative;
  z-index: 1;
}

/* Cards com acabamento premium — sombra editorial em vez de border simples */
.pilares .pilar-card {
  background: #FFFFFF;
  border: 1px solid rgba(11, 22, 40, 0.06);
  box-shadow:
    0 1px 2px rgba(11, 22, 40, 0.03),
    0 8px 24px rgba(11, 22, 40, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
@media (hover: hover) {
  .pilares .pilar-card:hover {
    transform: translateY(-3px);
    border-color: rgba(26, 95, 232, 0.20);
    box-shadow:
      0 4px 8px rgba(11, 22, 40, 0.04),
      0 18px 40px rgba(26, 95, 232, 0.12);
  }
}

/* Base "Gestão da Evolução" — atmosfera premium + glow sutil + sombra editorial */
.pilares .pilares__base {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 80% at 18% 25%, rgba(31, 182, 240, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 45% 60% at 82% 78%, rgba(26, 95, 232, 0.12) 0%, transparent 70%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-deep) 100%);
  box-shadow:
    0 20px 60px rgba(11, 22, 40, 0.18),
    0 0 0 1px rgba(31, 182, 240, 0.08);
}
