/* ==========================================================================
   Dual Design & Code — Base Styles
   ========================================================================== */

:root {
  --color-bg: #0A0A0A;
  --color-bg-alt: #111111;
  --color-bg-panel: #0d0d0d;
  --color-border: #2A2A2A;
  --color-white: #FFFFFF;
  --color-accent: #CDFF00;
  --color-accent-soft: rgba(205, 255, 0, 0.12);
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-lg: 36px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 78px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scrollbar-color: rgba(205,255,0,0.35) var(--color-bg); scrollbar-width: thin; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: rgba(205,255,0,0.35); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: rgba(205,255,0,0.55); }

a { color: var(--color-accent); text-decoration: none; }
a:hover { color: #e4ff80; }

img { max-width: 100%; display: block; }

.accent { color: var(--color-accent); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-accent);
  color: #0A0A0A;
  padding: 12px 20px;
  z-index: 1000;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.03;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
.section {
  position: relative;
  background: var(--color-bg);
  min-height: 100vh;
  padding: 100px 64px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -30px 70px -20px rgba(0,0,0,0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.section-inner { max-width: 1320px; margin: 0 auto; width: 100%; }
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 18px;
  font-family: var(--font-heading);
}
.eyebrow-muted { color: rgba(255,255,255,0.4); }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 20px;
}
.section-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 340px;
  margin: 0 0 32px;
}
.mini-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.mini-rule { width: 26px; height: 1px; background: var(--color-accent); display: inline-block; }

