/* =========================================================
   Adriano Martendal — Psicanalista | LP RD360
   Design: editorial sobrio · Sora 100% · paleta minimal premium
   Inspiracao: Stripe + Substack + Linear (psicanalista intelectual)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700;800&display=swap');

/* -------- Mobile-safe boilerplate -------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100vw; }
img, video, iframe, svg { max-width: 100%; height: auto; display: block; }
input, textarea, select, button { font: inherit; }
input, textarea, select { font-size: 16px; }
body.modal-open { overflow: hidden; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* -------- Tokens -------- */
:root {
  /* Cores primarias — Verde Petroleo + Cobre Quente */
  --ink: #0e201d;
  --ink-2: #152a26;
  --ink-3: #1d362f;
  --ink-line: rgba(224,168,122,0.12);
  --paper: #ece9e0;
  --paper-2: #dbd5c5;
  --paper-3: #cbc4b0;
  --paper-line: rgba(14,32,29,0.1);

  /* Texto */
  --on-ink: #ece8de;
  --on-ink-2: rgba(236,232,222,0.74);
  --on-ink-3: rgba(236,232,222,0.50);
  --on-paper: #0e201d;
  --on-paper-2: #4a544f;
  --on-paper-3: #7a8480;

  /* Acento — Cobre quente vivo */
  --accent: #b8794a;
  --accent-2: #c88a5a;
  --accent-3: #e0a87a;
  --accent-deep: #8c5530;

  /* WhatsApp */
  --wa: #25d366;
  --wa-dark: #128c7e;

  /* Tipografia */
  --font: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Espaco */
  --container: 1280px;
  --container-narrow: 880px;
  --gutter: clamp(20px, 4.5vw, 56px);
  --section-y: clamp(88px, 11vw, 152px);

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------- Base -------- */
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--on-paper);
  background: var(--ink); /* dark bg pra mostrar atrás de cards arredondados flutuantes */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'ss02';
}

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 4px; border-radius: 4px; }
::selection { background: var(--accent); color: var(--paper); }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--on-ink); padding: 12px 20px; z-index: 200; font-size: 14px; }
.skip-link:focus { left: 16px; top: 16px; }

/* -------- Container -------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.container-narrow { max-width: var(--container-narrow); }

/* -------- Typography -------- */
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3, h4 { font-weight: 400; letter-spacing: -0.02em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}
.eyebrow-light { color: var(--accent-3); }

/* H2 grande — para titles de section */
.h-display {
  font-family: var(--font);
  font-weight: 200;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 22ch;
}
.h-display .lift {
  font-weight: 300;
  color: var(--accent);
  position: relative;
  display: inline-block;
}
/* Underline cobre sutil sob a palavra-destaque */
.h-display .lift::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.06em;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.45;
}

.section-light .h-display { color: var(--on-paper); }
.section-dark .h-display { color: var(--on-ink); }
.section-dark .h-display .lift { color: var(--accent-3); }
.section-dark .h-display .lift::after { background: linear-gradient(90deg, transparent, var(--accent-3), transparent); opacity: 0.5; }

.lead {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.7;
  font-weight: 300;
  color: var(--on-paper-2);
  max-width: 56ch;
  margin-top: 24px;
  letter-spacing: -0.005em;
}
.section-dark .lead,
.section-publicacoes .lead,
.section-paraquem .lead {
  color: rgba(236,232,222,0.92);
  font-weight: 400;
  letter-spacing: -0.005em;
  text-shadow: 0 1px 2px rgba(14,32,29,0.4);
}

/* -------- Sections base -------- */
.section { padding: var(--section-y) 0; position: relative; }
.section-light { background: var(--paper); color: var(--on-paper); }
.section-light-2 { background: var(--paper-2); color: var(--on-paper); }
.section-light-3 { background: var(--paper-3); color: var(--on-paper); }
.section-dark { background: var(--ink); color: var(--on-ink); }
.section-dark-2 { background: var(--ink-2); color: var(--on-ink); }

.section-head { max-width: 720px; margin-bottom: clamp(56px, 7vw, 88px); }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }

/* Separador decorativo cobre abaixo do section-head (linha + ponto + linha) */
.section-head-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: clamp(28px, 4vw, 40px) auto 0;
}
.section-head-mark .line {
  width: clamp(40px, 6vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}
.section-light .section-head-mark .line {
  background: linear-gradient(90deg, transparent, var(--accent-deep), transparent);
}
.section-head-mark .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 12px rgba(224,168,122,0.55), 0 0 24px rgba(224,168,122,0.25);
  flex-shrink: 0;
}
.section-light .section-head-mark .dot {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(184,121,74,0.45), 0 0 24px rgba(184,121,74,0.2);
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 320ms var(--ease), background-color 320ms var(--ease), color 320ms var(--ease), border-color 320ms var(--ease), box-shadow 320ms var(--ease);
  white-space: nowrap;
}
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; fill: currentColor; }

.btn-primary { background: var(--ink); color: var(--on-ink); border-color: var(--ink); }
.btn-primary:hover { background: var(--ink-3); border-color: var(--ink-3); transform: translateY(-2px); box-shadow: 0 16px 32px -16px rgba(10,10,12,0.5); }

.btn-primary-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-primary-light:hover { background: var(--accent-3); border-color: var(--accent-3); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--on-paper); border-color: var(--paper-line); border-color: rgba(10,10,12,0.18); }
.btn-ghost:hover { background: var(--ink); color: var(--on-ink); border-color: var(--ink); transform: translateY(-2px); }

.btn-ghost-light { background: transparent; color: var(--on-ink); border-color: var(--ink-line); }
.btn-ghost-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); transform: translateY(-2px); }

.btn-ghost-sm { background: transparent; color: inherit; border-color: currentColor; padding: 10px 18px; font-size: 12px; opacity: 0.85; }
.btn-ghost-sm:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); opacity: 1; }

.btn-lg { padding: 18px 32px; font-size: 14.5px; }

.section-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: clamp(40px, 5vw, 60px); }
.section-head--center + .section-cta { justify-content: center; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-row--center { justify-content: center; }
/* Respiro padrao quando CTA segue um bloco grande (cred-quote, processo-list, etc) */
.section-percurso .cred-quote + .cta-row,
.section-processo .processo-list + .cta-row,
.section-paraquem .paraquem-fecho + .cta-row {
  margin-top: clamp(48px, 6vw, 72px);
}

/* -------- Header (floating pill SEMPRE verde opaco) -------- */
.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1320px;
  z-index: 100;
  border-radius: 999px;
  background: rgba(14,32,29,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(224,168,122,0.22);
  box-shadow: 0 14px 40px -16px rgba(0,0,0,0.5), 0 6px 14px -6px rgba(0,0,0,0.25);
  transition: background-color 320ms var(--ease), border-color 320ms var(--ease), top 320ms var(--ease), box-shadow 320ms var(--ease);
}
.site-header.scrolled {
  top: 12px;
  background: rgba(14,32,29,0.96);
  border-color: rgba(224,168,122,0.32);
  box-shadow: 0 18px 52px -16px rgba(0,0,0,0.6), 0 10px 20px -8px rgba(0,0,0,0.32);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 28px;
  color: var(--on-ink);
}

.brand { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-size: 17px; font-weight: 500; letter-spacing: -0.01em; }
.brand-sub { font-size: 9.5px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent-3); margin-top: 5px; }

.nav-desktop { display: flex; gap: clamp(20px, 2.4vw, 32px); align-items: center; }
.nav-desktop a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--on-ink);
  opacity: 0.78;
  transition: opacity 220ms var(--ease), color 220ms var(--ease);
  padding: 6px 0;
}
.nav-desktop a:hover { opacity: 1; color: var(--accent-3); }

.cta-header {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
  padding: 11px 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 16px -6px rgba(184,121,74,0.45);
}
.cta-header:hover {
  background: var(--accent-3);
  color: var(--ink);
  border-color: var(--accent-3);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(224,168,122,0.55);
}

