/* =========================================================
   FlowUp — Design Tokens
========================================================= */
:root {
  --bg-primary:         #060D18;
  --bg-secondary:       #0A1628;

  --text-primary:       #FFFFFF;
  --text-secondary:     #8FA8C8;
  --text-muted:         #4E6A8A;

  --orange:             #FF6B00;
  --orange-light:       #FF8C3A;
  --orange-dim:         rgba(255, 107, 0, 0.08);

  --card-bg:            rgba(15, 30, 56, 0.45);
  --card-border:        rgba(255, 107, 0, 0.15);
  --card-border-hover:  rgba(255, 107, 0, 0.42);
  --row-hover:          rgba(15, 30, 56, 0.55);
  --nav-bg:             rgba(6, 13, 24, 0.80);
  --divider:            rgba(143, 168, 200, 0.09);
  --divider-strong:     rgba(143, 168, 200, 0.16);

  --tag-bg:             rgba(255, 107, 0, 0.10);
  --tag-border:         rgba(255, 107, 0, 0.25);
  --tag-text:           #FF8C3A;

  --font-display:       'Plus Jakarta Sans', Inter, -apple-system, sans-serif;
  --font-logo:          'Fredoka', var(--font-display);
  --font-body:          Inter, -apple-system, BlinkMacSystemFont, sans-serif;

  --section-py:         clamp(80px, 10vw, 140px);
  --container:          1180px;
  --container-narrow:   780px;
  --px:                 clamp(20px, 4vw, 48px);

  --radius-card:        16px;
  --radius-btn:         9999px;
  --radius-tag:         6px;

  --ease-spring:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur-fast:           0.18s;
  --dur-mid:            0.30s;
  --dur-slow:           0.55s;
}

/* =========================================================
   Reset + base
========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-primary); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--px); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--px); }
.text-center { text-align: center; }
.accent { color: var(--orange); }

/* Textura de grão — fixa, não interfere em cliques. Mais fina/granulada
   (frequência maior + tile menor) e mais visível (opacity maior). */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.32;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 55px 55px;
}

/* Barra de progresso de scroll */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  z-index: 200;
  transition: width 0.1s linear;
}

/* =========================================================
   Botões / Tags / Eyebrow
========================================================= */
/* Botões — vidro fosco (glassmorphism). Sem glow colorido piscando:
   o brilho vem de blur + borda clara + um "sweep" de luz que passa
   uma vez no hover, não de uma sombra colorida pulsante. */
.btn-primary,
.btn-outline {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before,
.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-18deg);
  transition: left var(--dur-slow) ease;
  pointer-events: none;
  z-index: 1;
}
.btn-primary:hover::before,
.btn-outline:hover::before { left: 130%; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.32) 0%, rgba(230, 90, 0, 0.32) 100%);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-btn);
  padding: 15px 32px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 10px 24px -10px rgba(0, 0, 0, 0.45);
  transition:
    transform var(--dur-fast) var(--ease-spring),
    box-shadow var(--dur-fast) ease,
    border-color var(--dur-fast) ease,
    background var(--dur-fast) ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.48) 0%, rgba(230, 90, 0, 0.48) 100%);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 16px 32px -10px rgba(0, 0, 0, 0.5);
}
.btn-primary:active { transform: translateY(0) scale(0.97); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2); }
.btn-primary.lg { padding: 18px 42px; font-size: 17px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  color: var(--orange-light);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-btn);
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    background var(--dur-fast) ease,
    border-color var(--dur-fast) ease,
    transform var(--dur-fast) ease,
    color var(--dur-fast) ease;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 107, 0, 0.5);
  color: var(--orange);
  transform: translateY(-1px);
}
.btn-outline:active { transform: translateY(0) scale(0.97); }
.btn-outline.sm { padding: 9px 20px; font-size: 14px; }

/* Ripple de clique — feedback tátil em todos os botões */
.btn-primary .ripple,
.btn-outline .ripple,
.whatsapp-float .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out;
  pointer-events: none;
  z-index: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  background: var(--tag-bg);
  border: 1px solid var(--tag-border);
  color: var(--tag-text);
  border-radius: var(--radius-tag);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background var(--dur-fast) ease, border-color var(--dur-fast) ease, transform var(--dur-fast) ease;
}
.tag:hover { background: rgba(255, 107, 0, 0.16); border-color: rgba(255, 107, 0, 0.40); transform: translateY(-1px); }

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

