/* ── Font-face ── */
@font-face {
  font-family: 'Heavitas';
  src: url('../fonts/Heavitas.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Caviar Dreams';
  src: url('../fonts/CaviarDreams.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Caviar Dreams';
  src: url('../fonts/CaviarDreams_Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Variables ── */
:root {
  --bg:            #F4F4F1;
  --bg-alt:        #E8E8E4;
  --hero-bg:       #080b09;
  --dark-section:  #080b09;
  --dark-mid:      #0d110e;
  --card:          #FFFFFF;
  --green:         #057a41;
  --green-vivid:   #07a352;
  --green-glow:    rgba(5,122,65,0.18);
  --green-bg:      rgba(5,122,65,0.10);
  --green-border:  rgba(5,122,65,0.32);
  --black:         #111111;
  --white:         #FFFFFF;
  --gray:          #6B7280;
  --gray-2:        #9CA3AF;
  --border:        rgba(0,0,0,0.10);
  --border2:       rgba(5,122,65,0.32);
  --shadow-sm:     0 2px 6px rgba(0,0,0,0.09), 0 1px 2px rgba(0,0,0,0.06);
  --shadow:        0 6px 28px rgba(0,0,0,0.13), 0 1px 4px rgba(0,0,0,0.07);
  --shadow-green:  0 8px 32px rgba(5,122,65,0.25);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-alt);
  color: var(--black);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Utilities ── */
.green { color: var(--green-vivid); }
.outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, background .25s, border-color .25s, color .25s;
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 18px rgba(5,122,65,0.28);
}
.btn-primary:hover {
  background: var(--green-vivid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.22);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
}
.btn-ghost-dark {
  background: transparent;
  border-color: rgba(0,0,0,0.18);
  color: var(--black);
}
.btn-ghost-dark:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s cubic-bezier(0.22,1,0.36,1), transform .7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =================================
   CINEMATIC INTRO OVERLAY
================================= */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #080b09;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
#intro-overlay.intro-exit {
  transform: translateY(-100%);
}
.intro-content {
  text-align: center;
  padding: 0 32px;
  user-select: none;
}
.intro-line {
  font-family: 'Heavitas', sans-serif;
  font-size: clamp(32px, 4.8vw, 68px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.92);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  line-height: 1.1;
}
.intro-line.intro-show {
  opacity: 1;
  transform: translateY(0);
}
.intro-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -46%) scale(0.92);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.intro-logo-img {
  height: clamp(64px, 9vw, 110px);
  width: auto;
  display: block;
}
.intro-logo.intro-show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* =================================
   1. NAV
================================= */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: background .3s, backdrop-filter .3s, border-color .3s, box-shadow .3s;
}
#nav.scrolled {
  background: rgba(8,11,9,0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity .3s;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: filter .3s;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { margin-left: 12px; }
.nav-cta.btn { padding: 9px 18px; font-size: 13px; }

/* =================================
   2. HERO
================================= */
#hero {
  background: var(--hero-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 1100px; height: 1100px;
  background: radial-gradient(circle, rgba(5,122,65,0.13) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  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: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, rgba(0,0,0,0.9) 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, rgba(0,0,0,0.9) 0%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  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='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  animation: grain 9s steps(8) infinite;
}
@keyframes grain {
  0%   { background-position: 0% 0%; }
  12%  { background-position: -6% -11%; }
  25%  { background-position: 8% -22%; }
  37%  { background-position: -12% 18%; }
  50%  { background-position: 6% 28%; }
  62%  { background-position: -18% 5%; }
  75%  { background-position: 14% -8%; }
  87%  { background-position: -4% 22%; }
  100% { background-position: 0% 0%; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5,122,65,0.14);
  border: 1px solid rgba(5,122,65,0.42);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 28px;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-tag .dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(1.5); }
}
.hero-h1 {
  font-family: 'Heavitas', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--white);
}
.hero-h1 span { display: block; }
.hero-h1 > span:first-child {
  background: linear-gradient(135deg, #ffffff 0%, #c8ddd3 45%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.word-underline-wrap {
  position: relative;
  display: inline-block;
  color: var(--green-vivid);
}
.hero-underline-svg {
  position: absolute;
  bottom: -6px; left: 0;
  width: 100%; height: 10px;
  overflow: visible;
  color: var(--green-vivid);
}
.hero-underline-path {
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: draw-underline 1.4s ease-in-out 0.7s forwards;
}
@keyframes draw-underline { to { stroke-dashoffset: 0; } }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.52);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Phone mock ── */
.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
  z-index: 2;
}
.phone {
  width: 300px; height: 600px;
  background: #111;
  border-radius: 44px;
  border: 2px solid #2a2a2a;
  overflow: hidden;
  box-shadow:
    0 0 0 6px #0d0d0d,
    0 0 0 7px #333,
    0 40px 80px rgba(0,0,0,.9),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: relative;
  transition: transform .5s ease;
}
.phone::before {
  content: '';
  position: absolute;
  left: -9px; top: 90px;
  width: 4px; height: 26px;
  background: #2a2a2a;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 38px 0 #2a2a2a;
  z-index: 2;
}
.phone::after {
  content: '';
  position: absolute;
  right: -9px; top: 112px;
  width: 4px; height: 46px;
  background: #2a2a2a;
  border-radius: 0 2px 2px 0;
  z-index: 2;
}
.phone-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 24px;
  background: #000;
  border-radius: 20px;
  z-index: 20;
}
.status-bar {
  background: #075e54;
  padding: 34px 16px 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.status-time { color: #fff; font-size: 11px; font-weight: 600; font-family: 'Barlow', sans-serif; }
.status-icons { color: rgba(255,255,255,.8); font-size: 9px; font-family: sans-serif; display: flex; align-items: center; gap: 3px; }
.wa-header {
  background: #075e54;
  padding: 8px 12px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,.15);
  flex-shrink: 0;
}
.wa-back { color: #fff; font-size: 22px; line-height: 1; opacity: .9; }
.wa-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #128C7E;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-family: 'Barlow', sans-serif;
}
.wa-info { flex: 1; min-width: 0; }
.wa-name { color: #fff; font-size: 13.5px; font-weight: 700; font-family: 'Barlow', sans-serif; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wa-status { color: rgba(255,255,255,.75); font-size: 11px; font-family: 'Barlow', sans-serif; }
.wa-actions { color: rgba(255,255,255,.85); font-size: 18px; font-family: sans-serif; display: flex; gap: 14px; }
.wa-body {
  flex: 1;
  overflow-y: auto;
  background: #0b141a;
  padding: 10px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(255,255,255,.015) 30px),
    repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(255,255,255,.015) 30px);
  scrollbar-width: none;
}
.wa-body::-webkit-scrollbar { display: none; }
.date-divider { text-align: center; margin: 4px 0 8px; }
.date-divider span {
  background: rgba(17,34,44,.9);
  color: rgba(255,255,255,.5);
  font-size: 10px;
  font-family: 'Barlow', sans-serif;
  padding: 3px 10px;
  border-radius: 6px;
}
.bubble {
  max-width: 78%;
  padding: 6px 9px 4px;
  border-radius: 8px;
  font-size: 12px;
  font-family: 'Barlow', sans-serif;
  line-height: 1.45;
  color: #e9edef;
  animation: popIn .25s ease forwards;
  word-break: break-word;
}
.bubble-in  { background: #202c33; align-self: flex-start; border-radius: 0 8px 8px 8px; }
.bubble-out { background: #005c4b; align-self: flex-end;   border-radius: 8px 0 8px 8px; }
.bubble-meta { display: flex; justify-content: flex-end; align-items: center; gap: 3px; margin-top: 2px; }
.bubble-time  { color: rgba(255,255,255,.45); font-size: 9px; }
.bubble-check { color: #53bdeb; font-size: 10px; }
.typing-bubble {
  background: #202c33;
  border-radius: 0 8px 8px 8px;
  padding: 10px 14px;
  align-self: flex-start;
  display: flex;
  gap: 4px;
  align-items: center;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  animation: dotBounce 1.4s infinite;
}
.dot:nth-child(2) { animation-delay: .2s; }
.dot:nth-child(3) { animation-delay: .4s; }
@keyframes dotBounce {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50% { transform: translateY(-5px); opacity: 1; }
}
@keyframes popIn {
  from { opacity: 0; transform: translateY(5px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1);   }
}
.wa-input-bar { background: #1f2c34; padding: 8px 10px; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.wa-input-box { flex: 1; background: #2a3942; border-radius: 20px; padding: 8px 14px; color: rgba(255,255,255,.35); font-size: 12px; font-family: 'Barlow', sans-serif; }
.wa-send { width: 34px; height: 34px; border-radius: 50%; background: #00a884; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-send svg { width: 14px; height: 14px; color: #fff; margin-left: 2px; }


/* =================================
   SECTION TITLE — shared
================================= */
.section-title {
  font-family: 'Heavitas', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 52px;
  text-align: center;
  color: var(--black);
}

/* =================================
   4. DOR — dark section
================================= */
#dor {
  padding: 100px 0;
  background: var(--dark-section);
  position: relative;
  overflow: hidden;
}
#dor::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(5,122,65,0.09) 0%, transparent 65%);
  pointer-events: none;
}
#dor .section-title { color: #ffffff; }
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.pain-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 32px 28px 26px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.pain-card:hover {
  border-color: rgba(5,122,65,0.4);
  box-shadow: 0 0 0 1px rgba(5,122,65,0.15), inset 0 1px 0 rgba(255,255,255,0.06);
  transform: translateY(-4px);
}
.pain-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: rgba(5,122,65,0.18);
  border: 1px solid rgba(5,122,65,0.4);
  border-radius: 8px;
  font-family: 'Heavitas', sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: var(--green-vivid);
  margin-bottom: 18px;
}
.pain-title {
  font-family: 'Heavitas', sans-serif;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.01em;
}
.pain-desc {
  color: rgba(255,255,255,0.48);
  font-size: 14px;
  line-height: 1.7;
}

/* =================================
   5. SOLUÇÃO — dark section
================================= */
#solucao {
  padding: 100px 0;
  background: var(--dark-section);
  position: relative;
  overflow: hidden;
}
#solucao::before {
  content: '';
  position: absolute;
  top: 50%; right: -100px;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(5,122,65,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
#solucao::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}
#solucao .section-title { color: #ffffff; }
.sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.sol-left .section-title { text-align: left; margin-bottom: 20px; }
.sol-sub {
  color: rgba(255,255,255,0.48);
  margin-bottom: 36px;
  font-size: 16px;
  line-height: 1.75;
}
.feature-list { display: flex; flex-direction: column; gap: 18px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.check {
  width: 22px; height: 22px;
  background: var(--green-bg);
  border: 1.5px solid var(--green-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check svg { width: 10px; height: 10px; stroke: var(--green-vivid); stroke-width: 2.5; fill: none; }
.feature-text { font-size: 15px; color: rgba(255,255,255,0.52); line-height: 1.65; }
.feature-text strong { color: rgba(255,255,255,0.90); font-weight: 700; }

/* =================================
   6. PROCESSO — dark section
================================= */
#processo {
  padding: 100px 0;
  background: var(--dark-section);
  position: relative;
  overflow: hidden;
}
#processo::before {
  content: '';
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(5,122,65,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
#processo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}
#processo .section-title { color: #ffffff; position: relative; z-index: 1; }
.steps-wrap { position: relative; margin-top: 52px; z-index: 2; }
.steps-line {
  position: absolute;
  top: 28px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(5,122,65,0.35), transparent);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 28px 22px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.step-card:hover {
  border-color: rgba(5,122,65,0.45);
  box-shadow: 0 0 0 1px rgba(5,122,65,0.15), 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(-4px);
}
.step-num {
  font-family: 'Heavitas', sans-serif;
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(5,122,65,0.25);
  margin-bottom: 12px;
}
.step-title {
  font-family: 'Heavitas', sans-serif;
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.01em;
}
.step-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* =================================
   7. COMPARATIVO — dark section, vibrant cards
================================= */
#comparativo {
  padding: 100px 0;
  background: var(--dark-section);
  position: relative;
  overflow: hidden;
}
#comparativo::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse, rgba(5,122,65,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
#comparativo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}
#comparativo .section-title { color: #ffffff; position: relative; z-index: 1; }
.comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.comp-card { border-radius: 18px; padding: 36px; }
.comp-bad {
  background: #1c0808;
  border: 1px solid rgba(220,50,50,0.40);
  box-shadow: 0 0 40px rgba(180,0,0,0.12);
}
.comp-good {
  background: #061a0f;
  border: 1px solid rgba(5,122,65,0.55);
  box-shadow: 0 0 40px rgba(5,122,65,0.18), 0 0 0 1px rgba(5,122,65,0.10);
}
.comp-header { margin-bottom: 24px; }
.comp-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 6px;
}
.comp-bad  .comp-label { color: #f87171; }
.comp-good .comp-label { color: var(--green-vivid); }
.comp-name {
  font-family: 'Heavitas', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.comp-bad  .comp-name { color: rgba(255,255,255,0.85); }
.comp-good .comp-name { color: rgba(255,255,255,0.92); }
.comp-price { font-family: 'Heavitas', sans-serif; font-weight: 900; font-size: 30px; margin-top: 4px; letter-spacing: -0.02em; }
.comp-bad  .comp-price { color: #f87171; }
.comp-good .comp-price { color: var(--green-vivid); }
.comp-price span { font-size: 15px; font-weight: 400; font-family: 'Barlow', sans-serif; opacity: 0.65; }
.comp-list { display: flex; flex-direction: column; gap: 12px; }
.comp-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; }
.comp-bad  .comp-item { color: rgba(255,255,255,0.55); }
.comp-good .comp-item { color: rgba(255,255,255,0.75); }
.comp-x { color: #f87171; font-weight: 700; flex-shrink: 0; font-size: 15px; }
.comp-v { color: var(--green-vivid); font-weight: 700; flex-shrink: 0; font-size: 15px; }
.comp-cta { text-align: center; margin-top: 48px; position: relative; z-index: 2; }

/* =================================
   8. PREÇOS — dark section
================================= */
#precos {
  padding: 100px 0;
  background: var(--dark-section);
  position: relative;
  overflow: hidden;
}
#precos::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(5,122,65,0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
#precos::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}
#precos .section-title { color: #ffffff; position: relative; z-index: 1; }
.price-single {
  max-width: 640px;
  margin: 52px auto 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(5,122,65,0.35);
  border-radius: 22px;
  box-shadow: 0 0 60px rgba(5,122,65,0.12), var(--shadow);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.price-single::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 23px;
  padding: 1px;
  background-image: radial-gradient(transparent, transparent, var(--green-vivid), transparent, transparent);
  background-size: 300% 300%;
  animation: shine-border 6s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .35;
  pointer-events: none;
}
@keyframes shine-border {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}
.price-row-top {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.price-col { padding: 36px 28px; text-align: center; }
.price-col:first-child { border-right: 1px solid rgba(255,255,255,0.08); }
.price-divider {
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 300;
  color: rgba(255,255,255,0.3);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.price-tag-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.price-amount {
  font-family: 'Heavitas', sans-serif;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--green-vivid);
  line-height: 1;
  margin-bottom: 8px;
}
.price-amount sup {
  font-size: 20px;
  font-weight: 700;
  vertical-align: super;
  color: var(--green-vivid);
  opacity: 0.7;
  margin-right: 2px;
  font-family: 'Barlow', sans-serif;
}
.price-amount sub {
  font-size: 14px;
  font-weight: 400;
  vertical-align: baseline;
  color: rgba(255,255,255,0.4);
  font-family: 'Barlow', sans-serif;
}
.price-tag-note { font-size: 12px; color: rgba(255,255,255,0.35); }
.price-row-features { padding: 28px 28px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.price-features-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.price-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.price-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
}
.pf-check { color: var(--green-vivid); font-weight: 700; flex-shrink: 0; line-height: 1.5; }
.price-row-cta {
  padding: 28px 28px;
  text-align: center;
  background: rgba(5,122,65,0.08);
}
.price-cta-note { margin-top: 10px; font-size: 12px; color: rgba(255,255,255,0.3); }

/* =================================
   9. FAQ — dark section
================================= */
#faq {
  padding: 100px 0;
  background: var(--dark-section);
  position: relative;
  overflow: hidden;
}
#faq::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(5,122,65,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
#faq::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}
#faq .section-title { color: #ffffff; }
.faq-list {
  max-width: 680px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 2;
}
.faq-item {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  transition: border-color .25s, box-shadow .25s;
}
.faq-item:hover { border-color: rgba(5,122,65,0.30); }
.faq-item.open {
  border-color: rgba(5,122,65,0.45);
  box-shadow: 0 4px 20px rgba(5,122,65,0.12);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.85);
  text-align: left;
  padding: 20px 24px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .2s;
}
.faq-item.open .faq-q { color: var(--green-vivid); }
.faq-icon {
  position: relative;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.20);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s, transform .35s;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.65);
  border-radius: 2px;
  transition: transform .35s, background .2s;
}
.faq-icon::before { width: 9px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 9px; }
.faq-item.open .faq-icon { border-color: var(--green-vivid); transform: rotate(45deg); }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--green-vivid); }
.faq-a {
  background: rgba(5,122,65,0.05);
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 220px; padding: 16px 24px 20px; }
.faq-a p { color: rgba(255,255,255,0.48); font-size: 14px; line-height: 1.75; }