.nav-toggle {
  display: none;
  background: rgba(184,121,74,0.12);
  border: 1px solid rgba(224,168,122,0.25);
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 12px 11px;
  border-radius: 50%;
  flex-direction: column;
  justify-content: space-between;
  transition: background 280ms var(--ease), border-color 280ms var(--ease);
  flex-shrink: 0;
}
.nav-toggle:hover { background: rgba(184,121,74,0.22); border-color: var(--accent); }
.nav-toggle span { display: block; width: 100%; height: 1.5px; background: var(--accent-3); transition: all 280ms var(--ease); border-radius: 1px; }
.nav-toggle.open { background: rgba(184,121,74,0.22); border-color: var(--accent); }
.nav-toggle.open span { background: var(--accent-3); }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0; right: 0;
  background: rgba(14,32,29,0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  flex-direction: column;
  padding: 20px 24px 28px;
  border-radius: 24px;
  border: 1px solid rgba(224,168,122,0.18);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.5);
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { color: var(--on-ink); padding: 16px 4px; font-size: 17px; font-weight: 400; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 240ms var(--ease), padding-left 240ms var(--ease); }
.nav-mobile a:hover { color: var(--accent-3); padding-left: 12px; }
.nav-mobile a:last-of-type { border-bottom: 0; }

/* CTA dentro do nav-mobile: override pra ficar visivel (cobre vivo, full-width) */
.nav-mobile .btn,
.nav-mobile a.btn-primary-light {
  margin-top: 20px;
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
  align-self: stretch;
  text-align: center;
  justify-content: center;
  border-bottom: 1px solid var(--accent);
  font-weight: 600;
  padding: 14px 24px;
  letter-spacing: 0.02em;
}
.nav-mobile .btn:hover,
.nav-mobile a.btn-primary-light:hover {
  background: var(--accent-3);
  color: var(--ink);
  border-color: var(--accent-3);
  padding-left: 24px;
}

/* =================== 1. HERO (full-bleed background, 100vh) =================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
  padding: 130px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  filter: contrast(1.04) saturate(0.95);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(14,32,29,0.96) 0%,
      rgba(14,32,29,0.88) 26%,
      rgba(14,32,29,0.62) 44%,
      rgba(14,32,29,0.30) 60%,
      rgba(14,32,29,0.10) 80%,
      rgba(14,32,29,0.0) 100%),
    linear-gradient(180deg,
      rgba(14,32,29,0.45) 0%,
      transparent 25%,
      transparent 75%,
      rgba(14,32,29,0.55) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}

.hero-content {
  color: var(--on-ink);
  max-width: 620px;
}
.hero-content .eyebrow { color: var(--accent-3); margin-bottom: 28px; }

.hero-title {
  font-family: var(--font);
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--on-ink);
  margin-bottom: 36px;
  max-width: 18ch;
  text-shadow: 0 1px 30px rgba(14,32,29,0.6);
}
.hero-title .lift { color: var(--accent-3); font-weight: 200; }

.hero-lead {
  font-size: clamp(15.5px, 1.35vw, 17.5px);
  line-height: 1.7;
  color: var(--on-ink);
  opacity: 0.94;
  max-width: 52ch;
  margin: 0 0 18px;
  font-weight: 300;
  text-shadow: 0 1px 20px rgba(14,32,29,0.55);
}
.hero-lead + .hero-lead { margin-top: -2px; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 48px; }

/* =================== 2. MANIFESTO (ilha flutuante entre 2 darks) =================== */
.section-manifesto {
  padding: clamp(96px, 11vw, 152px) 0;
  position: relative;
  z-index: 2;
  /* Margem negativa sutil — apenas pra "tocar" os darks (nao engolir) */
  margin-top: clamp(-40px, -3vw, -16px);
  margin-bottom: clamp(-40px, -3vw, -16px);
  /* Border-radius generoso nos 4 cantos — ilha organica */
  border-radius: clamp(32px, 4vw, 56px);
  /* Borda dourada/cobre sutil que envolve a ilha */
  border: 1px solid rgba(184,121,74,0.28);
  /* Shadow soft pra destacar do dark + glow cobre sutil */
  box-shadow:
    0 -20px 60px -30px rgba(14,32,29,0.4),
    0 20px 60px -30px rgba(14,32,29,0.4),
    0 0 0 1px rgba(184,121,74,0.06),
    0 0 80px -40px rgba(184,121,74,0.15);
  /* Margens laterais pra mostrar o dark dos lados */
  width: calc(100% - clamp(24px, 4vw, 64px));
  margin-left: auto;
  margin-right: auto;
}

/* Elemento decorativo: linha vertical cobre que perfura o topo */
.section-manifesto::before {
  content: '';
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, var(--accent));
  opacity: 0.7;
  z-index: 3;
}
/* Pequeno ponto cobre no inicio do card */
.section-manifesto::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(184,121,74,0.6), 0 0 28px rgba(184,121,74,0.25);
  z-index: 3;
}
.manifesto-content { max-width: 920px; margin: 0 auto; position: relative; }

/* Marcador decorativo no fim do manifesto (espelhando o do topo) */
.section-manifesto .manifesto-footer-mark {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 36px;
  background: linear-gradient(0deg, transparent, var(--accent));
  opacity: 0.7;
  z-index: 3;
  pointer-events: none;
}
.section-manifesto .manifesto-footer-mark::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(184,121,74,0.6), 0 0 28px rgba(184,121,74,0.25);
}

/* Garantir que body nao corte sombras da ilha */
body { isolation: auto; }
.manifesto-content .eyebrow { color: var(--accent); justify-content: center; display: flex; }
.manifesto-quote {
  font-family: var(--font);
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.22;
  font-weight: 200;
  letter-spacing: -0.03em;
  color: var(--on-paper);
  text-align: center;
  margin: 0 auto;
  max-width: 20ch;
}
.manifesto-quote .accent { color: var(--accent); font-weight: 300; }
.manifesto-divider {
  display: block;
  width: 1px;
  height: 64px;
  background: var(--accent);
  margin: 56px auto 0;
  opacity: 0.5;
}
.manifesto-body {
  margin-top: 56px;
  font-size: clamp(16px, 1.7vw, 18.5px);
  line-height: 1.75;
  color: var(--on-paper-2);
  text-align: center;
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  letter-spacing: -0.005em;
}
.manifesto-body strong { font-weight: 500; color: var(--on-paper); }

/* =================== 3. PARA QUEM (3 cards verbatim) =================== */
.section-paraquem { background: var(--ink); color: var(--on-ink); }

.paraquem-head { text-align: center; max-width: 880px; margin: 0 auto clamp(56px, 7vw, 80px); }
.paraquem-head .eyebrow { color: var(--accent-3); justify-content: center; display: inline-flex; }
.paraquem-head .h-display { margin: 0 auto; max-width: 24ch; }

