/* ============================================================
   da Silva Costa — Sistema visual
   ============================================================ */

:root {
  /* Paleta — cinza profundo + teal accent */
  --ink: #212127;            /* Cinza escuro principal */
  --ink-2: #2a2a31;
  --ink-3: #34343d;
  --ink-4: #1a1a1f;
  --paper: #fafaf9;
  --paper-2: #f2f1ee;
  --paper-3: #e6e5e1;
  --line: rgba(33, 33, 39, 0.12);
  --line-strong: rgba(33, 33, 39, 0.24);
  --muted: rgba(33, 33, 39, 0.62);
  --muted-2: rgba(33, 33, 39, 0.44);

  --accent: #00B2AA;          /* Teal — destaque */
  --accent-2: #00d4cc;
  --accent-soft: rgba(0, 178, 170, 0.12);

  /* Tipografia — Roboto (limpa) */
  --font-display: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Espaçamento */
  --container: 1400px;
  --gutter: clamp(20px, 4vw, 64px);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Tipografia base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}
h1, h2 { font-weight: 100; }
h1 { font-size: clamp(48px, 7vw, 112px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(28px, 3vw, 44px); }
h4 { font-size: clamp(20px, 1.6vw, 26px); }

p { margin: 0; }

a { color: inherit; text-decoration: none; }

/* Utilitários */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 500;
}

.eyebrow .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}
.nav.is-scrolled {
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px var(--gutter);
  border-bottom: 1px solid var(--line);
}
.nav.theme-dark { color: var(--paper); }
.nav.theme-dark.is-scrolled {
  background: rgba(33, 33, 39, 0.92);
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
}
.nav-brand .mark {
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -0.05em;
}
.nav-brand .name { font-weight: 400; }
.nav-brand .name b { font-weight: 500; }
.nav-brand img { height: 38px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 400;
  align-items: center;
}
.nav-link {
  position: relative;
  padding: 6px 0;
  cursor: pointer;
  transition: opacity 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.3s ease;
}
.nav-link:hover::after { right: 0; }
.nav-link.active::after { right: 0; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: currentColor;
}
.nav-cta:hover span { color: var(--paper); }
.nav.theme-dark .nav-cta:hover span { color: var(--ink); }

/* Mobile menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 8px;
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--paper, #fff);
    color: var(--ink, #0e0d0c);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    font-size: 22px;
    font-weight: 300;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 90;
  }
  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav.theme-dark .nav-links {
    background: var(--ink, #0e0d0c);
    color: var(--paper, #fff);
  }
  .nav-links .nav-cta {
    margin-top: 16px;
    font-size: 14px;
    padding: 14px 28px;
  }
  .nav.is-menu-open .nav-toggle {
    position: relative;
    z-index: 91;
  }
  /* CRÍTICO: backdrop-filter no .nav cria containing block que confina o
     overlay fixed dentro do nav. Removemos quando o menu está aberto pra
     o .nav-links.is-open ocupar viewport inteiro. */
  .nav.is-menu-open,
  .nav.is-menu-open.is-scrolled {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
}

/* Variant A — Editorial dark */
.hero-a {
  background: var(--ink);
  color: var(--paper);
}
.hero-a .hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(26,77,74,0.25), transparent 60%),
    linear-gradient(180deg, #0a1f33 0%, #061421 100%);
}
.hero-a .hero-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  background-size: cover;
  background-position: 75% center;
  -webkit-mask-image: linear-gradient(270deg, black 30%, transparent 100%);
  mask-image: linear-gradient(270deg, black 30%, transparent 100%);
  opacity: 0.6;
}

/* Variant B — Light editorial */
.hero-b {
  background: var(--paper);
  color: var(--ink);
}
.hero-b .hero-bg {
  position: absolute; inset: 0;
  background: var(--paper);
}
.hero-b .hero-image {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  width: 38%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  filter: grayscale(0.2);
}