/* Spotlight de vidro — brilho suave que segue o cursor dentro do card,
   como luz refletindo numa superfície de vidro. --mx/--my via JS. */
.glass-spot { position: relative; overflow: hidden; }
.glass-spot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.09), transparent 70%);
  opacity: 0;
  transition: opacity var(--dur-mid) ease;
  pointer-events: none;
  z-index: 2;
}
.glass-spot:hover::after { opacity: 1; }

/* =========================================================
   Navbar
========================================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--divider);
  transition: background var(--dur-mid) ease, border-color var(--dur-mid) ease;
}
#navbar.scrolled { background: rgba(6, 13, 24, 0.97); border-color: var(--divider-strong); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo, .footer-logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  transition: opacity var(--dur-fast) ease, transform var(--dur-fast) ease;
}
.nav-logo:hover, .footer-logo:hover { opacity: 0.82; transform: scale(1.02); }
.nav-logo:active, .footer-logo:active { transform: scale(0.97); }
.logo-img { height: 34px; width: auto; }
.logo-fallback { display: none; height: 34px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 36px; flex: 1; justify-content: center; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--dur-fast) ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width var(--dur-mid) var(--ease-spring);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  border-radius: 6px;
  transition: transform var(--dur-fast) ease;
}
.hamburger:hover { transform: scale(1.08); }
.hamburger:active { transform: scale(0.90); }
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: background var(--dur-fast) ease, transform var(--dur-fast) ease, opacity var(--dur-fast) ease;
}
.hamburger:hover span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--orange-light); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--orange-light); }

.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 149;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid) ease;
  backdrop-filter: blur(3px);
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed;
  top: 0; right: -300px;
  width: 300px;
  height: 100dvh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--divider-strong);
  z-index: 150;
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: right var(--dur-slow) var(--ease-spring);
}
.drawer.open { right: 0; }
.drawer ul { display: flex; flex-direction: column; gap: 8px; }
.drawer ul a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--divider);
  transition: color var(--dur-fast) ease, padding-left var(--dur-fast) ease;
}
.drawer ul a:hover { color: #fff; padding-left: 8px; }
.drawer-close {
  position: absolute;
  top: 20px; right: 24px;
  color: var(--text-muted);
  font-size: 20px;
  padding: 8px;
  border-radius: 8px;
  transition: color var(--dur-fast) ease, background var(--dur-fast) ease;
}
.drawer-close:hover { color: #fff; background: var(--orange-dim); }
.drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
}
.drawer-contact a { font-size: 13px; color: var(--text-muted); transition: color var(--dur-fast) ease; }
.drawer-contact a:hover { color: var(--orange-light); }

@media (max-width: 768px) {
  .nav-links, #navbar .btn-outline { display: none; }
  .hamburger { display: flex; }
}

/* =========================================================
   Hero — único lugar com glow
========================================================= */
#hero {
  position: relative;
  background: var(--bg-primary);
  padding-top: 130px;
  padding-bottom: var(--section-py);
  overflow: hidden;
}
.hero-glow-orange {
  position: absolute;
  width: 700px; height: 450px;
  top: -60px; left: 55%;
  transform: translateX(-30%);
  background: radial-gradient(ellipse, rgba(255,107,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-navy {
  position: absolute;
  width: 500px; height: 500px;
  top: 100px; left: -100px;
  background: radial-gradient(ellipse, rgba(30,80,160,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { display: flex; flex-direction: column; gap: 22px; }
.hero-text h1 {
  font-size: clamp(36px, 5.5vw, 70px);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.07;
}
.hero-sub { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.65; color: var(--text-secondary); max-width: 480px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-proof { font-size: 13px; color: var(--text-muted); }

.hero-mockup { position: relative; }
.wpp-window {
  background: rgba(10, 31, 10, 0.14);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 40px 80px -20px rgba(0,0,0,0.55);
  transition: transform var(--dur-slow) var(--ease-spring), box-shadow var(--dur-slow) ease, background var(--dur-slow) ease;
  max-width: 420px;
  margin-left: auto;
}
.wpp-window:hover {
  transform: translateY(-5px);
  background: rgba(10, 31, 10, 0.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 50px 100px -20px rgba(0,0,0,0.65);
}
.wpp-header {
  background: rgba(16, 32, 16, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.wpp-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,107,0,0.85) 0%, rgba(139,26,0,0.85) 100%);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 15px;
  color: white;
  flex-shrink: 0;
}
.wpp-name { display: block; font-size: 14px; font-weight: 600; color: white; }
.wpp-online { display: flex; align-items: center; gap: 5px; font-size: 11px; color: #4ADE80; }
.wpp-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; }
.wpp-body { padding: 20px 16px 24px; display: flex; flex-direction: column; gap: 10px; min-height: 280px; }
.wpp-msg { max-width: 80%; padding: 10px 14px; font-size: 14px; line-height: 1.5; opacity: 0; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.wpp-msg.received { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); color: var(--text-primary); border-radius: 18px 18px 18px 4px; align-self: flex-start; }
.wpp-msg.sent { background: rgba(26, 74, 26, 0.28); border: 1px solid rgba(255,255,255,0.14); color: var(--text-primary); border-radius: 18px 18px 4px 18px; align-self: flex-end; text-align: right; }
.wpp-msg.visible { animation: msgIn 0.4s var(--ease-spring) forwards; }

.wpp-typing {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px 18px 18px 4px;
  align-self: flex-start;
  width: fit-content;
}
.wpp-typing.sent-typing { background: rgba(26, 74, 26, 0.28); border-radius: 18px 18px 4px 18px; align-self: flex-end; }
.wpp-typing.visible { display: flex; }
.wpp-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); animation: typingDot 1.2s ease infinite; }
.wpp-typing span:nth-child(2) { animation-delay: 0.2s; }
.wpp-typing span:nth-child(3) { animation-delay: 0.4s; }

.wpp-status-pill {
  align-self: center;
  background: rgba(255,107,0,0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--orange-light);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 16px;
  opacity: 0;
}
.wpp-status-pill.visible { animation: msgIn 0.4s var(--ease-spring) forwards; }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .wpp-window { max-width: 480px; }
}
@media (max-width: 640px) {
  .wpp-window { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .btn-primary.lg { padding: 14px 26px; font-size: 15px; }
  .btn-outline { padding: 12px 24px; font-size: 14px; }
}

/* =========================================================
   Problema — tipografia pura
========================================================= */
#problema { background: var(--bg-secondary); padding: var(--section-py) 0; }
.problema-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 28px; }
.prob-intro { font-size: clamp(17px, 2vw, 21px); line-height: 1.65; color: var(--text-muted); max-width: 600px; }
.prob-divider { width: 64px; height: 1px; background: var(--divider-strong); flex-shrink: 0; }
.prob-headline { display: flex; flex-direction: column; align-items: center; line-height: 0.92; gap: 2px; cursor: default; }
.prob-headline span {
  display: block;
  font-size: clamp(50px, 8.5vw, 110px);
  font-weight: 800;
  letter-spacing: -0.044em;
  color: var(--text-primary);
  transition: color var(--dur-mid) ease, letter-spacing var(--dur-mid) ease;
}
.prob-headline:hover span { color: rgba(255,255,255,0.7); letter-spacing: -0.03em; }
.prob-headline:hover span:nth-child(2) { color: #fff; letter-spacing: -0.044em; }
.prob-italic { font-size: clamp(19px, 2.5vw, 28px); color: var(--orange); font-weight: 500; font-style: italic; }
.prob-resolution { font-size: clamp(24px, 3.5vw, 46px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.2; }
.prob-sub { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.65; color: var(--text-secondary); max-width: 560px; }

/* =========================================================
   Segmentos — lista com linha
========================================================= */
#segmentos { background: var(--bg-primary); padding: var(--section-py) 0; }
.seg-header { margin-bottom: 48px; }
.seg-header h2 { font-size: clamp(26px, 4vw, 50px); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 12px; }
.seg-header p { font-size: clamp(16px, 1.5vw, 18px); color: var(--text-secondary); max-width: 440px; }

.seg-list { border-top: 1px solid var(--divider); }
.seg-row {
  display: grid;
  grid-template-columns: 44px 1fr 1fr 1fr 28px;
  align-items: center;
  gap: 16px 24px;
  padding: 24px 20px;
  border-bottom: 1px solid var(--divider);
  cursor: default;
  border-left: 3px solid transparent;
  transition: background var(--dur-mid) ease, border-left-color var(--dur-mid) ease, padding-left var(--dur-mid) ease;
}
.seg-row:hover { background: var(--row-hover); border-left-color: var(--orange); padding-left: 28px; }
.seg-row:active { background: var(--row-hover); }
.seg-row:hover .seg-name { color: var(--orange-light); }
.seg-row:hover .seg-sol { opacity: 1; }
.seg-row:hover .seg-arrow { color: var(--orange); transform: translateX(4px); }

.seg-num { font-size: 11px; font-weight: 600; color: var(--text-muted); font-family: monospace; letter-spacing: 0.05em; }
.seg-name { font-size: clamp(16px, 1.8vw, 20px); font-weight: 700; color: var(--text-primary); transition: color var(--dur-fast) ease; }
.seg-dor { font-size: 14px; color: var(--text-secondary); font-style: italic; }
.seg-sol { font-size: 13px; color: var(--orange-light); opacity: 0; transition: opacity var(--dur-mid) ease; }
.seg-arrow { font-size: 18px; color: var(--text-muted); transition: color var(--dur-fast) ease, transform var(--dur-fast) var(--ease-spring); justify-self: end; }

@media (max-width: 900px) {
  .seg-row { grid-template-columns: 36px 1fr 28px; }
  .seg-num { grid-row: 1; }
  .seg-name { grid-row: 1; }
  .seg-arrow { grid-row: 1; }
  .seg-dor { grid-column: 2; grid-row: 2; font-size: 13px; }
  .seg-sol { grid-column: 2; grid-row: 3; font-size: 13px; opacity: 1; margin-top: 2px; }
}
@media (max-width: 640px) {
  .seg-row { gap: 8px 12px; padding: 18px 14px; }
}

/* =========================================================
   Processo — timeline

   Nota: o alinhamento dos pontos com a linha usa CSS Grid,
   onde a linha conectora e os 3 pontos ocupam a MESMA linha
   de grid (grid-row) em todas as colunas — garante alinhamento
   exato independente da altura do conteúdo de cada etapa.
========================================================= */
#processo { background: var(--bg-secondary); padding: var(--section-py) 0; }
.proc-header { max-width: 600px; margin: 0 auto 80px; }
.proc-header h2 { font-size: clamp(26px, 4vw, 48px); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 14px; }
.proc-header p { font-size: clamp(16px, 1.4vw, 18px); color: var(--text-secondary); }

.proc-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: minmax(160px, auto) 1px minmax(160px, auto);
  column-gap: 40px;
  margin-bottom: 64px;
}
.proc-line { grid-column: 1 / -1; grid-row: 2; align-self: center; height: 1px; background: var(--divider-strong); }
.proc-dot {
  grid-row: 2;
  align-self: center;
  justify-self: center;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
  backdrop-filter: blur(4px);
  border: 3px solid var(--bg-secondary);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.22), inset 0 1px 0 rgba(255,255,255,0.35);
  z-index: 1;
  transition: transform var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
  cursor: pointer;
}
.proc-dot:hover { transform: scale(1.4); box-shadow: 0 0 0 6px rgba(255,107,0,0.3), inset 0 1px 0 rgba(255,255,255,0.4); }
.pd-1 { grid-column: 1; }
.pd-2 { grid-column: 2; }
.pd-3 { grid-column: 3; }

.proc-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  transition: transform var(--dur-mid) var(--ease-spring), border-color var(--dur-mid) ease, background var(--dur-mid) ease;
}
.proc-content:hover { transform: translateY(-4px); border-color: var(--card-border-hover); background: rgba(15, 30, 56, 0.65); }
.pc-1 { grid-column: 1; grid-row: 1; align-self: end; margin-bottom: 20px; }
.pc-3 { grid-column: 3; grid-row: 1; align-self: end; margin-bottom: 20px; }
.pc-2 { grid-column: 2; grid-row: 3; align-self: start; margin-top: 20px; }

.proc-num { font-size: 48px; font-weight: 800; color: rgba(255,107,0,0.15); letter-spacing: -0.04em; line-height: 1; }
.proc-content h3 { font-size: clamp(16px, 1.7vw, 19px); font-weight: 600; color: var(--text-primary); }
.proc-content p { font-size: 14px; line-height: 1.65; color: var(--text-secondary); }

.proc-cta { margin-top: 64px; }

/* Timeline mobile — markup dedicado, mais simples e robusto */
.proc-mobile { display: none; flex-direction: column; gap: 0; margin-bottom: 48px; }
.proc-mobile-step { display: flex; gap: 20px; padding-bottom: 40px; position: relative; }
.proc-mobile-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px; top: 36px; bottom: 0;
  width: 1px;
  background: var(--divider-strong);
}
.proc-mobile-marker {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.3);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.proc-mobile-marker span { font-size: 13px; font-weight: 700; color: var(--orange); font-family: var(--font-display); }
.proc-mobile-body { display: flex; flex-direction: column; gap: 10px; padding-top: 8px; }
.proc-mobile-body h3 { font-size: clamp(16px, 4vw, 18px); font-weight: 600; color: var(--text-primary); }
.proc-mobile-body p { font-size: 14px; line-height: 1.65; color: var(--text-secondary); }

@media (max-width: 900px) {
  .proc-timeline { display: none; }
  .proc-mobile { display: flex; }
}

/* =========================================================
   Resultados — assimétrico
========================================================= */
#resultados { background: var(--bg-primary); padding: var(--section-py) 0 0; }
#resultados > .container > h2 { font-size: clamp(26px, 4vw, 50px); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 48px; }
.res-grid { display: grid; grid-template-columns: 42% 58%; gap: 56px; align-items: center; padding-bottom: var(--section-py); }
.res-metricas { display: flex; flex-direction: column; gap: 36px; }
.metrica { display: flex; flex-direction: column; gap: 4px; cursor: default; }
.met-value { font-weight: 800; letter-spacing: -0.04em; line-height: 1; transition: transform var(--dur-fast) ease; }
.met-value:hover { transform: translateX(4px); }
.met-value.orange { font-size: clamp(52px, 7vw, 84px); color: var(--orange); }
.met-value.white  { font-size: clamp(34px, 4.5vw, 58px); color: var(--text-primary); }
.met-value.muted  { font-size: clamp(26px, 3.5vw, 46px); color: var(--text-secondary); }
.met-label { font-size: 13px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.06em; }
.met-note  { font-size: 12px; color: var(--text-muted); }

.res-carousel { position: relative; }
.carousel-viewport { position: relative; overflow: hidden; border-radius: var(--radius-card); }
.case-card {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 36px;
  transition: border-color var(--dur-mid) ease, transform var(--dur-mid) ease;
}
.case-card.active { display: flex; animation: caseFade 0.4s var(--ease-spring); }
.case-card:hover { border-color: var(--card-border-hover); transform: translateY(-3px); }
.case-label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.case-card h3 { font-size: clamp(17px, 2vw, 22px); font-weight: 700; color: var(--text-primary); line-height: 1.3; }
.case-card p { font-size: 14px; line-height: 1.7; color: var(--text-secondary); }
.case-metrics { display: flex; gap: 10px; flex-wrap: wrap; }
.case-metrics span { font-size: 13px; font-weight: 600; color: var(--orange-light); background: var(--tag-bg); border: 1px solid var(--tag-border); border-radius: var(--radius-tag); padding: 4px 10px; }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 20px; }
.car-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--divider-strong);
  color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--dur-fast) ease, color var(--dur-fast) ease, transform var(--dur-fast) ease;
}
.car-btn:hover { border-color: var(--orange); color: var(--orange); transform: scale(1.1); }
.car-btn:active { transform: scale(0.92); }
.car-dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--divider-strong); transition: background var(--dur-mid) ease, transform var(--dur-mid) ease; }
.dot.active { background: var(--orange); transform: scale(1.2); }
.dot:hover { background: var(--orange-light); }