.motivos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: clamp(56px, 7vw, 80px);
}
.motivo-card {
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-md);
  padding: clamp(32px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 40px);
  transition: transform 360ms var(--ease), border-color 360ms var(--ease), background 360ms var(--ease);
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.motivo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 36px;
  height: 2px;
  background: var(--accent);
  transition: width 360ms var(--ease);
}
.motivo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224,168,122,0.35);
  background: var(--ink-3);
}
.motivo-card:hover::before {
  width: 100%;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.motivo-num {
  font-family: var(--font);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
  font-feature-settings: 'tnum';
}
.motivo-text {
  font-family: var(--font);
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.018em;
  color: var(--on-ink);
  margin: 0;
}

.paraquem-fecho {
  max-width: 760px;
  margin: 0 auto clamp(48px, 5vw, 64px);
  text-align: center;
  font-family: var(--font);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
  font-weight: 200;
  letter-spacing: -0.025em;
  color: var(--on-ink);
}
.paraquem-fecho .accent { color: var(--accent-3); font-weight: 300; }

/* =================== 4. PROCESSO (full-width com 3 fichas dentro) =================== */
.section-processo { background: var(--paper-2); }
.processo-list {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.processo-step {
  display: grid;
  grid-template-columns: clamp(72px, 9vw, 110px) 1fr;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(32px, 4vw, 52px) clamp(28px, 4vw, 56px);
  position: relative;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: clamp(20px, 2.4vw, 28px);
  box-shadow: 0 14px 28px -18px rgba(14,32,29,0.12), 0 0 0 1px rgba(184,121,74,0.04);
  transition: border-color 360ms var(--ease), box-shadow 360ms var(--ease), transform 360ms var(--ease), background 360ms var(--ease);
  cursor: default;
}
.processo-step:hover {
  border-color: rgba(184,121,74,0.42);
  box-shadow:
    0 26px 52px -20px rgba(14,32,29,0.22),
    0 0 0 1px rgba(184,121,74,0.16),
    0 0 80px -40px rgba(184,121,74,0.22);
  transform: translateY(-3px);
  padding-left: clamp(32px, 4.5vw, 64px);
}
.processo-num {
  font-family: var(--font);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
  font-feature-settings: 'tnum';
  transition: color 360ms var(--ease), transform 360ms var(--ease);
}
.processo-step:hover .processo-num {
  color: var(--accent-deep);
  transform: scale(1.06);
}
.processo-content h3 {
  font-family: var(--font);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--on-paper);
  margin-bottom: 10px;
  transition: color 360ms var(--ease);
}
.processo-step:hover .processo-content h3 { color: var(--accent-deep); }
.processo-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--on-paper-2);
  font-weight: 300;
  max-width: 56ch;
  margin: 0;
}

/* =================== 5. PERCURSO =================== */
.section-percurso { background: var(--paper); }

.percurso-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.percurso-text .eyebrow { color: var(--accent); }
.percurso-text .h-display { margin-bottom: 16px; }
.percurso-text .lead { margin-bottom: 40px; }

.cred-list {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.cred-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--paper-line);
  align-items: baseline;
  transition: padding-left 280ms var(--ease), background 280ms var(--ease);
}
.cred-list li:last-child { border-bottom: 0; }
.cred-list li:hover {
  padding-left: 8px;
  background: linear-gradient(90deg, rgba(184,121,74,0.06), transparent 80%);
}
.cred-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-feature-settings: 'tnum';
  padding-top: 2px;
}
.cred-text {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--on-paper);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.cred-text .strong { font-weight: 500; }

/* cred-note: caption sob a foto (integrada na "ficha editorial") */
.cred-note {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--on-paper-3);
  margin: 0;
  padding: clamp(20px, 2.4vw, 28px) clamp(8px, 1vw, 14px) clamp(8px, 1vw, 14px);
  font-weight: 300;
  position: relative;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.cred-note::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 16px;
  opacity: 0.7;
}
.cred-note strong { font-weight: 500; color: var(--on-paper-2); }

/* cred-quote: ilha DARK FULL-WIDTH (sai do grid 2 cols) com 2 colunas internas */
.cred-quote {
  margin: clamp(64px, 8vw, 112px) auto 0;
  padding: clamp(56px, 7vw, 104px);
  background: var(--ink);
  color: var(--on-ink);
  border: 1px solid rgba(184,121,74,0.32);
  border-radius: clamp(32px, 4vw, 56px);
  box-shadow:
    0 30px 60px -28px rgba(14,32,29,0.45),
    0 0 0 1px rgba(184,121,74,0.06),
    0 0 100px -40px rgba(184,121,74,0.18);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
  cursor: default;
  transition: border-color 360ms var(--ease), box-shadow 360ms var(--ease), transform 360ms var(--ease);
}
.cred-quote:hover {
  border-color: var(--accent);
  box-shadow:
    0 40px 80px -28px rgba(14,32,29,0.55),
    0 0 0 1px rgba(184,121,74,0.2),
    0 0 140px -40px rgba(184,121,74,0.32);
  transform: translateY(-3px);
}
.cred-quote::before {
  content: '\201C'; /* aspas tipograficas " */
  position: absolute;
  top: -16px;
  left: 28px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(140px, 16vw, 240px);
  font-weight: 400;
  color: var(--accent-3);
  opacity: 0.16;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.cred-quote::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(184,121,74,0.08), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(184,121,74,0.05), transparent 55%);
  pointer-events: none;
}

.cred-quote-main { position: relative; z-index: 1; }
.cred-quote-main p {
  font-family: var(--font);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  font-weight: 200;
  letter-spacing: -0.025em;
  color: var(--on-ink);
  margin: 0;
}
.cred-quote .accent { color: var(--accent-3); font-weight: 300; }

.cred-quote-seal {
  position: relative;
  z-index: 1;
  padding: clamp(20px, 2.5vw, 32px) 0 clamp(20px, 2.5vw, 32px) clamp(24px, 3vw, 36px);
  border-left: 2px solid var(--accent-3);
}
.cred-quote-seal p { margin: 0; }
.cred-quote-seal strong {
  display: block;
  font-family: var(--font);
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.45;
  font-weight: 500;
  color: var(--on-ink);
  letter-spacing: -0.02em;
}


/* photo + caption: ficha editorial unificada (moldura que envolve foto + legenda) */
.percurso-photo {
  position: sticky;
  top: 110px;
  align-self: start;
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: clamp(20px, 2.4vw, 28px);
  padding: clamp(16px, 2vw, 22px);
  box-shadow:
    0 24px 48px -24px rgba(14,32,29,0.18),
    0 8px 16px -8px rgba(14,32,29,0.08),
    0 0 0 1px rgba(184,121,74,0.04);
  transition: border-color 360ms var(--ease), box-shadow 360ms var(--ease), transform 360ms var(--ease);
}
.percurso-photo:hover {
  border-color: rgba(184,121,74,0.35);
  box-shadow:
    0 32px 64px -24px rgba(14,32,29,0.25),
    0 12px 24px -8px rgba(14,32,29,0.12),
    0 0 0 1px rgba(184,121,74,0.12),
    0 0 80px -40px rgba(184,121,74,0.18);
  transform: translateY(-3px);
}
.percurso-photo .photo-frame {
  border-radius: clamp(12px, 1.5vw, 18px);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 16px 32px -16px rgba(14,32,29,0.35);
  aspect-ratio: 3 / 2;
}
.percurso-photo img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.02); }
.percurso-photo-meta {
  margin-top: 20px;
  font-size: 12px;
  color: var(--on-paper-3);
  letter-spacing: 0.04em;
  text-align: right;
  font-weight: 400;
}

/* =================== 6. MODALIDADES (full-width engrossado) =================== */
.section-modalidades { background: var(--paper-2); padding-top: clamp(112px, 13vw, 168px); padding-bottom: clamp(112px, 13vw, 168px); }

.modalidades-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.modalidade-card {
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: clamp(20px, 2.6vw, 28px);
  padding: clamp(44px, 5vw, 64px);
  display: flex; flex-direction: column;
  gap: 24px;
  min-height: 280px;
  position: relative;
  box-shadow: 0 16px 32px -20px rgba(14,32,29,0.14), 0 0 0 1px rgba(184,121,74,0.04);
  transition: transform 360ms var(--ease), border-color 360ms var(--ease), box-shadow 360ms var(--ease);
}
.modalidade-card::before {
  content: '';
  position: absolute;
  top: 0; left: clamp(44px, 5vw, 64px);
  width: 36px;
  height: 2px;
  background: var(--accent);
  transition: width 360ms var(--ease);
}
.modalidade-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,121,74,0.4);
  box-shadow:
    0 30px 56px -24px rgba(14,32,29,0.22),
    0 0 0 1px rgba(184,121,74,0.16),
    0 0 80px -40px rgba(184,121,74,0.2);
}
.modalidade-card:hover::before { width: 80px; }
.modalidade-card h3 {
  font-family: var(--font);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--on-paper);
  margin-top: 8px;
}
.modalidade-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--on-paper-2);
  font-weight: 300;
  margin: 0;
  max-width: 56ch;
}