/* Variant C — Split bold */
.hero-c {
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding-bottom: 0;
}
.hero-c .hero-bg { display: none; }
.hero-c .hero-image {
  background-size: cover;
  background-position: center;
}
.hero-c .hero-content {
  padding: 160px var(--gutter) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 880px) {
  .hero-c { grid-template-columns: 1fr; grid-template-rows: 50vh auto; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px var(--gutter) 80px;
  width: 100%;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero-meta span { display: block; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 92px);
  font-weight: 100;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.hero-title .em {
  font-weight: 300;
  color: var(--accent);
}
.hero-title .accent-line {
  color: var(--accent-2);
}
.hero-a .hero-title .accent-line { color: var(--accent); }

.hero-sub {
  max-width: 540px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  opacity: 0.78;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-a .btn-primary {
  background: var(--accent);
  color: var(--ink);
}
.hero-a .btn-primary:hover { background: var(--accent-2); color: var(--ink); }
.hero-a .btn-ghost {
  border-color: rgba(255,255,255,0.3);
  color: var(--paper);
}
.hero-a .btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.hero-scroll-hint {
  position: absolute;
  left: var(--gutter);
  bottom: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-scroll-hint::after {
  content: '';
  width: 40px; height: 1px;
  background: currentColor;
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleX(1); opacity: 0.5; }
  50% { transform: scaleX(0.4); opacity: 1; }
}

/* Hero ticker — discreto */
.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-ticker .container {
  display: flex; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.hero-ticker .item { opacity: 0.6; display: flex; align-items: center; gap: 12px; }
.hero-ticker .item b { color: var(--accent); font-weight: 500; }

/* MOBILE — hero fixes */
@media (max-width: 880px) {
  .hero-ticker { display: none; }
  .hero-scroll-hint { display: none; }
  .hero-title { font-size: clamp(40px, 9vw, 64px) !important; line-height: 1.05; }
  .hero-title span { font-size: inherit !important; }
  .hero-sub { font-size: 15px !important; line-height: 1.55; max-width: 100%; }
  /* No mobile, esconder a foto do hero (já aparece no About) — banner usa só
     o gradient sóbrio do hero-bg, com mais respiro pro título */
  .hero-a .hero-image { display: none; }
  .hero-content { position: relative; z-index: 2; padding-top: 40px; }
  .hero { padding-top: 100px !important; }
}

/* ============================================================
   STATS / Numbers
   ============================================================ */
.stats {
  padding: 120px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.stats-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: end;
}
.stats-header h2 {
  font-size: clamp(40px, 5vw, 72px);
  max-width: 14ch;
}
.stats-header p {
  color: var(--muted);
  max-width: 42ch;
  font-size: 17px;
  line-height: 1.6;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--paper);
  padding: 48px 36px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(64px, 7vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 300;
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}
.stat-num .suffix {
  font-size: 0.4em;
  color: var(--accent);
  font-weight: 400;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .stats { padding: 60px 0; }
  .stats-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stats-grid .stat {
    padding: 28px 20px;
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,0.5);
    border-radius: 6px;
    margin-bottom: 12px;
  }
  .stats-grid .stat:first-child { border-top: 1px solid var(--line); }
  .stat-num { font-size: 64px !important; }
  .stat-desc { font-size: 14px; }
}
@media (min-width: 600px) and (max-width: 880px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stats-grid .stat { margin-bottom: 0; }
}

/* ============================================================
   QUEM SOMOS
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 96px;
  align-items: start;
}
.about-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--paper-2);
}
.about-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 75% center;
  filter: grayscale(0.15) contrast(1.05);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.about-image-wrap:hover img { transform: scale(1.04); }
.about-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--paper);
  padding: 10px 16px;
  border-radius: 999px;
}
.about-image-tag b { color: var(--accent); font-weight: 500; }

.about-content h2 {
  font-size: clamp(36px, 4vw, 64px);
  margin-bottom: 32px;
  max-width: 16ch;
}
.about-content h2 .em {
  font-style: italic;
  color: var(--accent);
}
.about-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 56ch;
}
.about-content p strong { color: var(--ink); font-weight: 500; }

.about-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.about-meta-item .num {
  font-family: var(--font-display);
  font-size: 40px;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.about-meta-item .lab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   PILARES — Morar / Investir / Proteger
   ============================================================ */
.pillars {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.pillars-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 96px;
}
.pillars-header h2 {
  font-size: clamp(40px, 5vw, 80px);
  max-width: 14ch;
  font-weight: 300;
}
.pillars-header h2 .em { color: var(--accent); font-weight: 200; }
.pillars-header p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  line-height: 1.7;
  max-width: 44ch;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}
.pillar {
  background: var(--ink);
  padding: 48px 40px 56px;
  position: relative;
  transition: background 0.5s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}
.pillar:hover {
  background: var(--ink-2);
}
.pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.5;
  margin-bottom: 64px;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 100;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.pillar-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.pillar-desc {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: auto;
  max-width: 36ch;
}
.pillar-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}
.pillar-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.9);
}
.pillar-list li::before {
  content: '—';
  margin-right: 12px;
  color: rgba(255,255,255,0.4);
}
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  transition: color 0.3s;
}
.pillar-link:hover { color: var(--accent); }
.pillar-link .arr { transition: transform 0.3s; }
.pillar:hover .pillar-link .arr { transform: translateX(6px); }

