/* ============================================================
   Wendel MRKT — style.css (Premium Minimalist)
   Tema: Editorial Dark — preto profundo + branco + ouro discreto
   Tipografia: Cormorant Garamond (display) + Geist Mono (accent) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:           #080808;
  --bg-2:         #0d0d0d;
  --bg-card:      rgba(255,255,255,0.03);
  --gold:         #3d7eb5;
  --gold-dim:     rgba(61,126,181,0.12);
  --gold-border:  rgba(61,126,181,0.2);
  --gold-bright:  #5b9fd4;
  --white:        #f5f5f0;
  --text-primary:   #e8e6e1;
  --text-secondary: #7a7872;
  --text-muted:     #4a4845;
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(61,126,181,0.3);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', sans-serif;
  --section-py:   120px;
  --container:    1160px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 1px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ─── UTILITÁRIOS ────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-py) 0;
  position: relative;
}

/* ─── TIPOGRAFIA ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 400;
}

h1 { font-size: clamp(3.2rem, 7vw, 6rem); font-weight: 300; }
h2 { font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 300; }
h3 { font-size: 1.4rem; font-weight: 500; }

.highlight {
  color: var(--gold);
  font-style: italic;
}

/* ─── BOTÕES ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  border: none;
  background: none;
}

.btn svg { width: 16px; height: 16px; }

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  letter-spacing: 0.1em;
}

.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--gold-border);
  color: var(--gold);
}

.btn-nav {
  padding: 10px 24px;
  font-size: 0.75rem;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn-nav:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 0.85rem;
}

/* ─── SECTION HEADER ─────────────────────────────────────── */
.section-header {
  max-width: 600px;
  margin: 0 auto 80px;
  text-align: center;
}

.section-header h2 { margin-bottom: 20px; }
.section-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-tag::before {
  content: '—';
  margin-right: 8px;
  opacity: 0.5;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 0;
  transition: all 0.5s var(--ease);
}

.navbar.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  flex-shrink: 0;
}

.logo strong {
  color: var(--gold);
  font-weight: 500;
}

.logo-icon { display: none; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--text-primary); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 0;
}

.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(61,126,181,0.06) 0%, transparent 70%);
  top: -200px; right: -200px;
}

.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(61,126,181,0.04) 0%, transparent 70%);
  bottom: -100px; left: -150px;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseDot 3s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-headline {
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.05;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 52px;
  line-height: 1.85;
  font-weight: 300;
}

.hero-sub strong { color: var(--text-primary); font-weight: 400; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 80px;
}

