/* =========================================================
   CBCD — Câmara Brasileira de Conflitos Digitais
   Design inspirado no estilo "Cruzeiro" · paleta navy + teal
   ========================================================= */

:root {
  /* Neutros claros */
  --bg: #ffffff;
  --bg-alt: #f4f7fa;
  --bg-soft: #eef2f7;

  /* Navy (seções escuras) — azul escuro institucional */
  --navy: #061a35;
  --navy-2: #0c2749;
  --navy-3: #143564;

  /* Tinta */
  --ink: #3a4557;
  --ink-soft: #64748b;
  --ink-faint: #94a3b8;

  /* Accent azul (evitamos verde) */
  --accent: #1d4ed8;
  --accent-dark: #1a41b0;
  --accent-bright: #5b9bf5;   /* uso sobre navy */
  --accent-soft: #cfe0ff;
  --accent-bg: #eef3ff;

  --line: #e5eaf1;
  --line-soft: #eef2f7;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --container: 1200px;
  --measure: 62ch;

  --shadow-rest: 0 8px 28px -14px rgba(16, 26, 46, 0.16);
  --shadow-card: 0 24px 50px -26px rgba(16, 26, 46, 0.28);
  --shadow-hover: 0 30px 56px -24px rgba(16, 26, 46, 0.30);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, .logo {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--navy);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.accent { color: var(--accent); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 32px; }

/* =========================================================
   Botões (pill)
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn i { font-size: 1.15em; }
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: #12294c; transform: translateY(-2px); box-shadow: 0 14px 26px -12px rgba(6, 26, 53, 0.45); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-2); transform: translateY(-2px); }
/* Azul claro — para CTAs sobre fundos escuros (hero, painéis navy) */
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: #2f5fd6; transform: translateY(-2px); box-shadow: 0 14px 26px -12px rgba(29, 78, 216, 0.5); }
.btn--outline { background: transparent; border-color: var(--line); color: var(--navy); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent-dark); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: #eef2f7; transform: translateY(-2px); }
.btn--outline-light { background: transparent; border-color: rgba(255,255,255,0.3); color: #fff; }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn--lg { padding: 16px 34px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Link "arrow" no estilo Cruzeiro */
.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-dark);
  transition: gap 0.2s var(--ease);
}
.arrow-link i { font-size: 1.05rem; transition: transform 0.2s var(--ease); }
.arrow-link:hover i { transform: translateX(4px); }
.arrow-link--light { color: var(--accent-bright); }