@media (max-width: 880px) {
  .pillars-header { grid-template-columns: 1fr; gap: 24px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { min-height: auto; }
}

/* ============================================================
   PROCESS / Como Trabalhamos
   ============================================================ */
.process {
  padding: 100px 0;
  background: var(--paper);
}
.process-header {
  margin-bottom: 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}
.process-header h2 {
  font-size: clamp(40px, 5vw, 72px);
  max-width: 16ch;
}
.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.process-row {
  display: grid;
  grid-template-columns: 80px 280px 1fr 200px;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
  transition: padding 0.4s ease;
  position: relative;
}
.process-row:last-child { border-bottom: 1px solid var(--line); }
.process-row:hover {
  padding-left: 16px;
  padding-right: 16px;
}
.process-row::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--paper-2);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.process-row:hover::after { opacity: 1; }

.process-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.process-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.process-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  max-width: 50ch;
}
.process-cta {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
.process-cta .arr { transition: transform 0.3s; }
.process-row:hover .process-cta .arr { transform: translateX(6px); }

@media (max-width: 880px) {
  .process-header { grid-template-columns: 1fr; gap: 24px; }
  .process-row {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
  }
  .process-name { grid-column: 2; }
  .process-desc, .process-cta {
    grid-column: 1 / -1;
  }
  .process-cta { text-align: left; justify-content: flex-start; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--paper-2);
}
.testimonials-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 80px;
}
.testimonials-header h2 {
  font-size: clamp(40px, 5vw, 72px);
  max-width: 14ch;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial {
  background: var(--paper);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.testimonial:hover { transform: translateY(-6px); }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
  flex: 1;
}
.testimonial-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--accent);
  line-height: 0;
  display: block;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--paper-3);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-meta .name {
  font-weight: 500;
  font-size: 14px;
}
.testimonial-meta .role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.testimonial-result {
  position: absolute;
  top: 36px;
  right: 36px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

@media (max-width: 880px) {
  .testimonials-header { grid-template-columns: 1fr; gap: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 100px 0;
  background: var(--paper);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 96px;
  align-items: start;
}
.faq-grid h2 {
  font-size: clamp(36px, 4vw, 64px);
  max-width: 12ch;
}
.faq-grid h2 .em { font-style: italic; color: var(--accent); }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.01em;
  font-weight: 400;
}
.faq-toggle {
  width: 32px; height: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s;
  font-size: 18px;
}
.faq-item.is-open .faq-toggle {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, margin-top 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 64ch;
}
.faq-item.is-open .faq-a {
  max-height: 400px;
  margin-top: 20px;
  opacity: 1;
}

@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   CTA strip
   ============================================================ */
.cta-strip {
  background: var(--ink-4);
  color: var(--paper);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(0,178,170,0.18), transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0,178,170,0.10), transparent 70%),
    linear-gradient(180deg, var(--ink-4) 0%, var(--ink) 100%);
}
.cta-strip-inner {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: end;
}
.cta-strip h2 {
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 300;
  max-width: 16ch;
  letter-spacing: -0.03em;
}
.cta-strip h2 .em { color: var(--accent); font-weight: 200; }
.cta-strip-meta {
  text-align: right;
}
.cta-strip-meta p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 24px;
  max-width: 32ch;
  margin-left: auto;
}
.cta-strip .btn-primary {
  background: var(--accent);
  color: var(--ink);
}
.cta-strip .btn-primary:hover {
  background: var(--accent-2);
}