/* =================== 7. PUBLICACOES (LIVROS) =================== */
.section-publicacoes {
  background: var(--ink);
  color: var(--on-ink);
  padding-bottom: clamp(64px, 8vw, 112px);
}
.section-publicacoes::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 15%, rgba(212,185,138,0.05), transparent 50%),
    radial-gradient(ellipse at 80% 85%, rgba(212,185,138,0.04), transparent 55%);
  pointer-events: none;
}
.section-publicacoes > .container { position: relative; z-index: 1; }

.section-publicacoes .section-head { text-align: center; margin: 0 auto clamp(80px, 9vw, 120px); }
.section-publicacoes .eyebrow { color: var(--accent-3); justify-content: center; display: inline-flex; }
.section-publicacoes .h-display { margin: 0 auto; }
.section-publicacoes .lead { margin-left: auto; margin-right: auto; text-align: center; }

/* ===== LIVRO HERO (destaque editorial — Ansiolitico) ===== */
.pub-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 0.5fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  padding: clamp(40px, 5vw, 72px) clamp(32px, 4vw, 64px);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(184,121,74,0.18);
  border-radius: clamp(28px, 3.5vw, 44px);
  margin-bottom: clamp(56px, 7vw, 88px);
  position: relative;
  z-index: 1;
  transition: border-color 360ms var(--ease), box-shadow 360ms var(--ease), transform 360ms var(--ease);
}
.pub-hero:hover {
  border-color: rgba(184,121,74,0.42);
  box-shadow: 0 30px 60px -28px rgba(0,0,0,0.4), 0 0 100px -40px rgba(184,121,74,0.22);
  transform: translateY(-3px);
}

.pub-hero-img { display: flex; justify-content: center; perspective: 1200px; }
.pub-hero-img-wrap { transition: transform 600ms var(--ease); transform-style: preserve-3d; }
.pub-hero:hover .pub-hero-img-wrap { transform: rotateY(-5deg) rotateX(2deg) translateY(-6px); }
.pub-hero-img img {
  max-width: 280px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55)) drop-shadow(0 12px 24px rgba(184,121,74,0.18));
  transition: filter 600ms var(--ease);
}
.pub-hero:hover .pub-hero-img img {
  filter: drop-shadow(0 50px 80px rgba(0,0,0,0.7)) drop-shadow(0 20px 40px rgba(224,168,122,0.28));
}

.pub-hero-ficha {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pub-ficha-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink-line);
}
.pub-ficha-row:last-child { border-bottom: 0; padding-bottom: 0; }
.pub-ficha-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-3);
}
.pub-ficha-val {
  font-size: 14px;
  color: var(--on-ink);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.005em;
}

.pub-hero-text { display: flex; flex-direction: column; }
.pub-hero-title {
  font-family: var(--font);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--on-ink);
  margin: 0 0 14px;
}
.pub-hero-meta {
  font-size: 12px;
  font-weight: 500;
  color: var(--on-ink-3);
  letter-spacing: 0.04em;
  margin: 0 0 20px;
}
.pub-hero-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--on-ink-2);
  font-weight: 300;
  margin: 0 0 24px;
  max-width: 56ch;
}
.pub-hero-quote {
  margin: 0;
  padding: 18px 0 18px 22px;
  border-left: 2px solid var(--accent);
  position: relative;
}
.pub-hero-quote p {
  font-family: var(--font);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.5;
  font-weight: 300;
  color: var(--on-ink);
  margin: 0;
  letter-spacing: -0.015em;
}
.pub-hero-quote-meta {
  display: block;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-3);
}

/* ===== DIVISOR EDITORIAL ===== */
.pub-divider {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  margin: 0 auto clamp(40px, 5vw, 56px);
  max-width: 880px;
}
.pub-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,121,74,0.3), transparent);
}
.pub-divider-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-3);
  white-space: nowrap;
  text-align: center;
}

/* ===== CARROSSEL DAS 5 PUBLICACOES ===== */
.pub-carousel-wrap {
  position: relative;
  margin: 0 auto;
  padding: 0 clamp(0px, 2vw, 32px);
}

.pub-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 16px 4px 36px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pub-carousel::-webkit-scrollbar { display: none; }

.pub-card {
  flex: 0 0 auto;
  width: clamp(260px, 28vw, 340px);
  scroll-snap-align: start;
  background: var(--ink-2);
  border: 1px solid rgba(184,121,74,0.28);
  border-radius: clamp(18px, 2vw, 24px);
  padding: clamp(24px, 2.6vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 12px 24px -16px rgba(0,0,0,0.4), 0 0 0 1px rgba(184,121,74,0.06);
  transition: border-color 360ms var(--ease), background 360ms var(--ease), transform 360ms var(--ease), box-shadow 360ms var(--ease);
}
.pub-card:hover {
  background: var(--ink-3);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow:
    0 28px 56px -20px rgba(0,0,0,0.55),
    0 0 0 1px rgba(184,121,74,0.22),
    0 0 100px -40px rgba(184,121,74,0.32);
}

.pub-card-img-wrap {
  display: flex;
  justify-content: center;
  perspective: 800px;
  padding: 4px 0;
}
.pub-card-img-wrap img {
  max-width: 160px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.5)) drop-shadow(0 8px 14px rgba(184,121,74,0.1));
  transition: transform 480ms var(--ease), filter 480ms var(--ease);
}
.pub-card:hover .pub-card-img-wrap img {
  transform: rotateY(-6deg) translateY(-3px);
  filter: drop-shadow(0 24px 36px rgba(0,0,0,0.6)) drop-shadow(0 14px 24px rgba(224,168,122,0.18));
}

.pub-card-body { display: flex; flex-direction: column; gap: 8px; }
.pub-card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 4px;
}
.pub-card-title {
  font-family: var(--font);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--on-ink);
  margin: 0;
}
.pub-card-pub {
  font-size: 12px;
  color: var(--on-ink-3);
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.pub-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--on-ink-2);
  font-weight: 300;
  margin: 4px 0 0;
}

/* ===== SETAS DO CARROSSEL ===== */
.pub-carousel-arrow {
  position: absolute;
  top: calc(50% - 18px);
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14,32,29,0.85);
  border: 1px solid rgba(184,121,74,0.35);
  color: var(--accent-3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 280ms var(--ease), border-color 280ms var(--ease), transform 280ms var(--ease), opacity 280ms var(--ease);
}
.pub-carousel-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  transform: translateY(-50%) scale(1.06);
}
.pub-carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.pub-carousel-arrow svg { width: 18px; height: 18px; }
.pub-carousel-prev { left: -20px; }
.pub-carousel-next { right: -20px; }

/* ===== DOTS DO CARROSSEL ===== */
.pub-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.pub-carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(184,121,74,0.3);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 280ms var(--ease), transform 280ms var(--ease), width 320ms var(--ease);
}
.pub-carousel-dots button:hover { background: rgba(184,121,74,0.55); }
.pub-carousel-dots button[aria-current="true"] {
  background: var(--accent);
  width: 24px;
  border-radius: 999px;
}

/* =================== ARTIGOS INLINE (ficha cream destacada no dark de Livros) =================== */
.artigos-inline {
  margin: clamp(48px, 6vw, 72px) auto 0;
  padding: clamp(36px, 4.5vw, 56px) clamp(32px, 4vw, 56px);
  text-align: center;
  background: var(--paper);
  color: var(--on-paper);
  border: 1px solid rgba(184,121,74,0.4);
  border-radius: clamp(20px, 2.6vw, 28px);
  max-width: 720px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 30px 60px -28px rgba(0,0,0,0.5),
    0 0 0 1px rgba(184,121,74,0.1),
    0 0 80px -40px rgba(184,121,74,0.25);
  transition: border-color 360ms var(--ease), box-shadow 360ms var(--ease), transform 360ms var(--ease);
}
.artigos-inline:hover {
  border-color: var(--accent);
  box-shadow:
    0 36px 72px -28px rgba(0,0,0,0.6),
    0 0 0 1px rgba(184,121,74,0.22),
    0 0 120px -40px rgba(184,121,74,0.35);
  transform: translateY(-3px);
}
.artigos-title {
  font-family: var(--font);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--accent-deep);
  margin: 0 0 14px;
}
.artigos-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--on-paper-2);
  max-width: 56ch;
  margin: 0 auto;
  font-weight: 300;
}

