/* ═══════════════════════════════════════════════════════════════════
   WM Cont · Site institucional
   Herdado do Design System: templates/wm-cont/wm-cont-design-system/
   ═══════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ────────────────────────────────────────────────── */
:root {
  --ease-apple:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo:   cubic-bezier(0.19, 1, 0.22, 1);

  /* Cores da marca */
  --bg:          #FFFFFF;
  --surface:     #FFFFFF;
  --primary:     #1B25BF;
  --gold:        #101785;
  --deep:        #0A0E45;
  --deep-hover:  #141A5C;
  --ink:         #141414;
  --gray:        #7A7A7A;
  --light:       #F3F3F3;

  /* Derivados */
  --line:        rgba(0,0,0,0.08);
  --line-soft:   rgba(0,0,0,0.04);
  --muted:       rgba(0,0,0,0.48);
  --muted-soft:  rgba(0,0,0,0.30);
  --grad:        linear-gradient(90deg, #1B25BF 0%, #0A0E45 30%, #101785 55%, #1B25BF 100%);
  --grad-2:      linear-gradient(90deg, #1B25BF, #0A0E45);

  /* Layout */
  --shell:       80rem;
  --nav-h:       4.5rem;
}

/* ── Reset ────────────────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
button, input, select, textarea { font-family: inherit; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }

body {
  font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

a { color: inherit; text-decoration: none; outline: none; }
a, button, [role="button"] { cursor: pointer; }
img { max-width: 100%; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #CCCCCC; border-radius: 2px; }

::selection { background: rgba(27,37,191,0.14); }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Grain overlay (assinatura do DS) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}

/* ── Fundo ambiente ───────────────────────────────────────────────── */
.bg-field {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
}
.bg-field .blob {
  position: absolute;
  border-radius: 9999px;
}
.bg-field .blob-1 {
  top: -8rem; left: -6rem; width: 38rem; height: 38rem;
  background: radial-gradient(circle, rgba(27,37,191,0.08) 0%, rgba(16,23,133,0.03) 50%, transparent 100%);
  filter: blur(90px);
}
.bg-field .blob-2 {
  top: 45%; right: -8rem; width: 28rem; height: 28rem;
  background: radial-gradient(circle, rgba(10,14,69,0.06) 0%, transparent 70%);
  filter: blur(80px);
}
.bg-field .grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,0,0,0.012) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,0,0,0.012) 1px, transparent 1px);
  background-size: 5rem 5rem;
}

/* ── Reveal on scroll ─────────────────────────────────────────────── */
/* Sem JS o conteúdo continua visível: a animação só liga depois que o
   script marca <html class="js-ready">. */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(2.5rem) scale(0.98);
  filter: blur(12px);
  transition: opacity 1.1s var(--ease-apple), transform 1.1s var(--ease-apple), filter 1.1s var(--ease-apple);
  will-change: opacity, transform, filter;
}
.js-ready .reveal.in-view { opacity: 1; transform: none; filter: none; }

@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ── Keyframes ────────────────────────────────────────────────────── */
@keyframes pulse-dot {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.1); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

.live-dot { animation: pulse-dot 3s ease-in-out infinite; }

.shimmer-text {
  background: var(--grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}
.gradient-text {
  background: var(--grad-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Shell ────────────────────────────────────────────────────────── */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .shell { padding-left: 2rem; padding-right: 2rem; }
}

.section { padding: 6rem 0; }
.section--tight { padding: 4rem 0; }
.section--line { border-top: 1px solid var(--line-soft); }
@media (min-width: 768px) {
  .section { padding: 8rem 0; }
}

/* ── Rótulos de seção ─────────────────────────────────────────────── */
.eyebrow {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.28);
  display: block;
  margin-bottom: 1.25rem;
}
.section-head { max-width: 46rem; margin-bottom: 3.5rem; }
.section-head h2 {
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--ink);
}
.section-head p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 1.25rem;
}