@media (max-width: 880px) {
  .cta-strip-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-strip-meta { text-align: left; }
  .cta-strip-meta p { margin-left: 0; }
}

/* ============================================================
   FOOTER — escuro com aurora
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0 32px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(0,178,170,0.14), transparent 70%),
    radial-gradient(ellipse 60% 40% at 10% 90%, rgba(0,178,170,0.06), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,255,255,0.03), transparent 70%);
  pointer-events: none;
}
.footer .container { position: relative; z-index: 1; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}
.footer-brand .name {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.footer-brand p {
  color: rgba(255,255,255,0.65);
  max-width: 36ch;
  line-height: 1.6;
  margin-bottom: 24px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.footer-contact a:hover { color: var(--accent); }
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-list a {
  color: rgba(255,255,255,0.85);
  transition: color 0.3s, padding-left 0.3s;
}
.footer-list a:hover {
  color: var(--accent);
  padding-left: 8px;
}
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0 24px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 78ch;
}
.footer-disclaimer p { margin: 0; }
.footer-disclaimer strong { color: rgba(255,255,255,0.7); font-weight: 500; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}
.footer-bottom .socials {
  display: flex;
  gap: 16px;
}
.footer-legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover {
  color: rgba(255,255,255,0.85);
}

@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ============================================================
   PAGE: PROTEGER
   ============================================================ */
.page-hero {
  padding: 130px 0 60px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(0,178,170,0.20), transparent 70%),
    radial-gradient(ellipse 50% 40% at 15% 70%, rgba(0,178,170,0.08), transparent 70%);
}
.page-hero-inner { position: relative; }
.page-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.page-hero-eyebrow .line {
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.page-hero h1 {
  font-size: clamp(44px, 5.5vw, 88px);
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 14ch;
}
.page-hero h1 .em { color: var(--accent); font-weight: 200; }
.page-hero p {
  max-width: 56ch;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
}

.page-hero-stats {
  margin-top: 96px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.page-hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 300;
  margin-bottom: 8px;
  display: block;
}
.page-hero-stat .lab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* Service cards on Proteger */
.services-section {
  padding: 100px 0;
  background: var(--paper);
}
.services-header {
  margin-bottom: 80px;
}
.services-header .eyebrow { margin-bottom: 24px; display: block; }
.services-header h2 {
  font-size: clamp(36px, 4vw, 64px);
  max-width: 18ch;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--paper);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  cursor: pointer;
  transition: background 0.4s ease;
}
.service-card:hover { background: var(--paper-2); }
.service-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 32px;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.service-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: auto;
  font-size: 15px;
  max-width: 50ch;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.service-card-link .arr { transition: transform 0.3s; }
.service-card:hover .service-card-link .arr { transform: translateX(6px); }