.ticker-wrap {
  background: var(--bg-secondary);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 14px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.ticker-track { display: flex; white-space: nowrap; animation: ticker 35s linear infinite; color: var(--text-muted); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }

@media (max-width: 1024px) {
  .res-grid { grid-template-columns: 1fr; gap: 48px; }
  .res-metricas { flex-direction: row; flex-wrap: wrap; gap: 28px; }
}
@media (max-width: 640px) {
  .res-metricas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 12px; }
  .metrica { gap: 3px; }
  .met-value.orange { font-size: clamp(26px, 8.5vw, 36px); }
  .met-value.white  { font-size: clamp(20px, 6vw, 26px); }
  .met-value.muted  { font-size: clamp(18px, 5vw, 22px); }
  .met-label { font-size: 10px; letter-spacing: 0.03em; }
  .met-note { display: none; }
}

/* =========================================================
   CTA Final — sem glow
========================================================= */
#cta_final { background: var(--bg-secondary); padding: var(--section-py) 0; }
.cta-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; }
.cta-wrap h2 { font-size: clamp(30px, 5vw, 58px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.cta-wrap > p:not(.cta-reassurance) { font-size: clamp(16px, 1.5vw, 18px); color: var(--text-secondary); line-height: 1.65; max-width: 540px; }
.cta-reassurance { font-size: 13px; color: var(--text-muted); }

/* =========================================================
   FAQ
========================================================= */
#faq { background: var(--bg-primary); padding: var(--section-py) 0; }
.faq-grid { display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start; }
.faq-heading { position: sticky; top: 100px; }
.faq-heading h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 700; letter-spacing: -0.025em; margin-top: 16px; }
.faq-list { border-top: 1px solid var(--divider); }
.faq-item { border-bottom: 1px solid var(--divider); border-radius: 10px; transition: background var(--dur-fast) ease; }
.faq-item:hover { background: rgba(15, 30, 56, 0.35); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 24px;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--dur-fast) ease;
}
.faq-q:hover { color: var(--orange-light); }
.faq-q:active { transform: scale(0.995); }
.faq-icon { font-size: 22px; color: var(--text-muted); flex-shrink: 0; font-weight: 300; line-height: 1; transition: transform var(--dur-mid) var(--ease-spring), color var(--dur-fast) ease; }
.faq-item:hover .faq-icon { color: var(--orange-light); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--orange); }
.faq-a { overflow: hidden; height: 0; transition: height var(--dur-mid) var(--ease-spring); }
.faq-a p { font-size: 15px; line-height: 1.7; color: var(--text-secondary); padding: 0 24px 26px; }

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-heading { position: static; }
}