/* =========================================================
   Header
   ========================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 20px 0;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header--scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom-color: var(--line);
  padding: 13px 0;
  box-shadow: 0 6px 26px -20px rgba(16,26,46,0.5);
}
/* Header sobre hero escuro: menu claro até rolar */
.header:not(.header--scrolled):not(.header--solid) .header__menu a { color: #fff; }
.header:not(.header--scrolled):not(.header--solid) .header__toggle { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); }
.header:not(.header--scrolled):not(.header--solid) .header__toggle span { background: #fff; }
/* Botão do header sobre o hero escuro fica azul claro (o escuro sumiria no fundo) */
.header:not(.header--scrolled):not(.header--solid) .btn--primary { background: var(--accent); color: #fff; }
.header:not(.header--scrolled):not(.header--solid) .btn--primary:hover { background: #2f5fd6; box-shadow: none; }
/* Em páginas internas (hero claro) o toggle já é escuro por padrão */

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* Logo (imagem completa) — versão preta sobre fundo claro, branca sobre escuro */
.logo { display: inline-flex; align-items: center; }
.logo__img { height: 38px; width: auto; display: block; }
.logo__img--light { display: none; }   /* branca: só sobre fundo escuro */
/* Sobre o hero escuro (home, topo, não rolado): mostrar logo branca */
.header:not(.header--scrolled):not(.header--solid) .logo__img--dark { display: none; }
.header:not(.header--scrolled):not(.header--solid) .logo__img--light { display: block; }
/* Logo sempre-clara (rodapé / painéis escuros) */
.logo--on-dark .logo__img--dark { display: none; }
.logo--on-dark .logo__img--light { display: block; }
.header__nav { display: flex; align-items: center; gap: 40px; }
.header__menu { display: flex; align-items: center; gap: 32px; }
.header__menu a { font-size: 0.93rem; font-weight: 500; color: var(--ink-soft); position: relative; transition: color 0.2s var(--ease); }
.header__menu a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; border-radius: 2px; background: var(--accent-bright); transition: width 0.28s var(--ease); }
.header__menu a:hover::after, .header__menu a[aria-current="page"]::after { width: 100%; }
.header__toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.header__toggle span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.header__toggle--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle--active span:nth-child(2) { opacity: 0; }
.header__toggle--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Seções base
   ========================================================= */
.section { padding: 110px 0; position: relative; }
.section--tight { padding: 70px 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); position: relative; overflow: hidden; }
.section--navy::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 80% 0%, rgba(91,155,245,0.10), transparent 55%);
  pointer-events: none;
}
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.section--navy .eyebrow { color: var(--accent-bright); }
.section__head { max-width: 760px; margin-bottom: 60px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
.section__title em { font-style: normal; color: var(--accent); }
.section--navy .section__title em { color: var(--accent-bright); }
.section__lead { margin-top: 18px; font-size: 1.08rem; color: var(--ink-soft); max-width: var(--measure); }
.section--navy .section__lead { color: #b3c0d4; }
.section__head--center .section__lead { margin-inline: auto; }
.lede { font-size: 1.14rem; color: var(--ink-soft); max-width: var(--measure); }
p { max-width: var(--measure); }

/* =========================================================
   Placeholders de imagem
   ========================================================= */
.img-ph { position: relative; display: grid; place-items: center; text-align: center; gap: 8px; border-radius: var(--radius); border: 1.5px dashed #c3cede; background: repeating-linear-gradient(-45deg, rgba(16,26,46,0.015) 0 12px, transparent 12px 24px), var(--bg-alt); color: var(--ink-faint); min-height: 220px; padding: 24px; overflow: hidden; }
.img-ph i { font-size: 2rem; color: var(--accent); }
.img-ph span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.img-ph small { font-size: 0.72rem; color: var(--ink-faint); }
.img-ph--dark { background: repeating-linear-gradient(-45deg, rgba(255,255,255,0.02) 0 12px, transparent 12px 24px), var(--navy-2); border-color: rgba(255,255,255,0.16); color: rgba(255,255,255,0.5); }
.img-ph--dark i { color: var(--accent-bright); }
.img-ph--dark small { color: rgba(255,255,255,0.4); }

/* =========================================================
   HERO (index) — dark full-bleed + conteúdo centralizado
   ========================================================= */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background: var(--navy); }
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform-origin: center; will-change: transform; animation: heroZoom 26s ease-in-out infinite; }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background:
  radial-gradient(72% 62% at 50% 45%, rgba(6,26,53,0.55), rgba(6,26,53,0.9) 100%),
  linear-gradient(180deg, rgba(6,26,53,0.82) 0%, rgba(6,26,53,0.7) 45%, rgba(6,26,53,0.94) 100%); }