@media (max-width: 880px) {
  .services-grid { grid-template-columns: 1fr; }
  .page-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* Urgency bar on Proteger */
.urgency-bar {
  background: var(--accent);
  color: var(--ink);
  padding: 28px 0;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.urgency-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.urgency-bar a {
  text-decoration: underline;
  font-weight: 600;
}

/* ============================================================
   PAGE: CONTENT (artigo / suspensão)
   ============================================================ */
.content-page {
  padding: 100px 0;
  background: var(--paper);
}
.content-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.content-meta .accent { color: var(--accent); }
.content-page h1 {
  font-size: clamp(48px, 7vw, 104px);
  max-width: 18ch;
  margin-bottom: 32px;
  font-weight: 300;
}
.content-page .lead {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  font-weight: 400;
  max-width: 40ch;
  color: var(--ink);
  margin-bottom: 64px;
  letter-spacing: -0.01em;
}
.content-grid {
  display: grid;
  grid-template-columns: 240px 1fr 280px;
  gap: 64px;
  margin-top: 64px;
  align-items: start;
}
.content-toc {
  position: sticky;
  top: 100px;
  font-size: 13px;
}
.content-toc-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.content-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.content-toc a {
  color: var(--muted);
  display: block;
  padding: 6px 0;
  border-left: 1px solid var(--line);
  padding-left: 16px;
  transition: all 0.3s;
}
.content-toc a:hover, .content-toc a.active {
  color: var(--ink);
  border-left-color: var(--accent);
}

.content-body {
  max-width: 64ch;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
}
.content-body p {
  margin-bottom: 24px;
  color: var(--ink);
}
.content-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 5em;
  line-height: 0.85;
  float: left;
  padding-right: 12px;
  padding-top: 8px;
  font-weight: 400;
  color: var(--accent);
}
.content-body h2 {
  font-size: clamp(28px, 2.6vw, 40px);
  margin: 64px 0 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.content-body h3 {
  font-size: 24px;
  margin: 40px 0 16px;
  font-weight: 500;
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
}
.content-body blockquote {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.4;
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding: 16px 0 16px 32px;
  margin: 48px 0;
  color: var(--ink);
}
.content-body ul {
  margin: 24px 0 32px;
  padding-left: 0;
  list-style: none;
}
.content-body ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}
.content-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 16px; height: 1px;
  background: var(--accent);
}
.content-body strong { font-weight: 600; color: var(--ink); }

.content-aside {
  position: sticky;
  top: 100px;
}
.content-aside-card {
  background: var(--ink);
  color: var(--paper);
  padding: 32px 28px;
  margin-bottom: 24px;
}
.content-aside-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--paper);
}
.content-aside-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  margin-bottom: 20px;
}
.content-aside-card .btn-primary {
  background: #5fa8a0;
  color: var(--ink);
  width: 100%;
  justify-content: center;
}
.content-aside-stats {
  border: 1px solid var(--line);
  padding: 24px;
}
.content-aside-stats h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 500;
}
.content-aside-stats .item {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.content-aside-stats .item:first-of-type { border-top: none; }
.content-aside-stats .item .v {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--accent);
}

@media (max-width: 1100px) {
  .content-grid { grid-template-columns: 1fr; }
  .content-toc, .content-aside { position: static; }
}

/* ============================================================
   WhatsApp floating button
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
}
.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.5);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.5;
  animation: pulseWa 2s ease-out infinite;
}
@keyframes pulseWa {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================================
   Page transition
   ============================================================ */
.page-enter {
  animation: pageEnter 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Marquee fold
   ============================================================ */
.marquee-fold {
  overflow: hidden;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marqueeMove 60s linear infinite;
  white-space: nowrap;
  width: max-content;
  align-items: center;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 300;
  letter-spacing: -0.03em;
  font-style: italic;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 48px;
}
.marquee-item .star {
  display: inline-block;
  width: 28px;
  height: 28px;
  font-style: normal;
  color: var(--accent);
}
@keyframes marqueeMove {
  to { transform: translateX(-50%); }
}