/* ---------- Buttons ---------- */
.btn-primary {
  padding: 15px 28px;
  background: var(--color-accent);
  color: #0A0A0A;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: filter 0.3s var(--ease);
}
.btn-primary:hover { filter: brightness(1.08); color: #0A0A0A; }
.btn-outline {
  padding: 15px 28px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-white);
  border-radius: 999px;
  font-size: 14px;
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.25s var(--ease);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.68); color: var(--color-white); }
.btn-small { padding: 12px 22px; width: fit-content; }
.full-width { width: 100%; justify-content: center; }
.link-btn {
  text-align: left;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  width: fit-content;
  text-decoration: underline;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 64px;
  background: rgba(10,10,10,0.15);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { display: inline-flex; transition: transform 0.35s ease; }
.logo:hover .logo-mark { transform: rotate(-10deg) scale(1.08); }
.logo-text { line-height: 1; }
.logo-title { font-family: var(--font-heading); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.logo-sub { font-size: 8px; letter-spacing: 0.18em; color: rgba(255,255,255,0.45); }
.nav-desktop { display: flex; gap: 36px; }
.nav-desktop a { font-size: 14px; color: rgba(255,255,255,0.8); transition: color 0.25s ease; }
.nav-desktop a.active, .nav-desktop a:hover { color: var(--color-accent); }
.cta-desktop { display: inline-flex; align-items: center; gap: 6px; }
.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  color: var(--color-white);
  cursor: pointer;
  font-size: 17px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu[hidden] { display: none; }
.mobile-link { color: var(--color-white); font-size: 26px; font-family: var(--font-heading); }
.mobile-cta {
  margin-top: 16px;
  padding: 14px 30px;
  background: var(--color-accent);
  color: #0A0A0A;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
}

/* ---------- Hero ---------- */
.hero {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--color-bg);
  padding: 64px 64px 40px;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 56px;
  align-items: center;
  align-content: center;
}
.hero-bg-grid {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 640px;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, black, transparent);
  pointer-events: none;
  z-index: 0;
}
.hero-content { grid-row: 1; grid-column: 1; position: relative; z-index: 1; }
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 8px;
  border: 1px solid rgba(205,255,0,0.3);
  border-radius: 999px;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(205,255,0,0.15);
  display: inline-block;
}
.eyebrow-pill span:last-child {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  font-weight: 600;
  font-family: var(--font-heading);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(46px, 6.4vw, 84px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 26px;
}
.hero-title .line { display: block; }
.hero-title em {
  color: var(--color-accent);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
}
.hero-desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-microcopy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -38px 0 56px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.hero-panel-wrap {
  grid-row: 1;
  grid-column: 2;
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 100%;
  max-width: 420px;
  transition: transform 0.1s linear;
}
.hero-panel-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(205,255,0,0.14), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  transition: transform 0.3s ease-out;
}
.hero-panel {
  position: relative;
  z-index: 1;
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(14px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 40px 80px -24px rgba(0,0,0,0.75);
  animation: floatSlow 8s ease-in-out infinite;
}
.panel-topbar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--color-border); }
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot-a { background: #3a3a3a; }
.dot-b { background: var(--color-accent); }
.panel-topbar-label { margin-left: 8px; font-size: 11px; color: rgba(255,255,255,0.55); font-family: var(--font-heading); }
.panel-body { padding: 22px; font-family: var(--font-heading); font-size: 13.5px; line-height: 2; color: rgba(255,255,255,0.75); }
.panel-cursor-line { margin-top: 10px; color: var(--color-accent); }
.blinker { display: inline-block; width: 7px; height: 14px; background: var(--color-accent); margin-left: 6px; vertical-align: middle; animation: blink 1s steps(1) infinite; }
.panel-footer { display: flex; gap: 10px; padding: 16px 18px; border-top: 1px solid var(--color-border); align-items: center; }
.panel-mark { width: 20px; height: 20px; border-radius: 6px; background: var(--color-accent); display: flex; align-items: center; justify-content: center; }
.panel-footer span:last-child { font-size: 11px; color: rgba(255,255,255,0.58); font-family: var(--font-heading); }
.hero-badge {
  position: absolute;
  top: -16px; right: -16px;
  padding: 8px 14px;
  background: var(--color-accent);
  color: #0A0A0A;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.5);
  z-index: 2;
  animation: floatSlow 6s ease-in-out infinite reverse;
}

.hero-stats {
  grid-row: 2;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}
.stat { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.stat-num { font-family: var(--font-heading); font-size: 16px; font-weight: 800; color: var(--color-accent); white-space: nowrap; }
.stat-label { font-size: 10.5px; color: rgba(255,255,255,0.6); white-space: nowrap; }
.stat-divider {
  width: 1px; height: 24px;
  background: linear-gradient(180deg, transparent, rgba(205,255,0,0.35), transparent);
  flex: none;
  margin: 0 24px;
}

/* ---------- Serviços ---------- */
.services-section { z-index: 2; background: radial-gradient(ellipse at 20% 0%, rgba(205,255,0,0.05), transparent 55%), var(--color-bg); position: sticky; top: 0; }
.services-grid { display: grid; grid-template-columns: 0.75fr 1.5fr; gap: 64px; }
.services-panel {
  position: relative;
  background: var(--color-bg-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 44px;
  overflow: hidden;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.corner { position: absolute; width: 16px; height: 16px; }
.corner-tl { top: 14px; left: 14px; border-top: 2px solid var(--color-accent); border-left: 2px solid var(--color-accent); }
.corner-tr { top: 14px; right: 14px; border-top: 2px solid var(--color-accent); border-right: 2px solid var(--color-accent); }
.corner-bl { bottom: 14px; left: 14px; border-bottom: 2px solid var(--color-accent); border-left: 2px solid var(--color-accent); }
.corner-br { bottom: 14px; right: 14px; border-bottom: 2px solid var(--color-accent); border-right: 2px solid var(--color-accent); }
.corner-soft.corner-tl, .corner-soft.corner-tr { border-color: rgba(205,255,0,0.3); }
.corner-soft.corner-bl, .corner-soft.corner-br { border-color: rgba(205,255,0,0.3); }

.segments { display: flex; gap: 6px; margin-bottom: 32px; position: relative; z-index: 1; }
.segment-bar { flex: 1; height: 3px; border-radius: 3px; overflow: hidden; background: rgba(255,255,255,0.12); }
.segment-fill { height: 100%; width: 0%; background: var(--color-accent); }
.segment-fill.done { width: 100%; }
.segment-fill.active { animation: growFill 3.2s linear forwards; }

.services-content { position: relative; z-index: 1; }
.service-head { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.service-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 14px;
  background: rgba(205,255,0,0.1);
  border: 1px solid var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent);
}
.step-label { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }
.service-title { font-family: var(--font-heading); font-size: clamp(28px, 3.2vw, 38px); font-weight: 800; letter-spacing: -0.01em; margin-bottom: 16px; }
.service-desc { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.68); max-width: 440px; margin-bottom: 14px; }
.service-impact { font-size: 14px; line-height: 1.6; color: var(--color-accent); max-width: 440px; }

/* ---------- Projetos ---------- */
.cases-section { z-index: 3; background: radial-gradient(ellipse at 80% 100%, rgba(205,255,0,0.05), transparent 55%), var(--color-bg); position: sticky; top: 0; }
.cases-grid { display: grid; grid-template-columns: 0.85fr 1.7fr; gap: 40px; align-items: center; }
.cases-intro .btn-primary { margin-top: 4px; }
.deck-wrap { position: relative; }
.deck-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(6px);
  color: var(--color-white);
  cursor: pointer;
  font-size: 18px;
  z-index: 200;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.deck-arrow:hover { border-color: var(--color-accent); color: var(--color-accent); }
.deck-arrow-left { left: 0; }
.deck-arrow-right { right: 0; }
.deck { position: relative; height: 480px; }
.deck-card {
  position: absolute;
  top: 0; left: 50%;
  width: min(440px, 88vw);
  margin-left: calc(min(440px, 88vw) / -2);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.5s ease;
  perspective: 900px;
  cursor: pointer;
}
.deck-card.is-active { cursor: default; }
.deck-card-inner {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.75);
  overflow: hidden;
}
.deck-media { position: relative; }
.deck-media img {
  width: 100%; height: 230px;
  object-fit: cover;
  border-radius: 14px;
  background: linear-gradient(90deg, #151515, #1c1c1c, #151515);
}
.deck-num {
  position: absolute; bottom: 10px; right: 10px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(4px);
  color: var(--color-accent);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.deck-card.is-active .deck-num { opacity: 1; }
.deck-body { padding-top: 20px; opacity: 0; transition: opacity 0.3s ease; }
.deck-card.is-active .deck-body { opacity: 1; }
.tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(205,255,0,0.3);
  color: var(--color-accent);
  font-size: 11px;
  letter-spacing: 0.03em;
  font-family: var(--font-heading);
  margin-bottom: 14px;
}
.deck-body h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 800; margin: 0 0 10px; }
.deck-body p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.68); margin: 0 0 20px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
}
.deck-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.deck-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.35s ease, width 0.35s ease;
  padding: 14px 12px;
  margin: -14px -12px;
  background-clip: content-box;
  box-sizing: content-box;
  border: none;
}
.deck-dot.is-active { width: 22px; background: var(--color-accent); }