/* =========================================================
   Footer
========================================================= */
#footer { background: var(--bg-secondary); border-top: 1px solid var(--divider); padding: var(--section-py) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-slogan { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.footer-desc { font-size: 14px; line-height: 1.6; color: var(--text-secondary); max-width: 280px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { display: inline-flex; color: var(--text-muted); transition: color var(--dur-fast) ease, transform var(--dur-fast) ease; }
.footer-social a:hover { color: var(--orange-light); transform: translateY(-2px) scale(1.1); }
.footer-social a:active { transform: scale(0.92); }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { display: inline-block; font-size: 14px; color: var(--text-secondary); transition: color var(--dur-fast) ease, transform var(--dur-fast) ease; }
.footer-col ul li a:hover { color: white; transform: translateX(3px); }
.footer-col ul li a:active { transform: translateX(1px) scale(0.98); }
.footer-whats { width: fit-content; margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid var(--divider);
  padding: 24px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-muted); transition: color var(--dur-fast) ease; }
.footer-legal a:hover { color: white; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =========================================================
   Botão flutuante WhatsApp
========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.38);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 150;
  overflow: hidden;
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 8px 24px -8px rgba(0, 0, 0, 0.4);
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-fast) ease, background var(--dur-fast) ease, opacity var(--dur-mid) ease;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 0; left: -130%;
  width: 55%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg);
  transition: left var(--dur-slow) ease;
  z-index: 1;
}
.whatsapp-float:hover::before { left: 130%; }
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  background: rgba(37, 211, 102, 0.52);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 12px 28px -8px rgba(0, 0, 0, 0.5);
}
.whatsapp-float:active { transform: scale(0.95); }
.drawer.open ~ .whatsapp-float { opacity: 0 !important; pointer-events: none; }
.whatsapp-float svg { position: relative; z-index: 0; }
.waf-tooltip {
  position: absolute;
  right: 62px;
  background: var(--bg-secondary);
  border: 1px solid var(--divider-strong);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity var(--dur-mid) ease, transform var(--dur-mid) ease;
}
.whatsapp-float:hover .waf-tooltip { opacity: 1; transform: translateX(0); }

@media (max-width: 640px) {
  .whatsapp-float { bottom: 16px; right: 16px; width: 44px; height: 44px; }
  .whatsapp-float svg { width: 21px; height: 21px; }
}