/* Linha decorativa hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

.scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollDown 2.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ─── ANIMAÇÕES DE ENTRADA ───────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s var(--ease-out) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ─── BENEFÍCIOS ─────────────────────────────────────────── */
.beneficios {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 32px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.benefit-card:hover {
  background: rgba(61,126,181,0.04);
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.benefit-icon svg { width: 22px; height: 22px; color: var(--gold); }

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── SERVIÇOS ───────────────────────────────────────────── */
.servicos { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  cursor: default;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.service-card:hover {
  background: rgba(61,126,181,0.03);
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 32px; right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover::after { opacity: 1; }

.service-card-inner {
  position: relative;
  z-index: 1;
  padding: 48px 40px;
  height: 100%;
}

.service-glow { display: none; }

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.service-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg { width: 24px; height: 24px; color: var(--gold); }

.service-tag {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  padding: 4px 10px;
}

.service-card-inner h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.service-card-inner > p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.75;
  font-weight: 300;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.855rem;
  color: var(--text-secondary);
}

.service-list li svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

/* ─── LANDING PAGES ──────────────────────────────────────── */
.landing-pages {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lp-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Mockup de browser ── */
.lp-visual { position: relative; }

.lp-browser {
  background: #0c0c0c;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.lp-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #101010;
  border-bottom: 1px solid var(--border);
}

.lp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.7;
}

.lp-dot-red    { background: #ff5f57; }
.lp-dot-yellow { background: #ffbd2e; }
.lp-dot-green  { background: #28c840; }

.lp-url-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.lp-url-bar svg { width: 11px; height: 11px; color: #22c55e; }

.lp-browser-body { padding: 24px; }

.lp-mock-hero {
  background: rgba(61,126,181,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-mock-badge {
  width: 90px; height: 12px;
  background: rgba(61,126,181,0.2);
  border-radius: 2px;
  animation: shimmer 2.5s ease-in-out infinite;
}

.lp-mock-h1 {
  width: 85%; height: 16px;
  background: rgba(232,230,225,0.12);
  border-radius: 3px;
  animation: shimmer 2.5s ease-in-out infinite 0.1s;
}

.lp-mock-h1-sm { width: 65%; animation-delay: 0.2s; }

.lp-mock-p {
  width: 90%; height: 8px;
  background: rgba(122,120,114,0.15);
  border-radius: 2px;
  animation: shimmer 2.5s ease-in-out infinite 0.3s;
}

.lp-mock-p-sm { width: 70%; animation-delay: 0.4s; }

.lp-mock-btn {
  width: 110px; height: 28px;
  background: rgba(61,126,181,0.35);
  border-radius: 3px;
  margin-top: 4px;
  animation: shimmer 2.5s ease-in-out infinite 0.5s;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

.lp-mock-section { padding: 4px 0; }

.lp-mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.lp-mock-card {
  height: 52px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  animation: shimmer 2.5s ease-in-out infinite;
}

.lp-mock-card:nth-child(2) { animation-delay: 0.2s; }
.lp-mock-card:nth-child(3) { animation-delay: 0.4s; }

.lp-float-metric {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(8,8,8,0.95);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 10px 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: floatBadge 5s ease-in-out infinite alternate;
}

.lp-float-metric svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.lp-float-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.lp-float-lbl {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 2px;
  text-transform: uppercase;
}

.lp-float-1 {
  top: -20px;
  right: -20px;
  animation-direction: alternate;
}

.lp-float-2 {
  bottom: -20px;
  left: -20px;
  animation-direction: alternate-reverse;
}

@keyframes floatBadge {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}

/* ── Conteúdo textual ── */
.lp-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.15;
}

.lp-content > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 40px;
  font-weight: 300;
}

.lp-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.lp-features li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.lp-features li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lp-feature-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-top: 2px;
}

.lp-feature-icon svg { width: 18px; height: 18px; color: var(--gold); }

.lp-features strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.lp-features span {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── PROCESSO ───────────────────────────────────────────── */
.processo { background: var(--bg); }

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.steps-line { display: none; }

.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  z-index: 1;
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: background 0.4s, border-color 0.4s, transform 0.4s var(--ease);
}

.step:last-child { border-right: 1px solid var(--border); }
.step:hover { background: rgba(61,126,181,0.025); border-color: var(--gold-border); transform: translateY(-4px); }

.step-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 28px;
}

.step-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-icon svg { width: 22px; height: 22px; color: var(--text-muted); transition: color 0.3s; }
.step:hover .step-icon svg { color: var(--gold); }

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.step-content p  { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.75; font-weight: 300; }

/* ─── AUTORIDADE ─────────────────────────────────────────── */
.autoridade {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.authority-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.authority-card:hover { background: rgba(61,126,181,0.03); border-color: var(--gold-border); transform: translateY(-4px); }

.authority-number {
  position: absolute;
  top: 32px; right: 40px;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(61,126,181,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.authority-card > svg {
  width: 28px; height: 28px;
  color: var(--gold);
  margin-bottom: 28px;
}

.authority-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 14px;
}

.authority-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.75; font-weight: 300; }

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.cta-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(61,126,181,0.07) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.cta-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(61,126,181,0.05) 0%, transparent 70%);
  bottom: -100px; right: 5%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 { margin-bottom: 24px; }

.cta-content > p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 52px;
  line-height: 1.85;
  font-weight: 300;
}

.cta-actions { margin-bottom: 28px; }

.cta-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.cta-footnote svg { width: 14px; height: 14px; color: #22c55e; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 36px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-brand .logo { margin-bottom: 18px; }

.footer-brand p {
  font-size: 0.84rem;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.75;
  font-weight: 300;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.footer-wa svg { width: 16px; height: 16px; }

.footer-wa:hover {
  border-color: var(--gold-border);
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.03em; }

/* ─── BOTÃO FLUTUANTE WHATSAPP ───────────────────────────── */
.float-wa {
  position: fixed;
  bottom: 36px; right: 36px;
  z-index: 999;
  width: 52px; height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.25);
  transition: all 0.4s var(--ease);
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
}

.float-wa.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.float-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(37,211,102,0.4);
}

.float-wa svg { width: 24px; height: 24px; color: #fff; }

.float-wa-tooltip {
  position: absolute;
  right: 64px;
  background: #0d0d0d;
  color: var(--text-primary);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 6px 12px;
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.float-wa:hover .float-wa-tooltip { opacity: 1; }

.float-wa-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(37,211,102,0.4);
  animation: ringPulse 3s ease-out infinite;
}

@keyframes ringPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ─── RESPONSIVO ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .benefits-grid      { grid-template-columns: repeat(2, 1fr); }
  .steps-wrapper      { grid-template-columns: repeat(2, 1fr); }
  .step               { border-radius: 20px; }
  .step:last-child    { border-right: 1px solid var(--border); }
  .lp-showcase        { grid-template-columns: 1fr; gap: 60px; }
  .lp-float-1         { top: -16px; right: -8px; }
  .lp-float-2         { bottom: -16px; left: -8px; }
}

@media (max-width: 768px) {
  :root { --section-py: 80px; }
  .container { padding: 0 24px; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 44px;
    font-size: 1.1rem;
    z-index: 900;
    backdrop-filter: blur(24px);
  }

  .nav-links.open { display: flex; }
  .hamburger      { display: flex; z-index: 1100; }
  .btn-nav        { display: none; }

  .hero-headline  { font-size: clamp(2.6rem, 10vw, 3.5rem); }
  .hero-sub       { font-size: 0.96rem; }

  .benefits-grid  { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .steps-wrapper  { grid-template-columns: 1fr; }
  .step           { border-radius: 16px; }
  .step:last-child { border-right: 1px solid var(--border); }
  .authority-grid { grid-template-columns: 1fr; }

  .footer-inner   { flex-direction: column; }
  .footer-bottom  { flex-direction: column; text-align: center; }

  .float-wa { bottom: 24px; right: 24px; }

  .lp-float-1, .lp-float-2 { display: none; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn      { justify-content: center; }
  .service-card-inner { padding: 36px 28px; }
  .authority-card { padding: 40px 32px; }
}