@keyframes heroZoom { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.12); } }
@media (prefers-reduced-motion: reduce) { .hero__bg img { animation: none; } }
.hero__inner { position: relative; z-index: 2; max-width: 820px; margin-inline: auto; padding-block: 150px 80px; }
.hero__logo { height: clamp(72px, 13vw, 138px); width: auto; margin: 0 auto 22px; display: block; filter: drop-shadow(0 10px 34px rgba(0,0,0,0.4)); }
.hero__brand { display: block; font-size: clamp(0.72rem, 1.4vw, 0.95rem); font-weight: 700; letter-spacing: 0.34em; text-transform: uppercase; margin-bottom: 40px;
  background: linear-gradient(90deg, #e2e8f0, #94a3b8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__title { font-size: clamp(2.2rem, 4.8vw, 3.7rem); color: #fff; margin: 0 auto 22px; max-width: 18ch; }
.hero__title em { font-style: normal; color: var(--accent-bright); }
.hero__sub { font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: #c8d3e4; max-width: 48ch; margin: 0 auto 40px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Faixa de palavras-chave — marquee infinito */
.keystrip { background: var(--accent); overflow: hidden; }
.keystrip__track { display: flex; width: max-content; animation: keyMarquee 42s linear infinite; }
.keystrip:hover .keystrip__track { animation-play-state: paused; }
.keystrip__seq { display: flex; align-items: center; padding: 16px 0; flex: none; }
.keystrip__seq span { display: inline-flex; align-items: center; gap: 46px; padding-inline: 46px; color: #fff; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap; }
.keystrip__seq span::after { content: '•'; color: rgba(255,255,255,0.5); font-size: 0.85em; }
@keyframes keyMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .keystrip__track { animation-duration: 90s; } }

/* Page hero interno (claro) — centralizado (segue estilo do hero) */
.page-hero { position: relative; padding: 180px 0 76px; overflow: hidden; text-align: center; background: linear-gradient(180deg, #fff, var(--bg-alt)); border-bottom: 1px solid var(--line-soft); }
.page-hero__inner { position: relative; z-index: 2; max-width: 780px; margin-inline: auto; }
.page-hero__title { font-size: clamp(2.2rem, 4.6vw, 3.3rem); margin-bottom: 18px; }
.page-hero__title em { font-style: normal; color: var(--accent); }
.page-hero__lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; margin-inline: auto; }
.breadcrumb { display: flex; gap: 8px; align-items: center; justify-content: center; font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--accent-dark); }
.breadcrumb i { font-size: 0.85rem; }

/* =========================================================
   Split de introdução (texto + grid de features)
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split__intro .eyebrow { margin-bottom: 16px; }
.split__title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 20px; }
.split__title em { font-style: normal; color: var(--accent); }
.split__text { color: var(--ink-soft); margin-bottom: 28px; font-size: 1.05rem; }
/* Inverte no desktop: intro à direita, conteúdo à esquerda (mobile mantém intro primeiro) */
.split--rev .split__intro { order: 2; }

/* Mini feature cards (2 col) */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feature { background: #fff; border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-rest); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 999px; background: var(--accent-bg); color: var(--navy); font-size: 1.4rem; margin-bottom: 16px; }
.feature__title { font-size: 1.05rem; margin-bottom: 8px; }
.feature__text { font-size: 0.9rem; color: var(--ink-soft); }

/* Lista editorial (minimalista, sem caixas) */
.topic-list { display: flex; flex-direction: column; }
.topic { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: baseline; padding: 30px 0; border-bottom: 1px solid #e5e7eb; }
.topic:first-child { padding-top: 4px; }
.topic:last-child { border-bottom: 0; padding-bottom: 0; }
.topic__num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 700; color: rgba(29, 78, 216, 0.4); letter-spacing: 0.04em; }
.topic__title { font-size: 1.32rem; margin-bottom: 7px; color: var(--navy); }
.topic__text { color: var(--ink-soft); font-size: 1rem; }

/* =========================================================
   Cards com imagem no topo (estilo "segmentos")
   ========================================================= */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.seg-card { background: #fff; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-rest); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.seg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.seg-card__media { position: relative; aspect-ratio: 16/10; min-height: 0; border: none; border-radius: 0; border-bottom: 3px solid var(--navy); overflow: hidden; }
.seg-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s var(--ease); }
.seg-card:hover .seg-card__media img { transform: scale(1.05); }
.seg-card__badge { position: absolute; left: 18px; bottom: -18px; width: 40px; height: 40px; border-radius: 10px; background: var(--navy); color: #fff; display: grid; place-items: center; font-size: 1.2rem; box-shadow: 0 8px 18px -8px rgba(6, 26, 53, 0.55); z-index: 2; }
.seg-card__body { padding: 30px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.seg-card__title { font-size: 1.2rem; margin-bottom: 10px; }
.seg-card__text { color: var(--ink-soft); font-size: 0.94rem; flex: 1; }
.seg-card__body .arrow-link { margin-top: 22px; }

/* Cards escuros (seção navy) */
.seg-card--dark { background: var(--navy-2); border-color: rgba(255,255,255,0.08); }
.seg-card--dark .seg-card__title { color: #fff; }
.seg-card--dark .seg-card__text { color: #a9b6cc; }
.seg-card--dark .seg-card__list { display: grid; gap: 9px; margin-top: 16px; }
.seg-card--dark .seg-card__list li { display: flex; gap: 10px; align-items: flex-start; color: #cbd5e1; font-size: 0.9rem; }
.seg-card--dark .seg-card__list i { color: var(--accent-bright); font-size: 1.05rem; flex-shrink: 0; margin-top: 1px; }

/* =========================================================
   Processo / Pilares numerados
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 62px 24px; }
.step { position: relative; background: #fff; border-radius: var(--radius); padding: 42px 26px 30px; box-shadow: var(--shadow-rest); text-align: center; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.step__num { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(140deg, #143564 0%, #061a35 100%); color: #fff; display: grid; place-items: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.1rem; box-shadow: 0 10px 20px -8px rgba(6, 26, 53, 0.55); }
.step__title { font-size: 1.1rem; margin: 14px 0 10px; }
.step__text { color: var(--ink-soft); font-size: 0.92rem; }
.step__ref { position: absolute; left: 50%; bottom: -13px; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; background: var(--navy); color: #fff; font-size: 0.72rem; font-weight: 600; white-space: nowrap; box-shadow: 0 8px 16px -6px rgba(6, 26, 53, 0.45); }
.step__ref i { color: var(--accent-bright); }
.step--center { grid-column: 2 / 3; }
.section--alt .step { background: #fff; }

/* Valores (chips) — usado no contato (categorias) */
.values { display: flex; flex-wrap: wrap; gap: 12px; }
.values li { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-weight: 500; font-size: 0.92rem; color: var(--ink); }
.values li i { color: var(--navy); font-size: 1.1rem; }

/* Painel unificado (Missão / Visão / Propósito) */
.panel { display: grid; grid-template-columns: repeat(3, 1fr); background: #f8f9fa; border: 1px solid #eef1f5; border-radius: 16px; overflow: hidden; }
.panel__col { padding: clamp(30px, 3.2vw, 46px); border-right: 1px solid #e5e7eb; }
.panel__col:last-child { border-right: none; }
.panel__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.panel__icon { font-size: 2.1rem; color: var(--navy); }
.panel__title { font-size: 1.22rem; color: var(--navy); }
.panel__text { color: var(--ink-soft); font-size: 0.98rem; }

/* Valores — grid tipográfico sobre imagem de fundo */
.section--values { background-image: url("Fundo seção.webp"); background-size: cover; background-position: center; background-repeat: no-repeat; }
.value-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px 48px; }
.value-item { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 14px; white-space: nowrap; font-weight: 600; font-size: 1.125rem; color: #1f2937; }
.value-item i { flex-shrink: 0; color: var(--accent); font-size: 1.35rem; }
/* Quebra forçada para montar 4 / 4 / 3 no desktop */
.value-break { flex-basis: 100%; height: 0; margin: 0; padding: 0; }

/* =========================================================
   Capacidade técnica (imagem + texto + checklist)
   ========================================================= */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.showcase__media .img-ph { aspect-ratio: 16/9; min-height: 0; border-radius: var(--radius-lg); }
.showcase__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg); display: block; box-shadow: var(--shadow-card); }
.showcase__title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 20px; }
.showcase__title em { font-style: normal; color: var(--accent); }
.showcase__text { color: var(--ink-soft); margin-bottom: 24px; }
.checklist { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 30px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); font-size: 0.94rem; }
.checklist li i { color: var(--navy); font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }

/* =========================================================
   Presidência — cards horizontais alternados
   ========================================================= */
.pres-list { display: grid; gap: 30px; }
.pres-card { display: grid; grid-template-columns: 42% 1fr; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-rest); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.pres-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pres-card--rev { grid-template-columns: 1fr 42%; }
.pres-card--rev .pres-card__photo { order: 2; }
.pres-card__photo { position: relative; min-height: 360px; overflow: hidden; background: var(--bg-alt); }
.pres-card__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pres-card__photo.img-ph { border-radius: 0; border: none; }
.pres-card__body { padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.pres-card__role { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-dark); font-weight: 700; background: var(--accent-bg); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }
.pres-card__name { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 18px; }
.pres-card__bio { color: var(--ink-soft); font-size: 0.98rem; border-left: 3px solid var(--navy); padding-left: 18px; margin-bottom: 20px; }
.pres-card__quote { color: var(--navy); font-size: 1.05rem; font-style: italic; font-weight: 500; }
.pres-card__quote i { color: var(--navy); font-style: normal; margin-right: 8px; }
.amb { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.amb__card { text-align: center; }
.amb__photo { display: block; width: 100%; border-radius: 14px; aspect-ratio: 1/1; min-height: 0; object-fit: cover; margin-bottom: 16px; }
.amb__name { font-size: 1.06rem; }
.amb__area { color: var(--ink-faint); font-size: 0.85rem; margin-top: 4px; }

/* =========================================================
   Cláusula CBCD — seção escura full-width
   ========================================================= */
.clause__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.clause__title { font-size: clamp(1.9rem, 3.6vw, 2.6rem); color: #fff; margin-bottom: 22px; }
.clause__text { color: #c4cfe0; margin-bottom: 16px; font-size: 1.06rem; }
.clause-model { position: relative; background: rgba(255,255,255,0.05); border-left: 3px solid var(--accent-bright); border-radius: 0 14px 14px 0; padding: 34px 36px; }
.clause-model__tag { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-bright); font-weight: 700; }
.clause-model p { font-size: 1.05rem; color: #e6ecf6; margin-top: 16px; line-height: 1.75; font-style: italic; }

/* Benefícios — cards com ícone */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px 52px; }
.benefit-card { background: none; box-shadow: none; border-radius: 0; padding: 0; text-align: left; }
.benefit-card__icon { color: #374151; font-size: 2.4rem; margin-bottom: 16px; line-height: 1; transition: color 0.3s ease, transform 0.3s ease; }
.benefit-card:hover .benefit-card__icon { color: var(--accent); transform: translateX(4px); }
.benefit-card__text { font-size: 1rem; font-weight: 600; color: var(--navy); line-height: 1.45; }

/* =========================================================
   CTA band (painel navy)
   ========================================================= */
.cta__panel { position: relative; overflow: hidden; text-align: center; background: var(--navy); border-radius: var(--radius-lg); padding: clamp(48px, 7vw, 84px) 32px; }
.cta__panel::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0%, rgba(91,155,245,0.16), transparent 58%); pointer-events: none; }
/* CTA full-width (seção completa, sem card) */
.cta { position: relative; overflow: hidden; text-align: center; background: var(--navy); }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(55% 120% at 50% 0%, rgba(91,155,245,0.16), transparent 60%); pointer-events: none; }
.cta > .container { position: relative; z-index: 2; }
.cta__inner { max-width: 680px; margin-inline: auto; position: relative; z-index: 2; }
.cta__title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); color: #fff; margin-bottom: 18px; }
.cta__title em { font-style: normal; color: var(--accent-bright); }
.cta__text { color: #c4cfe0; font-size: 1.06rem; margin: 0 auto 34px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   Contato — card único coeso (estilo Cruzeiro)
   ========================================================= */
.contact-card { display: grid; grid-template-columns: 0.85fr 1.15fr; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.contact-card__aside { position: relative; overflow: hidden; background: var(--navy); color: #fff; padding: clamp(36px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.contact-card__aside::before { content: ''; position: absolute; inset: 0; background: radial-gradient(70% 90% at 0% 100%, rgba(91,155,245,0.16), transparent 55%); pointer-events: none; }
.contact-card__aside > * { position: relative; z-index: 2; }
.contact-card__aside .eyebrow { color: var(--accent-bright); }
.contact-card__aside h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 16px; }
.contact-card__aside .aside-text { color: #b3c0d4; font-size: 0.98rem; margin-bottom: 32px; }
.contact-list { display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ic { display: grid; place-items: center; width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px; background: rgba(255,255,255,0.08); color: var(--accent-bright); font-size: 1.25rem; }
.contact-list b { display: block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: #8494ac; font-weight: 700; margin-bottom: 3px; }
.contact-list span { color: #e2e8f0; font-size: 0.96rem; }
.contact-list .ph-placeholder { color: #647089; font-style: italic; }
.contact-card__social { display: flex; gap: 10px; margin-top: 34px; }
.contact-card__social a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 9px; border: 1px solid rgba(255,255,255,0.14); color: #b3c0d4; font-size: 1.1rem; transition: all 0.2s var(--ease); }
.contact-card__social a:hover { color: #fff; background: var(--accent); border-color: var(--accent); }

.contact-card__form { background: #fff; padding: clamp(36px, 4vw, 52px); }
.contact-card__form h3 { font-size: 1.5rem; margin-bottom: 6px; }
.contact-card__form .form-sub { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 28px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.field label .req { color: #e11d48; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 16px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: #fbfcfe; font-family: inherit; font-size: 0.95rem; color: var(--ink); transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.field textarea { resize: vertical; min-height: 120px; }
/* Dropdown: seta customizada com respiro da borda (não colada) */
.field select { appearance: none; -webkit-appearance: none; -moz-appearance: none; padding-right: 46px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 256 256' fill='%2364748b'%3E%3Cpath d='M213.66 101.66l-80 80a8 8 0 0 1-11.32 0l-80-80a8 8 0 0 1 11.32-11.32L128 164.69l74.34-74.35a8 8 0 0 1 11.32 11.32Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 16px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(29, 78, 216,0.12); }
.field--check { display: flex; gap: 12px; align-items: flex-start; }
.field--check input { width: auto; margin-top: 3px; flex-shrink: 0; accent-color: var(--navy); }
.field--check label { margin: 0; font-weight: 400; font-size: 0.84rem; color: var(--ink-soft); }
.form__note { font-size: 0.82rem; color: var(--ink-faint); margin-top: 8px; display: flex; gap: 8px; align-items: flex-start; }
.form__note i { color: var(--navy); margin-top: 2px; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm); background: var(--accent-bg); color: var(--accent-dark); font-size: 0.9rem; font-weight: 500; border: 1px solid var(--accent-soft); }

/* Mapa full-width abaixo do card */
.map-ph { aspect-ratio: 21/6; min-height: 220px; border-radius: var(--radius-lg); margin-top: 26px; }
.map-embed { display: block; width: 100%; aspect-ratio: 21/7; min-height: 300px; border: 0; border-radius: var(--radius-lg); margin-top: 26px; }

/* =========================================================
   Footer (navy, compacto)
   ========================================================= */
.footer { background: var(--navy); color: #b3c0d4; position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.07); }
.footer::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 80% at 90% 0%, rgba(91,155,245,0.07), transparent 55%); pointer-events: none; }
.footer__top { position: relative; z-index: 2; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; padding: 70px 0 46px; }
.footer__brand .logo { color: #fff; margin-bottom: 16px; }
.footer__brand .logo__sub { color: #647089; }
.footer__brand p { color: #8494ac; font-size: 0.92rem; max-width: 320px; }
.footer__slogan { margin-top: 20px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.98rem; font-weight: 600; color: #dbe3ef; max-width: 340px; line-height: 1.5; }
.footer__slogan em { font-style: normal; color: var(--accent-bright); }

/* Conteúdo editado no /admin: *texto* vira <strong> — espelha o destaque dos <em> */
.section__title strong, .page-hero__title strong, .split__title strong,
.showcase__title strong { font-style: normal; font-weight: inherit; color: var(--accent); }
.hero__title strong, .section--navy .section__title strong, .cta__title strong,
.footer__slogan strong, .section--navy blockquote strong { font-style: normal; font-weight: inherit; color: var(--accent-bright); }
.footer h4 { color: #fff; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; font-family: 'Inter', sans-serif; font-weight: 600; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { color: #8494ac; font-size: 0.92rem; transition: color 0.2s var(--ease); }
.footer__links a:hover { color: var(--accent-bright); }
.footer__links li.muted { display: flex; gap: 9px; align-items: flex-start; color: #8494ac; font-size: 0.9rem; }
.footer__links li.muted i { color: var(--accent-bright); margin-top: 2px; }
.footer__links .ph-placeholder { color: #647089; font-style: italic; }
.footer__bottom { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer__copy { color: #647089; font-size: 0.84rem; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 9px; border: 1px solid rgba(255,255,255,0.12); color: #8494ac; font-size: 1.15rem; transition: all 0.2s var(--ease); }
.footer__social a:hover { color: #fff; background: var(--accent); border-color: var(--accent); }

/* WhatsApp flutuante */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; font-size: 1.8rem; box-shadow: 0 12px 28px -8px rgba(37,211,102,0.5); transition: transform 0.2s var(--ease); }
.wa-float:hover { transform: scale(1.06); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 1000px) {
  .split, .showcase, .clause__grid, .contact-card { grid-template-columns: 1fr; }
  .split--rev .split__intro { order: 0; }
  .grid--3, .steps, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .value-break { display: none; }
  .step--center { grid-column: auto; }
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .showcase__media { order: -1; }
}
@media (max-width: 860px) {
  .pres-card, .pres-card--rev { grid-template-columns: 1fr; }
  .pres-card--rev .pres-card__photo { order: 0; }
  .pres-card__photo { min-height: 300px; }
  /* Sem backdrop-filter no mobile: ele prende o menu fixed dentro da barra do header */
  .header--scrolled { background: #fff; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .header__toggle { display: flex; position: relative; z-index: 3; }
  .header:not(.header--scrolled) .header__toggle { background: rgba(255,255,255,0.1); }
  .header__toggle--active span { background: var(--navy) !important; }   /* X visível sobre o painel branco */
  /* Backdrop escurecido atrás do menu */
  .header::after { content: ''; position: fixed; inset: 0; z-index: 1; background: rgba(6,26,53,0.5); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease); }
  body.nav-open .header::after { opacity: 1; visibility: visible; }
  .header__nav { position: fixed; inset: 0 0 0 auto; z-index: 2; width: min(86vw, 360px); flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 4px; padding: 100px 30px 40px; background: #fff; box-shadow: -24px 0 70px -30px rgba(6,26,53,0.5); transform: translateX(100%); transition: transform 0.35s var(--ease); }
  .header__nav--open { transform: translateX(0); }
  .header__menu { flex-direction: column; align-items: flex-start; gap: 2px; width: 100%; }
  .header__menu a { display: block; padding: 13px 0; font-size: 1.08rem; width: 100%; color: var(--navy) !important; }
  .header__nav .btn { margin-top: 18px; width: 100%; }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 680px) {
  .section { padding: 80px 0; }
  .container { padding-inline: 22px; }
  .grid--2, .grid--3, .steps, .feature-grid, .amb, .checklist, .form__row { grid-template-columns: 1fr; }
  .steps { gap: 48px 20px; }
  /* Benefícios: 2 colunas centralizadas no mobile (menos rolagem) */
  .benefit-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 22px; }
  .benefit-card { text-align: center; }
  .benefit-card:hover .benefit-card__icon { transform: none; }
  .value-item { white-space: normal; }
  .panel { grid-template-columns: 1fr; }
  .panel__col { border-right: none; border-bottom: 1px solid #e5e7eb; }
  .panel__col:last-child { border-bottom: none; }
  .person { grid-template-columns: 1fr; }
  .person__photo { max-width: 170px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__inner { padding-block: 130px 50px; }
  .hero__overlay { background: linear-gradient(180deg, rgba(6,26,53,0.82), rgba(6,26,53,0.94)); }
  .map-ph, .map-embed { aspect-ratio: 4/3; }
}
