/* ============================================================
   Pernambuco Energy — Folha de estilos principal
   ============================================================ */

/* ---- Variáveis de design (edite aqui para mudar o visual) ---- */
:root {
  /* Cores brand */
  --ink:         #0E1A1F;
  --ink-2:       #1C2A30;
  --muted:       #5A6B72;
  --muted-2:     #8A99A0;
  --line:        #E4E9EC;
  --line-2:      #EEF2F4;
  --bg:          #FAFBFC;
  --bg-2:        #F3F6F8;
  --surface:     #FFFFFF;

  --teal:        #2B5F6B;
  --teal-ink:    #1A3F48;
  --green:       #4EA872;
  --green-soft:  #E7F4EC;
  --sky:         #3BA7E8;
  --sky-soft:    #E4F2FB;

  --accent:      #2B5F6B;
  --grad:        linear-gradient(120deg, #2B5F6B 0%, #3BA7E8 55%, #4EA872 100%);
  --grad-soft:   linear-gradient(120deg, #EAF3F5 0%, #E4F2FB 55%, #E7F4EC 100%);

  /* Bordas */
  --radius:      14px;
  --radius-lg:   20px;
  --radius-sm:   10px;

  /* Sombras */
  --shadow-xs:   0 1px 2px rgba(14,26,31,.05);
  --shadow-sm:   0 2px 6px rgba(14,26,31,.06), 0 1px 2px rgba(14,26,31,.04);
  --shadow-md:   0 12px 32px -12px rgba(14,26,31,.14), 0 2px 6px rgba(14,26,31,.05);
  --shadow-lg:   0 30px 60px -24px rgba(14,26,31,.22), 0 6px 18px -6px rgba(14,26,31,.08);

  /* Tipografia */
  --font-display: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --font-body:    'Geist', ui-sans-serif, system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
}

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Layout ---- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section { padding: 120px 0; position: relative; }
.section-sm { padding: 80px 0; }

/* ---- Navegação ---- */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(140%) blur(12px);
  background: rgba(250,251,252,0.8);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,.85); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 32px; height: 32px; flex: none; }
.logo-text { font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: -0.02em; color: var(--ink); }
.logo-text .dot { color: var(--green); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
@media (max-width: 880px) { .nav-links { display: none; } }

/* ---- Botões ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 14.5px; font-weight: 500; letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s, border-color .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 1px 2px rgba(14,26,31,.15), 0 8px 22px -10px rgba(14,26,31,.4);
}
.btn-primary:hover { background: #000; box-shadow: 0 2px 4px rgba(14,26,31,.18), 0 14px 30px -12px rgba(14,26,31,.45); }
.btn-ghost { color: var(--ink); border-color: var(--line); background: var(--surface); }
.btn-ghost:hover { border-color: #C9D3D8; }
.btn-whats { background: #25D366; color: #fff; }
.btn-whats:hover { background: #1DBE5B; }
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 72px 0 90px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 1020px) { .hero-grid { grid-template-columns: 1fr; gap: 56px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  box-shadow: var(--shadow-xs);
}
.eyebrow .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(78,168,114,.55);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(78,168,114,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(78,168,114,0); }
  100% { box-shadow: 0 0 0 0 rgba(78,168,114,0); }
}

h1.hero-title {
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 22px 0 22px;
  font-weight: 600;
}
.hero-title .hl {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 18.5px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.hero-trust {
  margin-top: 44px;
  display: flex; gap: 28px; align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.trust-stat strong { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.02em; display: block; line-height: 1.1; }
.trust-stat span { font-size: 12.5px; color: var(--muted); letter-spacing: 0.02em; text-transform: uppercase; font-weight: 500; }

/* Fundo hero */
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(60% 50% at 85% 15%, rgba(59,167,232,.12), transparent 60%),
    radial-gradient(50% 40% at 15% 90%, rgba(78,168,114,.1), transparent 60%);
}
.hero-grid { position: relative; z-index: 1; }
.grid-lines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(to right, rgba(14,26,31,.035) 1px, transparent 1px);
  background-size: 96px 100%;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