/* ── Badge ────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  background: rgba(255,255,255,0.9) padding-box,
              linear-gradient(90deg, rgba(27,37,191,0.32), rgba(10,14,69,0.18)) border-box;
  padding: 0.5rem 1rem;
  backdrop-filter: blur(12px);
}
.badge span.dot-wrap {
  position: relative;
  display: flex;
  width: 8px; height: 8px;
}
.badge .dot-a {
  position: absolute; width: 100%; height: 100%;
  border-radius: 9999px; background: var(--primary); opacity: 0.5;
}
.badge .dot-b {
  position: relative; width: 8px; height: 8px;
  border-radius: 9999px; background: var(--primary); display: inline-block;
}
.badge .badge-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.6);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 2px;
  border: 1px solid transparent;
  border-image: linear-gradient(90deg, rgba(27,37,191,0.4), rgba(10,14,69,0.25)) 1;
  background: rgba(27,37,191,0.06);
  padding: 0.375rem 0.75rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ── Botões ───────────────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  overflow: hidden;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  transition: transform 0.3s var(--ease-apple), box-shadow 0.3s var(--ease-apple),
              color 0.3s var(--ease-apple), border-color 0.3s var(--ease-apple);
}
.btn:hover { transform: scale(1.015); }
.btn > span, .btn > svg { position: relative; z-index: 1; }
.btn > svg { transition: transform 0.3s var(--ease-apple); }
.btn:hover > svg { transform: translateX(3px); }

.btn-sweep {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-expo);
}
.btn:hover .btn-sweep { transform: translateY(0); }

.btn--primary {
  background: var(--grad-2);
  color: #fff;
  box-shadow: 0 0 2rem rgba(27,37,191,0.2);
}
.btn--primary .btn-sweep { background: rgba(0,0,0,0.16); }

.btn--outline {
  border: 1px solid rgba(0,0,0,0.22);
  color: var(--ink);
}
.btn--outline:hover { border-color: rgba(27,37,191,0.5); color: var(--primary); }
.btn--outline .btn-sweep { background: rgba(27,37,191,0.06); }

.btn--ghost {
  border: 1px solid rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.45);
}
.btn--ghost:hover { color: rgba(0,0,0,0.78); border-color: rgba(0,0,0,0.2); }

.btn--sm { padding: 0.7rem 1.25rem; font-size: 0.62rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── Nav ──────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(255,255,255,0.92) padding-box,
              linear-gradient(90deg, rgba(27,37,191,0.25) 0%, rgba(10,14,69,0.15) 100%) border-box;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  transition: box-shadow 0.4s var(--ease-apple);
}
#nav.scrolled { box-shadow: 0 1px 2.5rem rgba(0,0,0,0.06); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1.5rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.nav-brand img { height: 30px; width: auto; object-fit: contain; display: block; }
.nav-brand .wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand .wm-name {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-brand .wm-sub {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.32);
}

.nav-links { display: none; align-items: center; gap: 1.75rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.42);
  transition: color 0.3s;
  white-space: nowrap;
  position: relative;
  padding: 0.25rem 0;
}
.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--grad-2);
  border-radius: 2px;
}

.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

#nav-mobile {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(40px);
  padding: 1.25rem 0 1.75rem;
}
#nav-mobile.open { display: block; }
@media (min-width: 1024px) { #nav-mobile { display: none !important; } }
#nav-mobile a.m-link {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}
#nav-mobile a.m-link:last-of-type { border-bottom: none; }
#nav-mobile .btn { margin-top: 1.25rem; width: 100%; }

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 4.5rem);
  padding-bottom: 4.5rem;
}
@media (min-width: 768px) {
  .hero { padding-top: calc(var(--nav-h) + 7rem); padding-bottom: 6.5rem; }
}
.hero-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-glow i {
  position: absolute;
  border-radius: 9999px;
  display: block;
}
.hero-glow i:nth-child(1) {
  top: 10%; left: 2%; width: 44vw; height: 44vw;
  background: radial-gradient(ellipse, rgba(27,37,191,0.09) 0%, transparent 65%);
  filter: blur(20px);
}
.hero-glow i:nth-child(2) {
  bottom: 0; right: 0; width: 36vw; height: 36vw;
  background: radial-gradient(ellipse, rgba(10,14,69,0.07) 0%, transparent 65%);
  filter: blur(20px);
}
.hero-glow i:nth-child(3) {
  inset: 0;
  border-radius: 0;
  background-image: linear-gradient(rgba(0,0,0,0.022) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,0,0,0.022) 1px, transparent 1px);
  background-size: 4rem 4rem;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 40% 40%, #000 10%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 70% at 40% 40%, #000 10%, transparent 100%);
}
.hero-inner { position: relative; z-index: 10; }

.hero h1 {
  font-weight: 900;
  font-size: clamp(2.4rem, 6.2vw, 4.6rem);
  color: var(--ink);
  margin: 1.5rem 0 0;
  max-width: 20ch;
}
.hero .lede {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.75;
  color: var(--muted);
  max-width: 46ch;
  margin: 1.75rem 0 2.5rem;
}

/* Página interna: hero compacto */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 3.5rem);
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--line-soft);
}
@media (min-width: 768px) {
  .page-hero { padding-top: calc(var(--nav-h) + 5.5rem); padding-bottom: 5rem; }
}
.page-hero h1 {
  font-weight: 900;
  font-size: clamp(2.2rem, 5.4vw, 3.9rem);
  color: var(--ink);
  margin-top: 1.25rem;
  max-width: 18ch;
}
.page-hero p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 52ch;
  margin-top: 1.5rem;
}