/* =================================
   10. CTA FINAL
================================= */
#cta-final {
  padding: 120px 0;
  text-align: center;
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute;
  bottom: -120px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(5,122,65,0.12) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
#cta-final::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0,0,0,0.85) 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0,0,0,0.85) 0%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
#cta-final .container { position: relative; z-index: 1; }
.cta-title {
  font-family: 'Heavitas', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--white);
}
.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.48);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.cta-note { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.3); }
.cta-note span::after { content: ' · '; }
.cta-note span:last-child::after { content: ''; }

/* =================================
   11. FOOTER
================================= */
#footer {
  background: #0a0a0a;
  padding-top: 64px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  opacity: 0.9;
  transition: opacity .2s;
}
.footer-logo:hover { opacity: 1; }
.footer-logo-img { height: 30px; width: auto; display: block; }
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 260px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.footer-social-btn:hover { background: var(--green); border-color: transparent; }
.footer-social-btn svg { width: 15px; height: 15px; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-social-btn:hover svg { color: #fff; }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
  font-family: 'Barlow', sans-serif;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); }
.footer-contact-icon { width: 14px; height: 14px; flex-shrink: 0; color: rgba(255,255,255,0.3); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.22); }

/* =================================
   3. SETORES — faz parte do hero
================================= */
#setores {
  background: var(--dark-section);
  padding: 0 0 80px;
  overflow: hidden;
  position: relative;
}
#setores::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(5,122,65,0.3), transparent);
}
.setores-eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255,255,255,0.28);
  padding: 36px 0 28px;
}
.setores-fade-wrap {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.setores-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 2px 0;
}
.setores-fwd { animation: setores-scroll-fwd 40s linear infinite; }
.setores-rev { animation: setores-scroll-rev 40s linear infinite; }
.setores-fade-wrap:hover .setores-track { animation-play-state: paused; }
@keyframes setores-scroll-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes setores-scroll-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.setor-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  cursor: default;
  user-select: none;
  transition: border-color .25s, background .25s, color .25s;
}
.setor-badge:hover {
  border-color: rgba(5,122,65,0.55);
  background: rgba(5,122,65,0.12);
  color: var(--green-vivid);
}
.setor-icon { font-size: 14px; line-height: 1; }

/* =================================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-inner { justify-content: center; }
  .nav-logo-img { height: 38px; }

  #hero { min-height: 100svh; padding-top: 88px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-h1 { font-size: 48px; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

#dor, #solucao, #processo, #comparativo, #precos, #faq, #cta-final {
    min-height: auto;
    padding: 72px 0;
  }

  .pain-grid { grid-template-columns: 1fr; }

  .sol-grid { grid-template-columns: 1fr; gap: 40px; }
  .sol-left .section-title { text-align: center; }

  .steps-line { display: none; }
  .steps-grid { grid-template-columns: 1fr; }

  .comp-grid { grid-template-columns: 1fr; }

  .price-row-top { grid-template-columns: 1fr; }
  .price-divider { display: none; }
  .price-col:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .price-features-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .section-title { font-size: 28px; margin-bottom: 36px; }
  .hero-grain { display: none; }
  #hero::after { display: none; }
  #dor::before { display: none; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 40px; }
}