/* ---------- Como funciona ---------- */
.process-section { z-index: 4; position: sticky; top: 0; padding: 120px 64px 100px; }
.process-head { text-align: center; max-width: 640px; margin: 0 auto 90px; }
.flow { position: relative; max-width: 1240px; margin: 0 auto; }
.flow-line { position: absolute; top: 32px; left: 0; right: 0; height: 2px; background: rgba(255,255,255,0.08); z-index: 0; }
.flow-dot {
  position: absolute; top: 31px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 12px 2px rgba(205,255,0,0.6);
  opacity: 0;
  transition: left 1.2s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  z-index: 1;
}
.flow-dot-trail {
  position: absolute; top: 30px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--color-accent);
  opacity: 0;
  filter: blur(3px);
  transition: left 1.5s cubic-bezier(0.4,0,0.2,1) 0.1s, opacity 0.4s ease;
  z-index: 0;
}
.flow-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px 20px; position: relative; z-index: 2; }
.flow-step { text-align: center; }
.flow-icon-wrap { position: relative; width: 64px; margin: 0 auto 20px; }
.flow-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #111111;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
  transition: all 0.4s ease;
}
.flow-step.is-active .flow-icon { background: rgba(205,255,0,0.1); border-color: var(--color-accent); color: var(--color-accent); }
.flow-step-num {
  position: absolute; top: -8px; right: -8px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
}
.flow-step-title { font-family: var(--font-heading); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.flow-step-desc { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.72); }
.process-cta { display: flex; width: fit-content; margin: 56px auto 0; }