/* Trilha de credibilidade */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-soft);
  margin-top: 3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  color: rgba(0,0,0,0.45);
}
.trust-item svg { color: var(--primary); flex-shrink: 0; }

/* ── Grids ────────────────────────────────────────────────────────── */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (min-width: 700px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr 0.95fr; gap: 5rem; }
  .split--wide-left { grid-template-columns: 1.25fr 0.75fr; }
}

/* ── Cards ────────────────────────────────────────────────────────── */
.card {
  display: block;
  position: relative;
  border-radius: 2px;
  border: 1px solid var(--line);
  background: rgba(250,250,250,0.75);
  padding: 2rem;
  backdrop-filter: blur(12px);
  transition: box-shadow 0.6s var(--ease-apple), border-color 0.6s var(--ease-apple),
              transform 0.6s var(--ease-apple), background 0.6s var(--ease-apple);
  height: 100%;
}
.card:hover {
  background: #fff;
  border-color: rgba(27,37,191,0.28);
  box-shadow: 0 1.25rem 3.5rem -1.25rem rgba(10,14,69,0.18), 0 0 2.5rem rgba(27,37,191,0.05);
  transform: translateY(-3px);
}
.card h3 {
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.card p {
  font-size: 0.84rem;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 0.7rem;
}

.card-icon {
  margin-bottom: 1.6rem;
  display: inline-flex;
  width: 2.75rem; height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border: 1px solid transparent;
  border-image: linear-gradient(135deg, rgba(27,37,191,0.32), rgba(10,14,69,0.18)) 1;
  background: rgba(27,37,191,0.06);
  color: var(--primary);
  transition: background 0.4s var(--ease-apple);
}
.card:hover .card-icon { background: rgba(27,37,191,0.11); }

.card-index {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.14);
  font-feature-settings: "tnum";
}

/* Card de serviço detalhado */
.svc-detail {
  border-radius: 2px;
  border: 1px solid var(--line);
  background: rgba(250,250,250,0.7);
  padding: 2.25rem;
  transition: border-color 0.5s var(--ease-apple), background 0.5s var(--ease-apple);
}
.svc-detail:hover { border-color: rgba(27,37,191,0.28); background: #fff; }
.svc-detail h3 {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
  margin-top: 1.25rem;
}
.svc-detail p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 1rem;
}
.svc-list {
  list-style: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 0.7rem;
}
.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(0,0,0,0.55);
}
.svc-list li svg { color: var(--primary); flex-shrink: 0; margin-top: 0.28rem; }