/* =================== FAIXA DE PAUSA (transicao Autoridade -> Operacional) =================== */
.section-pause {
  background: var(--ink);
  padding: clamp(72px, 9vw, 120px) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.section-pause::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(184,121,74,0.10), transparent 55%);
  pointer-events: none;
}
.pause-mark {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.pause-line {
  width: clamp(40px, 7vw, 96px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-3), transparent);
}
.pause-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(224,168,122,0.6), 0 0 32px rgba(224,168,122,0.3), 0 0 64px rgba(184,121,74,0.15);
}

/* Variante light: pause entre 2 secoes light warm */
.section-pause-light {
  background: var(--paper-2);
  padding: clamp(40px, 5vw, 64px) 0;
}
.section-pause-light::before {
  background: radial-gradient(ellipse at center, rgba(184,121,74,0.06), transparent 55%);
}
.section-pause-light .pause-line {
  background: linear-gradient(90deg, transparent, var(--accent-3), transparent);
  opacity: 0.7;
}
.section-pause-light .pause-dot {
  background: var(--accent-3);
  box-shadow: 0 0 14px rgba(224,168,122,0.55), 0 0 28px rgba(224,168,122,0.3), 0 0 56px rgba(184,121,74,0.15);
}

/* =================== 9. FAQ (full-width) =================== */
.section-faq { background: var(--paper-3); }

.faq-container { max-width: 820px; margin: 0 auto; }
.faq-container .section-head { text-align: center; }
.faq-container .eyebrow { justify-content: center; display: inline-flex; }
.faq-container .h-display { margin: 0 auto; }

.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: clamp(16px, 2vw, 22px);
  padding: 0 clamp(20px, 2.5vw, 32px);
  box-shadow: 0 10px 20px -16px rgba(14,32,29,0.1), 0 0 0 1px rgba(184,121,74,0.03);
  transition: border-color 320ms var(--ease), box-shadow 320ms var(--ease), background 320ms var(--ease), transform 320ms var(--ease);
}
.faq-item:hover {
  border-color: rgba(184,121,74,0.32);
  box-shadow:
    0 18px 36px -16px rgba(14,32,29,0.16),
    0 0 0 1px rgba(184,121,74,0.12),
    0 0 60px -40px rgba(184,121,74,0.18);
  transform: translateY(-2px);
}
.faq-item[open] {
  border-color: rgba(184,121,74,0.5);
  box-shadow:
    0 22px 44px -16px rgba(14,32,29,0.2),
    0 0 0 1px rgba(184,121,74,0.18),
    0 0 80px -40px rgba(184,121,74,0.22);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: clamp(24px, 3vw, 32px) 0;
  font-family: var(--font);
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 400;
  letter-spacing: -0.018em;
  color: var(--on-paper);
  user-select: none;
  transition: color 240ms var(--ease);
}
.faq-question:hover { color: var(--accent); }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ''; }

.faq-chevron {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  color: var(--accent);
  transition: transform 360ms var(--ease);
  flex-shrink: 0;
  border: 1px solid var(--paper-line);
  border-radius: 50%;
}
.faq-chevron svg { width: 14px; height: 14px; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); border-color: var(--accent); background: var(--accent); color: var(--paper); }

.faq-answer { padding: 0 0 clamp(20px, 3vw, 32px); }
.faq-answer p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--on-paper-2);
  font-weight: 300;
  margin: 0;
  max-width: 65ch;
  letter-spacing: -0.005em;
}

/* =================== 10. LOCAIS (ilha arredondada SP + FLN) =================== */
.section-locais {
  background: var(--paper-2);
  border-radius: clamp(28px, 4vw, 56px);
  width: calc(100% - clamp(24px, 4vw, 64px));
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(16px, 2vw, 28px);
  margin-bottom: clamp(16px, 2vw, 28px);
  border: 1px solid rgba(184,121,74,0.18);
  box-shadow: 0 24px 60px -32px rgba(14,32,29,0.3), 0 0 0 1px rgba(184,121,74,0.04);
  position: relative;
  z-index: 2;
}

.locais-head { text-align: center; max-width: 720px; margin: 0 auto clamp(56px, 7vw, 80px); }
.locais-head .eyebrow { color: var(--accent); justify-content: center; display: inline-flex; }

/* Modal unico envolvendo SP + FLN */
.locais-card {
  max-width: 1040px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: clamp(24px, 3vw, 36px);
  padding: clamp(40px, 5vw, 64px);
  box-shadow:
    0 24px 48px -24px rgba(14,32,29,0.18),
    0 0 0 1px rgba(184,121,74,0.05);
  transition: border-color 360ms var(--ease), box-shadow 360ms var(--ease), transform 360ms var(--ease);
}
.locais-card:hover {
  border-color: rgba(184,121,74,0.3);
  box-shadow:
    0 32px 64px -24px rgba(14,32,29,0.24),
    0 0 0 1px rgba(184,121,74,0.14),
    0 0 100px -40px rgba(184,121,74,0.18);
  transform: translateY(-3px);
}

.cidade-block {
  background: transparent;
  border: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: none;
}
/* Divisor entre cidades */
.cidade-block + .cidade-block {
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: clamp(40px, 5vw, 56px);
  border-top: 1px solid var(--paper-line);
}
.cidade-titulo {
  font-family: var(--font);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--on-paper);
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--paper-line);
  position: relative;
}
.cidade-titulo::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 48px;
  height: 1px;
  background: var(--accent);
}
.cidade-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(24px, 3vw, 48px);
}
/* Quando so 1 endereco (FLN), ocupa 1 coluna */
.cidade-list-single { grid-template-columns: 1fr; }

.cidade-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--paper-line);
  transition: padding-left 280ms var(--ease), background 280ms var(--ease);
}
/* Tira border do ultimo de cada coluna */
.cidade-list li:nth-last-child(-n+2):not(.cidade-list-single li) {
  border-bottom: 0;
}
.cidade-list-single li { border-bottom: 0; }

.cidade-list li:hover {
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(184,121,74,0.06), transparent 80%);
}
.cidade-bairro {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}
.cidade-rua {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--on-paper);
}
.cidade-cep {
  font-size: 12px;
  color: var(--on-paper-3);
  letter-spacing: 0.02em;
  font-weight: 400;
}

.locais-foot {
  display: flex; flex-direction: column; align-items: center; gap: 32px;
  text-align: center;
}
.locais-foot .link-mapas {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--on-paper);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: color 240ms var(--ease), gap 240ms var(--ease);
}
.locais-foot .link-mapas:hover { color: var(--accent); gap: 12px; }
.locais-foot .link-mapas svg { width: 13px; height: 13px; transition: transform 240ms var(--ease); }
.locais-foot .link-mapas:hover svg { transform: translate(2px, -2px); }

/* =================== HERO PAISES (microcopy abaixo dos CTAs do hero) =================== */
.hero-paises {
  margin-top: clamp(28px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hero-paises-label {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-3);
  opacity: 0.85;
}
.hero-bandeiras {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-bandeiras li {
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  line-height: 1;
  transition: transform 240ms var(--ease);
}
.hero-bandeiras li:hover { transform: translateY(-2px) scale(1.08); }

/* Bandeira: forca renderizacao emoji colorida em qualquer OS */
.bandeira {
  font-family: 'Twemoji Country Flags', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', 'EmojiOne Color', sans-serif;
  font-style: normal;
  display: inline-block;
}

/* =================== FOOTER PAISES (coluna central do footer-grid, sem modal extra) =================== */
.footer-paises-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 10px;
  padding: 0 clamp(12px, 2vw, 24px);
  /* Separadores verticais sutis nas laterais (so desktop) */
  border-left: 1px solid rgba(184,121,74,0.14);
  border-right: 1px solid rgba(184,121,74,0.14);
}
.footer-paises-eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 4px;
}
.footer-paises-mini {
  font-family: var(--font);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--on-ink);
  margin: 0 0 8px;
  max-width: 260px;
}
.footer-bandeiras-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 12px 14px;
  justify-content: center;
  max-width: 240px;
}
.footer-bandeiras-row li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 24px;
  line-height: 1;
  transition: transform 240ms var(--ease);
}
.footer-bandeiras-row li:hover { transform: translateY(-2px) scale(1.12); }
.footer-paises-foot {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--on-ink-3);
  margin: 8px 0 0;
  letter-spacing: 0.02em;
  font-style: normal;
}