/* ---- Dashboard mock (hero) ---- */
.dash {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  transform: perspective(1400px) rotateY(-3deg) rotateX(2deg);
}
.dash-head {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 4px 4px 16px; border-bottom: 1px solid var(--line-2);
}
.dash-title { display: flex; flex-direction: column; gap: 2px; }
.dash-title .t { font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.dash-title .s { font-size: 12px; color: var(--muted); }
.dash-live {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-soft);
  color: #2B6A47;
  font-size: 11.5px; font-weight: 500;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
}
.dash-live .dot { width: 6px; height: 6px; border-radius: 50%; background: #2B6A47; animation: pulse 2s infinite; }

.dash-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  padding: 16px 4px 0;
}
.stat-card {
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--line-2);
  padding: 12px 14px;
}
.stat-card .lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 500; }
.stat-card .val { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin-top: 4px; letter-spacing: -0.01em; }
.stat-card .delta { font-family: var(--font-mono); font-size: 11px; margin-top: 2px; color: var(--green); }
.stat-card .delta.down { color: #C85A2E; }

.dash-chart { padding: 20px 4px 4px; }
.chart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.chart-head .t { font-size: 12.5px; font-weight: 500; color: var(--ink-2); }
.chart-tabs { display: flex; gap: 2px; background: var(--bg); padding: 3px; border-radius: 8px; border: 1px solid var(--line-2); }
.chart-tabs button { font-size: 11px; padding: 4px 10px; border-radius: 6px; color: var(--muted); font-weight: 500; }
.chart-tabs button.on { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-xs); }
.chart-wrap { background: linear-gradient(to bottom, rgba(59,167,232,0.03), transparent); border-radius: var(--radius-sm); padding: 14px 6px 6px; border: 1px solid var(--line-2); }
.chart-svg { width: 100%; height: 180px; display: block; }
.chart-legend { display: flex; gap: 16px; padding: 12px 6px 2px; font-size: 11.5px; color: var(--muted); }
.chart-legend .swatch { display: inline-block; width: 8px; height: 8px; border-radius: 2px; margin-right: 6px; vertical-align: middle; }

.dash-floats { position: absolute; pointer-events: none; }
.float-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
}
.float-economy { right: -30px; top: 50%; transform: translateY(-50%); }
.float-notify  { left: -34px; top: 18%; }
.float-card .ico { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; }
.float-card .ico.green { background: var(--green-soft); color: #2b6a47; }
.float-card .ico.blue  { background: var(--sky-soft); color: #1f6d94; }
.float-card strong { font-family: var(--font-display); font-weight: 600; font-size: 15px; display: block; line-height: 1; letter-spacing: -0.01em; }
.float-card .lbl { font-size: 11px; color: var(--muted); margin-top: 3px; }
@media (max-width: 1020px) {
  .dash { transform: none; }
  .float-economy, .float-notify { display: none; }
}

/* ---- Cabeçalhos de seção ---- */
.sec-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.sec-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; color: var(--teal);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.sec-title {
  font-size: clamp(30px, 3.6vw, 46px);
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.sec-sub {
  margin-top: 18px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---- Como funciona ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #D6DFE3; }
.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 22px;
  display: flex; justify-content: space-between; align-items: center;
}
.step-num .line { flex: 1; height: 1px; background: var(--line); margin-left: 12px; }
.step-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--bg-2);
  display: grid; place-items: center;
  margin-bottom: 24px;
  color: var(--teal);
}
.step-icon svg { width: 24px; height: 24px; }
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--muted); line-height: 1.55; }
.step-tag { margin-top: 18px; font-family: var(--font-mono); font-size: 11px; color: var(--muted); background: var(--bg); padding: 6px 10px; border-radius: 6px; display: inline-block; }

/* ---- Simulador ---- */
.sim-wrap {
  background: linear-gradient(180deg, #fff 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 56px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.sim-wrap::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 85% 0%, rgba(59,167,232,.08), transparent 70%),
    radial-gradient(40% 40% at 10% 100%, rgba(78,168,114,.08), transparent 70%);
}
@media (max-width: 980px) { .sim-wrap { grid-template-columns: 1fr; padding: 32px; gap: 32px; } }

.sim-left h3 { font-size: 34px; letter-spacing: -0.025em; line-height: 1.1; }
.sim-left .lead { margin-top: 16px; color: var(--muted); font-size: 16px; }

.sim-input-group { margin-top: 28px; }
.sim-input-group label {
  display: block;
  font-size: 12px; color: var(--muted); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.sim-input-wrap {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex; align-items: center;
  transition: border-color .15s, box-shadow .15s;
}
.sim-input-wrap:focus-within { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(43,95,107,.08); }
.sim-currency {
  padding-left: 16px;
  font-family: var(--font-display); font-weight: 500; color: var(--muted); font-size: 22px;
}
.sim-input {
  flex: 1;
  padding: 16px 14px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  border: none; background: transparent; outline: none;
  color: var(--ink);
  letter-spacing: -0.02em;
  min-width: 0;
}

.sim-slider-wrap { margin-top: 18px; }
.sim-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: var(--line);
  border-radius: 999px;
  outline: none;
}
.sim-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--teal);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.sim-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--teal);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.sim-slider-labels { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--muted); font-family: var(--font-mono); margin-top: 8px; }
.sim-cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