/* ── Métricas ─────────────────────────────────────────────────────── */
.metric {
  border-radius: 2px;
  border: 1px solid var(--line-soft);
  background: #FAFAFA;
  padding: 1.5rem;
  transition: background 0.35s;
}
.metric:hover { background: #F3F3F3; }
.metric:hover .bar-fill { transform: scaleX(1); }
.metric .m-label {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.32);
  margin-bottom: 0.875rem;
}
.metric .m-value {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  font-weight: 900;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.metric .m-value small {
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 0.28rem;
  margin-left: 0.15rem;
  letter-spacing: 0;
}
.metric .bar {
  margin-top: 1.25rem;
  height: 1px;
  background: rgba(0,0,0,0.07);
  overflow: hidden;
  border-radius: 9999px;
}
.metric .bar-fill {
  height: 100%;
  background: linear-gradient(to right, #1B25BF, #0A0E45);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease-apple);
  border-radius: 9999px;
}

/* ── Passos ───────────────────────────────────────────────────────── */
.step {
  position: relative;
  padding: 2rem 0 0;
  border-top: 2px solid var(--line);
  transition: border-color 0.5s var(--ease-apple);
}
.step:hover { border-top-color: var(--primary); }
.step .step-n {
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.05em;
  background: var(--grad-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step h3 {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-top: 1rem;
}
.step p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 0.6rem;
}

/* ── Valores / lista com marcador ─────────────────────────────────── */
.value-row {
  display: flex;
  gap: 1.25rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.value-row:last-child { border-bottom: none; }
.value-row .v-icon {
  flex-shrink: 0;
  width: 2.25rem; height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: rgba(27,37,191,0.07);
  color: var(--primary);
}
.value-row h4 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.value-row p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* ── Quote / depoimento ───────────────────────────────────────────── */
.quote {
  border-radius: 2px;
  border: 1px solid var(--line);
  background: #FAFAFA;
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote .q-mark {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 0.6;
  background: var(--grad-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.quote blockquote {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 1.25rem 0 1.75rem;
}
.quote .q-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
}
.quote .q-avatar {
  width: 2.4rem; height: 2.4rem;
  border-radius: 9999px;
  background: var(--grad-2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}
.quote .q-name { font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.quote .q-role { font-size: 0.68rem; color: rgba(0,0,0,0.38); }

/* ── FAQ ──────────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.3s;
}
.faq-q:hover { color: var(--primary); }
.faq-q .chev {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.4s var(--ease-apple);
}
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-apple), opacity 0.4s var(--ease-apple);
  opacity: 0;
}
.faq-item.open .faq-a { opacity: 1; }
.faq-a p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--muted);
  padding-bottom: 1.75rem;
  max-width: 62ch;
}

/* ── Formulário ───────────────────────────────────────────────────── */
.field { display: block; margin-bottom: 1.25rem; }
.field-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.42);
  margin-bottom: 0.5rem;
}
.input {
  font-size: 0.9rem;
  background: #F7F7F7;
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--ink);
  padding: 0.85rem 1rem;
  outline: none;
  width: 100%;
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
}
.input::placeholder { color: rgba(0,0,0,0.26); }
.input:focus {
  border-color: transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(90deg, rgba(27,37,191,0.55), rgba(10,14,69,0.4)) border-box;
}
select.input:focus { background: #fff; border-color: rgba(27,37,191,0.5); }
textarea.input { resize: vertical; min-height: 7rem; line-height: 1.7; }
.field-hint {
  font-size: 0.68rem;
  color: rgba(0,0,0,0.34);
  margin-top: 0.5rem;
  line-height: 1.6;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1.25rem;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid .span-2 { grid-column: 1 / -1; }

/* ── Bloco de contato ─────────────────────────────────────────────── */
.contact-row {
  display: flex;
  gap: 1.1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: flex-start;
}
.contact-row:last-child { border-bottom: none; }
.contact-row .c-icon {
  flex-shrink: 0;
  width: 2.25rem; height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border: 1px solid transparent;
  border-image: linear-gradient(135deg, rgba(27,37,191,0.3), rgba(10,14,69,0.18)) 1;
  background: rgba(27,37,191,0.06);
  color: var(--primary);
}
.contact-row .c-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
}
.contact-row .c-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 0.2rem;
  letter-spacing: -0.01em;
  line-height: 1.5;
}
.contact-row a.c-value:hover { color: var(--primary); }

/* ── CTA final ────────────────────────────────────────────────────── */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid transparent;
  background: linear-gradient(#FAFAFA, #FAFAFA) padding-box,
              linear-gradient(120deg, rgba(27,37,191,0.4), rgba(10,14,69,0.18)) border-box;
  padding: 3.5rem 2rem;
  text-align: center;
}
@media (min-width: 768px) { .cta-band { padding: 5rem 3rem; } }
.cta-band::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 40rem; height: 40rem;
  background: radial-gradient(circle, rgba(27,37,191,0.09) 0%, transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  font-weight: 900;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  color: var(--ink);
  max-width: 20ch;
  margin: 1.25rem auto 0;
}
.cta-band p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 50ch;
  margin: 1.5rem auto 2.5rem;
}
.cta-band .btn-row { justify-content: center; }

/* ── Footer ───────────────────────────────────────────────────────── */
footer.site-footer {
  border-top: 1px solid var(--line-soft);
  background: #FAFAFA;
  padding: 4.5rem 0 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }

.footer-title {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  margin-bottom: 1.4rem;
}
.footer-list { list-style: none; display: grid; gap: 0.8rem; }
.footer-list a, .footer-list span {
  font-size: 0.83rem;
  color: rgba(0,0,0,0.55);
  transition: color 0.3s;
  line-height: 1.6;
}
.footer-list a:hover { color: var(--primary); }
.footer-about {
  font-size: 0.83rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 34ch;
  margin-top: 1.25rem;
}
.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(0,0,0,0.34);
}
.social-row { display: flex; gap: 0.6rem; }
.social-row a {
  width: 2.1rem; height: 2.1rem;
  border-radius: 4px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.42);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.social-row a:hover {
  color: var(--primary);
  border-color: rgba(27,37,191,0.35);
  background: rgba(27,37,191,0.05);
}

/* ── WhatsApp flutuante ───────────────────────────────────────────── */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 3.4rem; height: 3.4rem;
  border-radius: 9999px;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.75rem 2rem rgba(0,0,0,0.18);
  transition: transform 0.35s var(--ease-apple), box-shadow 0.35s var(--ease-apple);
}
.wa-float:hover {
  transform: scale(1.07);
  box-shadow: 0 1rem 2.5rem rgba(37,211,102,0.35);
}

/* ── Utilitários ──────────────────────────────────────────────────── */
.muted { color: var(--muted); }
.center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.75rem; }
.mt-4 { margin-top: 2.5rem; }
.mt-6 { margin-top: 4rem; }
.stack-tight > * + * { margin-top: 1rem; }
.prose p {
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--muted);
}
.prose p + p { margin-top: 1.25rem; }
.hr { height: 1px; background: var(--line-soft); border: none; }