/* Twemoji renderiza como <img class="twemoji twemoji-bandeira"> — garante tamanho correto */
img.twemoji,
img.twemoji-bandeira {
  height: 1em;
  width: 1em;
  vertical-align: -0.125em;
  display: inline-block;
}
.footer-bandeiras-row img.twemoji-bandeira {
  height: 24px;
  width: 24px;
}
.hero-bandeiras img.twemoji-bandeira {
  height: 24px;
  width: 24px;
}

/* footer-grid agora 3 colunas balanceadas (override da regra original 2-col mais adiante no arquivo) */

/* =================== NOTAS RECENTES (carrossel — vitrine do blog na home) =================== */
.section-notas {
  background: var(--ink);
  color: var(--on-ink);
  padding-top: clamp(80px, 9vw, 120px);
  padding-bottom: clamp(80px, 9vw, 120px);
}
.section-notas .section-head .h-display { color: var(--on-ink); }
.section-notas .section-head .lead { color: rgba(236,232,222,0.78); }
.section-notas .lift { color: var(--accent); }
.section-notas .lift::after { background: linear-gradient(90deg, var(--accent), transparent); }

.notas-carousel-wrap {
  position: relative;
  margin: clamp(48px, 5vw, 64px) auto clamp(36px, 4vw, 48px);
  padding: 0 clamp(0px, 2vw, 32px);
}
.notas-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 16px 4px 36px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.notas-carousel::-webkit-scrollbar { display: none; }

.nota-card {
  flex: 0 0 auto;
  width: clamp(280px, 30vw, 360px);
  scroll-snap-align: start;
  background: var(--ink-2);
  border: 1px solid rgba(184,121,74,0.22);
  border-radius: clamp(18px, 2vw, 24px);
  overflow: hidden;
  box-shadow: 0 12px 24px -16px rgba(0,0,0,0.4), 0 0 0 1px rgba(184,121,74,0.04);
  transition: border-color 360ms var(--ease), background 360ms var(--ease), transform 360ms var(--ease), box-shadow 360ms var(--ease);
}
.nota-card:hover {
  background: var(--ink-3);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow:
    0 28px 56px -20px rgba(0,0,0,0.55),
    0 0 0 1px rgba(184,121,74,0.22),
    0 0 100px -40px rgba(184,121,74,0.32);
}
.nota-link {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(24px, 2.6vw, 32px);
  height: 100%;
  color: inherit;
}
.nota-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(184,121,74,0.36);
  padding: 5px 11px;
  border-radius: 999px;
}
.nota-title {
  font-family: var(--font);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--on-ink);
  margin: 4px 0 0;
}
.nota-lede {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(236,232,222,0.72);
  margin: 0;
  flex: 1;
}
.nota-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--accent);
  transition: gap 240ms var(--ease);
}
.nota-arrow svg { width: 14px; height: 14px; transition: transform 240ms var(--ease); }
.nota-card:hover .nota-arrow { gap: 12px; }
.nota-card:hover .nota-arrow svg { transform: translateX(3px); }

/* SETAS DO CARROSSEL */
.notas-carousel-arrow {
  position: absolute;
  top: calc(50% - 18px);
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14,32,29,0.85);
  border: 1px solid rgba(184,121,74,0.35);
  color: var(--accent-3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 280ms var(--ease), border-color 280ms var(--ease), transform 280ms var(--ease), opacity 280ms var(--ease);
}
.notas-carousel-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  transform: translateY(-50%) scale(1.06);
}
.notas-carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.notas-carousel-arrow svg { width: 18px; height: 18px; }
.notas-carousel-prev { left: -20px; }
.notas-carousel-next { right: -20px; }

/* DOTS */
.notas-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.notas-carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(184,121,74,0.3);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 280ms var(--ease), transform 280ms var(--ease), width 320ms var(--ease);
}
.notas-carousel-dots button:hover { background: rgba(184,121,74,0.55); }
.notas-carousel-dots button[aria-current="true"] {
  background: var(--accent);
  width: 24px;
  border-radius: 999px;
}

.notas-foot {
  display: flex;
  justify-content: center;
}
.notas-foot .btn-icon { width: 16px; height: 16px; margin-left: 4px; }

@media (max-width: 900px) {
  .notas-carousel-prev { left: 4px; }
  .notas-carousel-next { right: 4px; }
  .notas-carousel-arrow { width: 40px; height: 40px; }
}
@media (max-width: 600px) {
  .nota-card { width: 84vw; }
}

/* =================== FOOTER (com moldura editorial) =================== */
.site-footer {
  background: var(--ink);
  color: var(--on-ink);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: start;
  gap: clamp(32px, 4vw, 56px);
  padding: clamp(40px, 5vw, 56px);
  margin-bottom: 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(184,121,74,0.16);
  border-radius: clamp(20px, 2.6vw, 32px);
  transition: border-color 360ms var(--ease);
}
.footer-grid:hover { border-color: rgba(184,121,74,0.3); }
.footer-brand .footer-name {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.015em;
  display: block;
  margin-bottom: 8px;
  color: var(--on-ink);
}
.footer-sub {
  font-size: 13px;
  line-height: 1.7;
  color: var(--on-ink-2);
  font-weight: 300;
  margin: 0;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a { font-size: 13.5px; color: var(--on-ink-2); font-weight: 300; transition: color 220ms var(--ease); }
.footer-col a:hover { color: var(--accent-3); }

/* Footer contact links com SVG */
.footer-contacts { gap: 16px !important; }
.footer-contact-link {
  display: inline-flex !important;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 8px 0;
  transition: transform 280ms var(--ease), color 280ms var(--ease);
}
.footer-contact-link:hover { transform: translateX(4px); }
.footer-contact-link:hover .footer-contact-icon {
  background: rgba(184,121,74,0.18);
  border-color: var(--accent);
  color: var(--accent-3);
}
.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(184,121,74,0.08);
  border: 1px solid rgba(184,121,74,0.2);
  color: var(--accent-3);
  flex-shrink: 0;
  transition: background 280ms var(--ease), border-color 280ms var(--ease), color 280ms var(--ease);
}
.footer-contact-icon svg { width: 16px; height: 16px; }
.footer-contact-text { display: flex; flex-direction: column; gap: 2px; }
.footer-contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-ink-3);
}
.footer-contact-value {
  font-size: 14px;
  font-weight: 400;
  color: var(--on-ink);
  letter-spacing: -0.005em;
}

.footer-bottom { border-top: 1px solid var(--ink-line); padding: 24px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom small { font-size: 12px; color: var(--on-ink-3); font-weight: 300; }
.rd360-credit { display: inline-flex; align-items: center; gap: 10px; opacity: 0.55; transition: opacity 240ms var(--ease); }
.rd360-credit:hover { opacity: 1; }
.rd360-label { font-size: 10px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--on-ink-2); }
.rd360-credit img { height: 18px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }

/* =================== WHATSAPP FLOAT (icone oficial WA) =================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: var(--wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,0.38), 0 6px 14px rgba(0,0,0,0.18);
  z-index: 90;
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  transition: opacity 380ms var(--ease), transform 380ms var(--ease), box-shadow 240ms var(--ease);
}
.whatsapp-float.visible { opacity: 1; transform: translateY(0) scale(1); }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 36px rgba(37,211,102,0.5), 0 8px 18px rgba(0,0,0,0.22); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

/* WhatsApp pill (alternativa visivel — ajuda em desktop) */
.whatsapp-float-text {
  display: none;
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--on-ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms var(--ease);
}
.whatsapp-float:hover .whatsapp-float-text { opacity: 1; }