/* ---------- FAQ ---------- */
.faq-section { z-index: 5; background: radial-gradient(ellipse at 50% 0%, rgba(205,255,0,0.04), transparent 55%), var(--color-bg); position: sticky; top: 0; }
.faq-head { text-align: center; margin-bottom: 56px; }
.faq-item {
  max-width: 840px; margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: transparent;
  transition: background 0.3s var(--ease);
}
.faq-item.is-open { background: rgba(205,255,0,0.04); }
.faq-question {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 16px;
  background: none; border: none;
  color: var(--color-white);
  font-family: var(--font-heading); font-size: 17px; font-weight: 600;
  text-align: left; cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.faq-question:hover { transform: translateX(4px); }
.faq-plus {
  font-size: 20px; font-weight: 300; color: var(--color-accent);
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
}
.faq-item.is-open .faq-plus { transform: rotate(45deg); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-item.is-open .faq-panel { max-height: 320px; }
.faq-answer { padding: 0 16px 22px; font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.65); max-width: 680px; }

/* ---------- Contato ---------- */
.contact-section { z-index: 6; position: sticky; top: 0; padding: 90px 64px; }
.contact-section::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(205,255,0,0.05), transparent);
  pointer-events: none;
}
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-title { max-width: 520px; }
.whatsapp-link { margin-bottom: 20px; width: fit-content; }
.contact-microcopy { margin: 0 0 28px; }
.badge-inline {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  width: fit-content;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.contact-form {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field label { display: block; font-size: 13px; color: rgba(255,255,255,0.72); margin-bottom: 8px; }
.field .optional { color: rgba(255,255,255,0.4); }
.field input, .field textarea {
  width: 100%;
  padding: 13px 16px;
  background: #0A0A0A;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: 14px;
  font-family: var(--font-body);
}
.field textarea { resize: vertical; }
.form-error { text-align: center; padding: 0 0 4px; color: #ff8080; font-size: 13px; }
.form-success { text-align: center; padding: 10px; color: var(--color-accent); font-family: var(--font-heading); font-weight: 700; font-size: 14px; }
.form-legal { font-size: 12px; color: rgba(255,255,255,0.55); text-align: center; }

/* ---------- Fechamento ---------- */
.closing-section { z-index: 7; position: sticky; top: 0; padding: 140px 64px; text-align: center; }
.closing-glow { position: absolute; width: 85%; height: 85%; filter: blur(70px); pointer-events: none; background: radial-gradient(ellipse at center, rgba(205,255,0,0.16), rgba(205,255,0,0.05) 45%, transparent 72%); }
.closing-glow-a { top: -30%; left: -25%; }
.closing-glow-b { bottom: -30%; right: -25%; }
.closing-content { position: relative; z-index: 1; }
.closing-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 40px;
  color: rgba(255,255,255,0.92);
}

/* ---------- Trust bar + Footer ---------- */
.trust-bar { position: relative; z-index: 0; text-align: center; padding: 28px 24px; font-size: 13px; color: rgba(255,255,255,0.45); background: var(--color-bg); }
.site-footer {
  position: sticky; top: 0; z-index: 8;
  background: var(--color-bg);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -30px 70px -20px rgba(0,0,0,0.85);
  padding: 52px 64px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap; gap: 16px;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  overflow: hidden;
}
.footer-watermark { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); opacity: 0.035; pointer-events: none; }
.footer-logo { display: flex; align-items: center; gap: 10px; position: relative; z-index: 1; }
.footer-logo span { font-family: var(--font-heading); font-weight: 700; font-size: 15px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.62); position: relative; z-index: 1; }
.footer-social { display: flex; align-items: center; gap: 10px; position: relative; z-index: 1; }
.footer-social span { font-size: 12px; color: rgba(255,255,255,0.62); }
.avatar-link { width: 30px; height: 30px; border-radius: 50%; overflow: hidden; border: 1px solid rgba(255,255,255,0.15); flex: none; transition: border-color 0.25s ease; }
.avatar-link:hover { border-color: var(--color-accent); }
.avatar-link img { width: 100%; height: 100%; object-fit: cover; }
.icon-link {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.icon-link:hover { border-color: var(--color-accent); color: var(--color-accent); }

/* ---------- Floating elements ---------- */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.6);
  z-index: 90;
  transition: filter 0.3s var(--ease);
}
.whatsapp-fab:hover { filter: brightness(1.08); }
.mobile-cta-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 89;
  align-items: center; justify-content: center;
  padding: 14px;
  background: var(--color-accent);
  color: #0A0A0A;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
}
.mobile-cta-bar.is-hidden { display: none !important; }
.back-to-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 89;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(17,17,17,0.9);
  border: 1px solid var(--color-border);
  color: var(--color-accent);
  cursor: pointer;
  font-size: 18px;
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 300;
  background: var(--color-bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s var(--ease);
}
.preloader.is-hidden { opacity: 0; pointer-events: none; }
.preloader.is-removed { display: none; }