.sim-right {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.sim-right-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 20px; border-bottom: 1px dashed var(--line);
}
.sim-right-head .lbl { font-family: var(--font-mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.sim-right-head .pc {
  background: var(--green-soft); color: #2b6a47;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  padding: 6px 12px; border-radius: 999px;
}

.sim-rows { margin-top: 20px; display: flex; flex-direction: column; gap: 18px; }
.sim-row { display: flex; justify-content: space-between; align-items: baseline; }
.sim-row .k { font-size: 14px; color: var(--muted); }
.sim-row .v { font-family: var(--font-display); font-weight: 500; font-size: 17px; letter-spacing: -0.01em; }
.sim-row.was .v { color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(90,107,114,.4); }
.sim-row.new .v { font-size: 22px; color: var(--teal); font-weight: 600; }

.sim-highlight {
  margin-top: 20px;
  padding: 22px;
  background: var(--grad);
  border-radius: 14px;
  color: #fff;
  position: relative; overflow: hidden;
}
.sim-highlight::after {
  content: ''; position: absolute; inset: 0; opacity: .25; pointer-events: none;
  background: radial-gradient(30% 60% at 90% 0%, rgba(255,255,255,.3), transparent 70%);
}
.sim-highlight .lbl { font-size: 12px; opacity: .85; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
.sim-highlight .v {
  font-family: var(--font-display);
  font-weight: 600; font-size: 40px;
  margin-top: 6px; letter-spacing: -0.02em;
  line-height: 1.05;
}
.sim-highlight .sub { margin-top: 4px; font-size: 13px; opacity: .85; }
.sim-bar {
  margin-top: 18px;
  height: 8px; background: rgba(255,255,255,0.2); border-radius: 999px; overflow: hidden;
  position: relative;
}
.sim-bar-fill { height: 100%; background: #fff; border-radius: 999px; transition: width .6s cubic-bezier(.2,.7,.2,1); }

/* ---- Prova social ---- */
.cases-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  margin-bottom: 56px;
}
.cases-bar > div {
  padding: 0 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.cases-bar > div:last-child { border-right: none; }
.cases-bar .num { font-family: var(--font-display); font-weight: 600; font-size: 36px; letter-spacing: -0.02em; line-height: 1; }
.cases-bar .lbl { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
@media (max-width: 720px) { .cases-bar { grid-template-columns: repeat(2, 1fr); gap: 20px 0; } .cases-bar > div:nth-child(2) { border-right: none; } }

.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .cases { grid-template-columns: 1fr; } }
.case {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
}
.case-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.case-co { font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }
.case-seg { font-size: 12px; color: var(--muted); margin-top: 2px; }
.case-pc {
  background: var(--green-soft); color: #2b6a47;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  padding: 5px 9px; border-radius: 6px; white-space: nowrap;
}
.case-comp {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 16px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px;
}
.case-comp .side .lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; font-family: var(--font-mono); }
.case-comp .side .val { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.01em; margin-top: 3px; line-height: 1.1; }
.case-comp .side.new .val { color: var(--teal); }
.case-comp .arr { color: var(--muted); font-size: 14px; }

/* ---- Tecnologia (seção escura) ---- */
.tech {
  background: var(--ink);
  color: #EAF0F2;
  overflow: hidden;
  position: relative;
}
.tech::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 40% at 15% 20%, rgba(59,167,232,.15), transparent 70%),
    radial-gradient(40% 40% at 85% 90%, rgba(78,168,114,.12), transparent 70%);
}
.tech-inner { position: relative; z-index: 1; }
.tech .sec-title { color: #fff; }
.tech .sec-sub { color: rgba(255,255,255,.65); }
.tech .sec-eyebrow { color: #6AD3FF; }

.tech-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center;
  margin-top: 32px;
}
@media (max-width: 980px) { .tech-grid { grid-template-columns: 1fr; } }

.tech-feats { display: flex; flex-direction: column; gap: 24px; }
.tech-feat { display: flex; gap: 16px; padding: 20px; border-radius: 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.tech-feat .ico {
  width: 40px; height: 40px; flex: none; border-radius: 10px;
  background: rgba(106,211,255,.1); color: #6AD3FF;
  display: grid; place-items: center;
}
.tech-feat .ico svg { width: 20px; height: 20px; }
.tech-feat h4 { font-size: 16px; color: #fff; letter-spacing: -0.01em; }
.tech-feat p { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 4px; line-height: 1.55; }

.tech-dash {
  background: #15222A;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.6);
}
.tech-dash .head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.tech-dash .tabs { display: flex; gap: 2px; background: rgba(0,0,0,0.3); padding: 3px; border-radius: 8px; }
.tech-dash .tabs button { font-size: 11px; padding: 6px 12px; border-radius: 6px; color: rgba(255,255,255,0.5); font-weight: 500; }
.tech-dash .tabs button.on { background: rgba(255,255,255,0.08); color: #fff; }
.tech-dash .title { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: #fff; }
.tech-dash .sub { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

.tech-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 18px 0 4px; }
.tech-kpi { padding: 12px; background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; }
.tech-kpi .lbl { font-size: 10.5px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-mono); }
.tech-kpi .v { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: #fff; margin-top: 4px; letter-spacing: -0.01em; }
.tech-kpi .d { font-family: var(--font-mono); font-size: 10px; color: #6DD6A0; margin-top: 2px; }
.tech-kpi .d.blue { color: #6AD3FF; }

.tech-chart { margin-top: 16px; padding: 14px; background: rgba(0,0,0,.2); border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); }
.tech-chart svg { width: 100%; height: 160px; display: block; }
.tech-legend { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 10px; font-family: var(--font-mono); }

/* ---- Grade de benefícios ---- */
.benefits {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
@media (max-width: 880px) { .benefits { grid-template-columns: 1fr; } }
.benefit {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}
.benefit:hover { background: var(--bg); }
.benefit:nth-child(3n) { border-right: none; }
@media (max-width: 880px) { .benefit { border-right: none; } }
.benefit-ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--bg);
  display: grid; place-items: center; color: var(--teal);
  margin-bottom: 18px;
}
.benefit-ico svg { width: 18px; height: 18px; }
.benefit h4 { font-size: 17px; letter-spacing: -0.01em; margin-bottom: 8px; }
.benefit p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* ---- Sobre ---- */
.sobre { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 980px) { .sobre { grid-template-columns: 1fr; gap: 40px; } }
.sobre-copy h2 { font-size: clamp(30px, 3.4vw, 40px); letter-spacing: -0.025em; line-height: 1.1; }
.sobre-copy p { margin-top: 20px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.sobre-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.sobre-stat {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
}
.sobre-stat strong { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: -0.02em; display: block; }
.sobre-stat span { font-size: 13px; color: var(--muted); margin-top: 2px; display: block; }

.sobre-map {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  min-height: 360px;
  overflow: hidden;
}
.sobre-map-head { display: flex; justify-content: space-between; align-items: flex-start; }
.sobre-map .t { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.sobre-map .s { font-size: 12px; color: var(--muted); margin-top: 3px; }
.sobre-map .badge { background: var(--green-soft); color: #2b6a47; font-size: 11.5px; padding: 5px 10px; border-radius: 999px; font-weight: 500; }
.pe-map { width: 100%; height: 260px; display: block; margin-top: 10px; }

/* ---- CTA final ---- */
.cta-final {
  border-radius: 28px;
  background: var(--grad);
  padding: 72px 56px;
  position: relative; overflow: hidden;
  color: #fff;
  text-align: center;
}
.cta-final::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 60% at 20% 0%, rgba(255,255,255,0.22), transparent 70%),
    radial-gradient(50% 60% at 90% 100%, rgba(255,255,255,0.15), transparent 70%);
}
.cta-final > * { position: relative; z-index: 1; }
.cta-final h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -0.03em; line-height: 1.05;
  max-width: 820px; margin: 0 auto;
}
.cta-final p { margin-top: 20px; opacity: .9; font-size: 18px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-final .btns { margin-top: 36px; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cta-final .btn-primary { background: #fff; color: var(--ink); }
.cta-final .btn-primary:hover { background: #F3F6F8; }
.cta-final .btn-whats { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.cta-final .btn-whats:hover { background: rgba(255,255,255,0.22); }

/* ---- Rodapé ---- */
footer {
  padding: 72px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 880px) { .foot { grid-template-columns: 1fr 1fr; } }
.foot h5 { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: 0.02em; margin-bottom: 14px; color: var(--ink); }
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot a { color: var(--muted); font-size: 14px; }
.foot a:hover { color: var(--ink); }
.foot-brand p { color: var(--muted); font-size: 14px; margin-top: 14px; line-height: 1.55; max-width: 300px; }
.foot-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--muted);
  flex-wrap: wrap; gap: 12px;
}

/* ---- Animação de entrada (scroll reveal) ---- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