/* =================== REVEAL ON SCROLL =================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .cta-header { display: none; }

  .hero { min-height: clamp(580px, 88vh, 800px); padding: 130px 0 80px; }
  .hero-bg img { object-position: 60% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(14,32,29,0.78) 0%,
        rgba(14,32,29,0.85) 40%,
        rgba(14,32,29,0.92) 100%);
  }
  .hero-content { max-width: 100%; }

  .percurso-grid { grid-template-columns: 1fr; gap: 56px; }
  .percurso-photo { position: static; }
  .percurso-photo .photo-frame { max-width: 600px; margin: 0 auto; }

  /* cred-quote: stack 1 col em tablet/mobile */
  .cred-quote { grid-template-columns: 1fr; gap: 32px; }
  .cred-quote-seal { padding: 24px 0 0; border-left: 0; border-top: 1px solid rgba(224,168,122,0.25); padding-left: 0; padding-top: 24px; }

  /* pub-hero: stack 1 col em tablet/mobile */
  .pub-hero { grid-template-columns: 1fr; gap: 32px; text-align: left; padding: 32px 24px; }
  .pub-hero-img img { max-width: 220px; }
  .pub-hero-ficha { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 24px; }
  .pub-ficha-row { padding-bottom: 12px; }

  /* setas do carrossel: ficam dentro do container em mobile */
  .pub-carousel-prev { left: 4px; }
  .pub-carousel-next { right: 4px; }
  .pub-carousel-arrow { width: 40px; height: 40px; }

  .locais-card { padding: clamp(28px, 4vw, 40px); }
}

@media (max-width: 900px) {
  .modalidades-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .motivos-grid { grid-template-columns: 1fr; gap: 14px; }
  .motivo-card { min-height: auto; flex-direction: row; align-items: center; gap: 28px; }
  .motivo-num { flex-shrink: 0; }
  .cidade-list { grid-template-columns: 1fr; }
  .cidade-list li:nth-last-child(-n+2):not(.cidade-list-single li) { border-bottom: 1px solid var(--paper-line); }
  .cidade-list li:last-child { border-bottom: 0; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero { min-height: 100vh; min-height: 100dvh; padding: 110px 0 64px; }
  .hero-bg img { object-position: 70% center; }
  .hero-title { max-width: 100%; }
  .hero-ctas .btn { flex: 1 1 100%; }

  /* HEADER mobile (pill flutuante sticky) — marca respirada a esquerda, hamburger no canto direito */
  .site-header { top: 12px; width: calc(100% - 24px); }
  .site-header.scrolled { top: 8px; }
  .header-inner {
    padding: 10px 10px 10px 24px;
    gap: 16px;
    min-height: 56px;
  }
  .brand { flex: 1 1 auto; min-width: 0; }
  .brand-name { font-size: 15.5px; line-height: 1.15; }
  .brand-sub { font-size: 8.5px; letter-spacing: 0.26em; }
  .nav-toggle { width: 40px; height: 40px; padding: 11px 10px; flex-shrink: 0; }

  /* PROCESSO mobile — empilha numero como badge pill + conteudo abaixo (full-width respirado) */
  .processo-step {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 24px;
    align-items: flex-start;
  }
  .processo-step:hover { padding-left: 26px; }
  .processo-num {
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.16em;
    color: var(--accent);
    border: 1px solid rgba(184,121,74,0.4);
    border-radius: 999px;
    padding: 7px 14px;
    width: fit-content;
    display: inline-block;
  }
  .processo-step:hover .processo-num { transform: none; color: var(--accent-deep); }
  .processo-content h3 { font-size: 19px; }

  /* CARROSSEIS mobile — setas EMBAIXO do carrossel (junto com dots), via grid */
  .pub-carousel-wrap,
  .notas-carousel-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "track track track"
      "prev dots next";
    column-gap: 12px;
    row-gap: 4px;
    padding: 0;
    align-items: center;
  }
  .pub-carousel,
  .notas-carousel {
    grid-area: track;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 8px;
    scroll-padding-left: 20px;
    gap: 16px;
  }
  .pub-card { width: min(84vw, 360px); padding: 24px; }
  .nota-card { width: min(86vw, 380px); }

  /* Setas: position relative dentro do grid (embaixo do carrossel) */
  .pub-carousel-arrow,
  .notas-carousel-arrow {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 40px;
    height: 40px;
    background: rgba(14,32,29,0.92);
  }
  .pub-carousel-arrow:hover,
  .notas-carousel-arrow:hover { transform: scale(1.06); }
  .pub-carousel-prev,
  .notas-carousel-prev { grid-area: prev; justify-self: start; }
  .pub-carousel-next,
  .notas-carousel-next { grid-area: next; justify-self: end; }

  /* DOTS: na mesma row das setas no centro */
  .pub-carousel-dots,
  .notas-carousel-dots {
    grid-area: dots;
    margin: 0;
    align-self: center;
  }
  .pub-carousel-dots button,
  .notas-carousel-dots button { width: 9px; height: 9px; }

  /* TAGS dos cards: vira pill visivel pra contexto rapido */
  .pub-card-tag {
    align-self: flex-start;
    display: inline-block;
    padding: 5px 11px;
    border: 1px solid rgba(184,121,74,0.4);
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 0.16em;
    margin-bottom: 0;
  }

  /* DIVIDER editorial ("Atividade editorial e demais publicacoes") — centralizado no mobile, sem linhas dos lados */
  .pub-divider { justify-content: center; gap: 0; }
  .pub-divider-line { display: none; }
  .pub-divider-label {
    white-space: normal;
    text-align: center;
    line-height: 1.45;
    font-size: 10px;
    letter-spacing: 0.26em;
    padding: 8px 18px;
    border: 1px solid rgba(184,121,74,0.32);
    border-radius: 999px;
    max-width: 90vw;
  }

  /* SECAO HEADS centralizadas — fecho de mark e linha mais discretos */
  .section-head-mark { margin-top: 18px; }

  /* MANIFESTO mobile — padding lateral interno mais comportado */
  .manifesto-content { padding: 0 4px; }

  /* CRED-QUOTE mobile — padding interno mais comodo */
  .cred-quote { padding: 28px 24px; }
  .cred-quote-main p { font-size: 17px; line-height: 1.55; }
  .cred-quote-seal strong { font-size: 14px; }

  /* LIVRO destaque (pub-hero) mobile — image central, ficha 1 col */
  .pub-hero { padding: 28px 22px; }
  .pub-hero-img img { max-width: 180px; }
  .pub-hero-ficha { grid-template-columns: 1fr; }
  .pub-hero-title { font-size: 21px; }
  .pub-hero-quote { padding: 16px 18px; }

  /* MOTIVO cards (Para quem) — vertical stack apertado */
  .motivo-card { flex-direction: column; align-items: flex-start; gap: 14px; padding: 24px 22px; }
  .motivo-num { font-size: 32px; }
  .motivo-text { font-size: 15.5px; }

  /* MODALIDADES mobile */
  .modalidade-card { padding: 28px 24px; }
  .modalidade-card h3 { font-size: 19px; }
  .modalidade-card p { font-size: 14.5px; }

  /* FAQ mobile — chevron visivel + padding ajustado */
  .faq-question { padding: 18px 4px; font-size: 16px; }
  .faq-chevron { width: 28px; height: 28px; flex-shrink: 0; }

  /* LOCAIS mobile — padding e gap menor */
  .locais-card { padding: 28px 22px; gap: 32px; }
  .cidade-titulo { font-size: 22px; }
  .cidade-list { gap: 16px; }

  /* FOOTER mobile — TUDO centralizado */
  .footer-grid { padding: 28px 24px; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-col h4 { text-align: center; }
  .footer-contacts { align-items: center; }
  .footer-contact-link { justify-content: center; }
  .footer-contact-link:hover { transform: none; }
  .footer-contact-text { text-align: left; } /* texto interno alinhado pra ler bem ao lado do icone */
  .footer-bottom-inner { flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding-bottom: 8px; text-align: center; }
  .rd360-credit { justify-content: center; }

  /* WHATSAPP FLOAT mobile */
  .whatsapp-float { width: 56px; height: 56px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 28px; height: 28px; }

  /* SECTION padding vertical: encolhe 1 nivel */
  .section { padding-top: clamp(56px, 12vw, 80px); padding-bottom: clamp(56px, 12vw, 80px); }
  .section-notas { padding-top: 56px; padding-bottom: 56px; }
}

/* HERO PAISES + FOOTER PAISES mobile */
@media (max-width: 900px) {
  /* Mobile/tablet: footer-grid vira 1 col empilhado, paises centralizados */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-paises-col {
    padding: 24px 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(184,121,74,0.14);
    border-bottom: 1px solid rgba(184,121,74,0.14);
  }
  .footer-bandeiras-row { max-width: 100%; }
}
@media (max-width: 600px) {
  .hero-paises { gap: 10px; align-items: center; }
  .hero-paises-label { font-size: 11px; text-align: center; }
  .hero-bandeiras { gap: 12px; justify-content: center; }
  .hero-bandeiras li { font-size: 22px; }

  .footer-paises-mini { font-size: 14.5px; max-width: 100%; }
  .footer-paises-eyebrow { font-size: 10px; letter-spacing: 0.24em; }
  .footer-bandeiras-row li { width: 30px; height: 30px; font-size: 22px; }
  .footer-bandeiras-row img.twemoji-bandeira { height: 22px; width: 22px; }
}

/* =================== NAV-MOBILE PAISES (bandeiras dentro do hamburguer) =================== */
.nav-mobile-paises {
  margin-top: 20px;
  padding: 18px 4px 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.nav-mobile-paises-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-3);
  opacity: 0.8;
}
.nav-mobile-bandeiras {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 280px;
}
.nav-mobile-bandeiras li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 19px;
  line-height: 1;
  border: 0;
  padding: 0;
}
.nav-mobile-bandeiras img.twemoji-bandeira {
  height: 19px;
  width: 19px;
}

/* Telas muito estreitas (iPhone SE / Galaxy fold etc) */
@media (max-width: 380px) {
  .header-inner { padding: 10px 8px 10px 18px; gap: 10px; }
  .brand-name { font-size: 14.5px; }
  .nav-toggle { width: 38px; height: 38px; padding: 11px 9px; }
  .pub-card { width: 88vw; }
  .nota-card { width: 88vw; }
  .processo-step { padding: 24px 20px; }
  .locais-card { padding: 24px 18px; }
  .cidade-titulo { font-size: 20px; }
}

/* =================================================
   UI/UX REFINEMENTS — micro-interacoes e destaques
   ================================================= */

/* -------- Brand hover (logo do header) -------- */
.brand { transition: opacity 240ms var(--ease); }
.brand:hover { opacity: 0.78; }
.brand:hover .brand-name { color: var(--accent-3); transition: color 240ms var(--ease); }

/* -------- Nav-desktop com underline animado -------- */
.nav-desktop a {
  position: relative;
  padding: 6px 2px 10px;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 2px; bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--accent-3);
  transition: width 320ms var(--ease);
}
.nav-desktop a:hover::after { width: calc(100% - 4px); }

/* -------- Hero CTA glow on hover (mais ele eh o ponto focal) -------- */
.hero-ctas .btn-primary-light:hover {
  box-shadow:
    0 14px 28px -10px rgba(184,121,74,0.45),
    0 0 0 1px rgba(224,168,122,0.4),
    0 0 36px rgba(224,168,122,0.2);
}

/* -------- Header CTA glow on hover -------- */
.cta-header { position: relative; overflow: hidden; }
.cta-header::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 600ms var(--ease);
}
.cta-header:hover::before { left: 100%; }

/* -------- Motivo card num: muda cor no hover do card -------- */
.motivo-num { transition: color 360ms var(--ease), transform 360ms var(--ease); }
.motivo-card:hover .motivo-num { color: var(--accent-3); transform: translateX(4px); }

/* -------- Processo step: hover interativo (numero + linha) -------- */
.processo-step {
  transition: padding-left 320ms var(--ease);
  cursor: default;
}
.processo-step:hover { padding-left: 8px; }
.processo-num { transition: color 320ms var(--ease), transform 320ms var(--ease); }
.processo-step:hover .processo-num { color: var(--accent-3); transform: scale(1.05); }
.processo-content h3 { transition: color 320ms var(--ease); }
.processo-step:hover .processo-content h3 { color: var(--accent-deep); }

/* -------- FAQ chevron pulse on open + hover lift -------- */
@keyframes chevronPulse {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.15); }
  100% { transform: rotate(180deg) scale(1); }
}
.faq-item[open] .faq-chevron {
  animation: chevronPulse 480ms var(--ease);
}
.faq-question:hover .faq-chevron {
  border-color: var(--accent);
  background: rgba(184,121,74,0.08);
}

/* -------- Cidade-block hover (Locais) -------- */
.cidade-block {
  transition: transform 360ms var(--ease), border-color 360ms var(--ease), box-shadow 360ms var(--ease);
}
.cidade-block:hover {
  transform: translateY(-3px);
  border-color: rgba(184,121,74,0.3);
  box-shadow: 0 18px 36px -16px rgba(14,32,29,0.18);
}
.cidade-titulo { transition: color 320ms var(--ease); }
.cidade-block:hover .cidade-titulo { color: var(--accent-deep); }

/* -------- Cidade-list li hover sutil -------- */
.cidade-list li { transition: color 280ms var(--ease), padding-left 280ms var(--ease); }
.cidade-list li:hover { color: var(--accent-deep); padding-left: 6px; }


/* -------- Eyebrow: linha cresce ao entrar no viewport -------- */
.eyebrow::before {
  width: 0;
  transition: width 720ms var(--ease) 200ms;
}
.reveal.in-view .eyebrow::before,
.in-view.eyebrow::before {
  width: 36px;
}
/* Pra eyebrows que NAO estao dentro de .reveal (ex: hero, faq head), forçar inline */
.hero-content.in-view .eyebrow::before,
.section-head.in-view .eyebrow::before,
.faq-container .section-head.in-view .eyebrow::before {
  width: 36px;
}

/* -------- Text emphasis: palavras impactantes -------- */
.text-em {
  color: var(--accent);
  font-weight: 400;
  border-bottom: 1px solid rgba(184,121,74,0.4);
  padding-bottom: 1px;
  transition: color 240ms var(--ease), border-color 240ms var(--ease);
}
.text-em:hover { color: var(--accent-deep); border-bottom-color: var(--accent); }

/* Variante para texto sobre dark bg */
.section-dark .text-em,
.hero .text-em {
  color: var(--accent-3);
  border-bottom-color: rgba(224,168,122,0.4);
}
.section-dark .text-em:hover,
.hero .text-em:hover {
  color: var(--accent-3);
  border-bottom-color: var(--accent-3);
}

/* -------- Footer brand hover -------- */
.footer-name { transition: color 320ms var(--ease); cursor: default; }
.footer-brand:hover .footer-name { color: var(--accent-3); }

/* -------- WhatsApp float: pulse sutil (atrair atencao depois de delay) -------- */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37,211,102,0.38), 0 6px 14px rgba(0,0,0,0.18), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 10px 28px rgba(37,211,102,0.38), 0 6px 14px rgba(0,0,0,0.18), 0 0 0 12px rgba(37,211,102,0); }
}
.whatsapp-float.visible { animation: waPulse 2.4s ease-out 1.5s 2; }
.whatsapp-float:hover { animation: none; }

/* -------- Smooth scroll behavior pra anchor links -------- */
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float.visible { animation: none; }
  .faq-item[open] .faq-chevron { animation: none; }
  .cta-header::before { transition: none; }
}

