/* ===== AutoPão — HMI / industrial console design system ===== */
:root {
  --bg: #0B0D10;
  --bg-2: #101318;
  --bg-3: #06070A;
  --panel: #14171D;
  --panel-2: #1A1E25;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --text: #E7E9EC;
  --muted: #8A9099;
  --muted-2: #5E646D;
  --amber: #FF8A34;
  --amber-dark: #E06A16;
  --amber-dim: rgba(255,138,52,0.12);
  --gold: #FFB765;
  --cyan: #4FD8C7;
  --cyan-dim: rgba(79,216,199,0.12);
  --green: #3ECF6E;
  --shadow: 0 20px 50px rgba(0,0,0,0.45);
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.3);
  --glow-amber: 0 0 0 1px rgba(255,138,52,0.4), 0 0 32px rgba(255,138,52,0.18);
  --glow-cyan: 0 0 0 1px rgba(79,216,199,0.4), 0 0 32px rgba(79,216,199,0.16);
  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1180px;
  --font-display: 'Space Grotesk', -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
/* Faint blueprint grid, fixed behind everything */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  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: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 40%, transparent 100%);
}
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.15; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--amber); color: var(--bg-3); }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

.icon { width: 1em; height: 1em; fill: currentColor; display: inline-block; }
.mono { font-family: var(--font-mono); }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative; z-index: 1;
}

.section { padding: 72px 0; border-top: 1px solid var(--line); position: relative; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--bg-2); }
.section--dark { background: var(--bg-3); }

/* ===== Pill lists ===== */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px 9px 10px; border-radius: 100px;
  background: var(--panel); border: 1px solid var(--line);
  font-size: 13.5px; font-weight: 500; color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.pill:hover { border-color: rgba(255,138,52,0.4); box-shadow: 0 0 0 1px rgba(255,138,52,0.15); }
.pill .ico { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--amber-dim); color: var(--amber); }
.pill .ico .icon { width: 12px; height: 12px; }
.pill.sec .ico { background: var(--cyan-dim); color: var(--cyan); }
.pill.sec:hover { border-color: rgba(79,216,199,0.4); box-shadow: 0 0 0 1px rgba(79,216,199,0.15); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 8px var(--amber); }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
h2.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 600; }
.section-lede { margin-top: 16px; font-size: 17px; color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--amber); color: var(--bg-3); box-shadow: 0 8px 20px rgba(255,138,52,0.25); }
.btn--primary:hover { background: var(--gold); box-shadow: var(--glow-amber); }
.btn--ghost { border-color: var(--line-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-dim); }
.btn--outline { border-color: var(--line-strong); color: var(--text); }
.btn--outline:hover { border-color: var(--amber); color: var(--amber); }
.btn .icon { width: 16px; height: 16px; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,13,16,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(11,13,16,0.92); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 19px; }
.brand .icon-badge { width: 32px; height: 32px; border-radius: 9px; background: var(--amber); color: var(--bg-3); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 16px rgba(255,138,52,0.35); }
.brand .icon-badge .icon { width: 17px; height: 17px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color .15s; }
.nav-links a:hover { color: var(--amber); }
.header-cta { display: flex; align-items: center; gap: 16px; }

.menu-toggle { display: none; background: none; border: none; padding: 8px; color: var(--text); }
.menu-toggle .icon { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .nav-links { position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--bg); flex-direction: column; align-items: flex-start; padding: 32px 24px; gap: 22px; transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 18px; }
  .menu-toggle { display: block; }
  .header-cta .btn--outline { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 168px 0 88px;
  background: var(--bg);
  overflow: hidden;
  border-top: none;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 460px at 86% 0%, rgba(255,138,52,0.14), transparent 60%),
    radial-gradient(520px 460px at 4% 100%, rgba(79,216,199,0.10), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 30%), rgba(255,138,52,0.09), transparent 65%);
  transition: background .1s ease-out;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--panel); border: 1px solid var(--line);
  padding: 7px 16px 7px 8px; border-radius: 100px; font-family: var(--font-mono); font-size: 12.5px; font-weight: 500;
  color: var(--text); margin-bottom: 26px;
}
.hero-badge .dot { width: 20px; height: 20px; border-radius: 50%; background: var(--amber-dim); color: var(--amber); display: flex; align-items: center; justify-content: center; }
.hero-badge .dot .icon { width: 11px; height: 11px; }

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(36px, 5.2vw, 58px); font-weight: 600; letter-spacing: -0.03em; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero-sub { margin-top: 22px; font-size: 17.5px; color: var(--muted); max-width: 540px; }
.hero-ctas { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-art {
  position: relative;
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
}
.hero-photo {
  width: 100%; height: 100%; border-radius: 4px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55); border: 1px solid var(--line-strong);
  position: relative;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.92) contrast(1.04); }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,13,16,0) 60%, rgba(11,13,16,0.5) 100%);
  pointer-events: none;
}
/* corner brackets — machine-vision viewfinder */
.hero-corner { position: absolute; width: 26px; height: 26px; z-index: 2; pointer-events: none; }
.hero-corner::before, .hero-corner::after { content: ""; position: absolute; background: var(--amber); }
.hero-corner--tl { top: -1px; left: -1px; }
.hero-corner--tl::before { top: 0; left: 0; width: 2px; height: 100%; }
.hero-corner--tl::after { top: 0; left: 0; width: 100%; height: 2px; }
.hero-corner--tr { top: -1px; right: -1px; }
.hero-corner--tr::before { top: 0; right: 0; width: 2px; height: 100%; }
.hero-corner--tr::after { top: 0; right: 0; width: 100%; height: 2px; }
.hero-corner--bl { bottom: -1px; left: -1px; }
.hero-corner--bl::before { bottom: 0; left: 0; width: 2px; height: 100%; }
.hero-corner--bl::after { bottom: 0; left: 0; width: 100%; height: 2px; }
.hero-corner--br { bottom: -1px; right: -1px; }
.hero-corner--br::before { bottom: 0; right: 0; width: 2px; height: 100%; }
.hero-corner--br::after { bottom: 0; right: 0; width: 100%; height: 2px; }

.hero-caption { max-width: var(--maxw); margin: 14px auto 0; padding: 0 24px; font-family: var(--font-mono); font-size: 11.5px; color: var(--muted-2); text-align: right; position: relative; z-index: 1; }
.hero-art .chip { position: absolute; background: rgba(20,23,29,0.9); border: 1px solid var(--line-strong); border-radius: 100px; padding: 9px 16px; font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; color: var(--text); display: flex; align-items: center; gap: 9px; backdrop-filter: blur(10px); z-index: 2; }
.hero-art .chip--status { bottom: -18px; left: 50%; transform: translateX(-50%); white-space: nowrap; }

/* status pulse dot */
.pulse-dot { position: relative; width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.pulse-dot::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 1.5px solid var(--green); animation: pulse-ring 2s ease-out infinite; }
@keyframes pulse-ring { 0% { transform: scale(0.6); opacity: 0.9; } 100% { transform: scale(1.8); opacity: 0; } }

/* hero technical callouts */
.hero-callout { position: absolute; display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; color: var(--cyan); white-space: nowrap; z-index: 2; opacity: 0; transform: translateX(-6px); transition: opacity .5s ease, transform .5s ease; }
.hero-art.is-annotated .hero-callout { opacity: 1; transform: translateX(0); }
.hero-callout .line { height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); }
.hero-callout--left { left: -22%; flex-direction: row-reverse; text-align: right; }
.hero-callout--left .line { width: 28px; background: linear-gradient(270deg, var(--cyan), transparent); }
.hero-callout--right { right: -22%; }
.hero-callout--right .line { width: 28px; }
.hero-callout--1 { top: 18%; }
.hero-callout--2 { top: 48%; transition-delay: .08s; }
.hero-callout--3 { top: 76%; transition-delay: .16s; }
.hero-callout b { color: var(--text); font-weight: 500; }

@media (max-width: 900px) {
  .hero { padding-top: 128px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { max-width: 280px; margin: 0 auto; }
  .hero-art .chip, .hero-callout { display: none; }
  .hero-caption { text-align: center; }
}

/* ===== Animated counters ===== */
.count { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* ===== Opportunity / TAM-SAM-SOM ===== */
.tsr { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tsr-card {
  position: relative; padding: 28px 26px; border-radius: var(--radius);
  background: var(--panel); border: 1px solid var(--line); transition: border-color .2s ease, transform .2s ease;
}
.tsr-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.tsr-card.is-som { border-color: rgba(255,138,52,0.5); box-shadow: var(--glow-amber); }
.tsr-tag { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); }
.tsr-card.is-som .tsr-tag { color: var(--gold); }
.tsr-num { font-family: var(--font-mono); font-size: 32px; font-weight: 500; margin: 12px 0 4px; color: var(--text); }
.tsr-card.is-som .tsr-num { color: var(--amber); }
.tsr-sub { font-size: 13.5px; color: var(--muted); }
.tsr-desc { margin-top: 16px; font-size: 13.5px; color: var(--muted-2); }
@media (max-width: 860px) { .tsr { grid-template-columns: 1fr; } }

.funnel-note {
  margin-top: 22px; display: flex; gap: 12px; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; font-size: 13px; color: var(--muted);
}
.funnel-note .icon { width: 18px; height: 18px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }

/* ===== Icon list rows ===== */
.icon-row { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; }
.icon-row .ico {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--amber-dim); color: var(--amber);
}
.icon-row .ico .icon { width: 18px; height: 18px; }
.icon-row .ico--sec { background: var(--cyan-dim); color: var(--cyan); }
.icon-row p { font-size: 15px; color: var(--text); padding-top: 6px; }

/* ===== Problem grid ===== */
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 40px; margin-top: 8px; }
.problem-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.problem-item .num { font-family: var(--font-mono); font-weight: 500; color: var(--amber); opacity: .7; font-size: 14px; width: 26px; flex-shrink: 0; }
@media (max-width: 760px) { .problem-grid { grid-template-columns: 1fr; } }

/* ===== Product photos ===== */
.solucao-photo, .tech-photo {
  margin: 0 auto 32px; max-width: 880px; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line); background: var(--bg-3);
}
.solucao-photo img, .tech-photo img { width: 100%; height: auto; display: block; filter: saturate(0.92) contrast(1.04); }
.solucao-photo-caption {
  display: block; padding: 12px 20px; font-family: var(--font-mono); font-size: 11.5px; color: var(--muted);
  background: var(--panel); text-align: center; border-top: 1px solid var(--line);
}

/* ===== Steps (phases) ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; position: relative; }
.steps--phases::before {
  content: ""; position: absolute; top: 20px; left: 16.5%; right: 16.5%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.step-card {
  position: relative; z-index: 1;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; transition: transform .18s ease, border-color .18s ease;
}
.step-card:hover { transform: translateY(-4px); border-color: rgba(79,216,199,0.4); box-shadow: var(--glow-cyan); }
.step-num {
  width: 38px; height: 38px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--amber);
  color: var(--amber); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 600; font-size: 15px;
  margin-bottom: 16px;
}
.step-card h4 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.step-card p { font-size: 14.5px; color: var(--muted); }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } .steps--phases::before { display: none; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ===== Two column ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }
.col-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.col-head .ico { width: 40px; height: 40px; border-radius: 11px; background: var(--cyan-dim); color: var(--cyan); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.col-head .ico.alt { background: var(--amber-dim); color: var(--amber); }
.col-head .ico .icon { width: 19px; height: 19px; }
.col-head h3 { font-size: 19px; font-weight: 600; }

/* ===== Cards grid (diferenciais / tecnologia) ===== */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 8px; }
.diff-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 20px; text-align: left;
  transition: transform .18s ease, border-color .18s ease;
}
.diff-card:hover { transform: translateY(-4px); border-color: rgba(255,138,52,0.4); }
.diff-card .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--amber-dim); color: var(--amber); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.diff-card .ico .icon { width: 21px; height: 21px; }
.diff-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.diff-card p { font-size: 13.5px; color: var(--muted); }
@media (max-width: 900px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cards-grid { grid-template-columns: 1fr; } }

/* ===== Blue ocean Q&A ===== */
.bo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 8px; }
.bo-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.bo-card .q { font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: var(--amber); letter-spacing: .5px; margin-bottom: 12px; }
.bo-card p, .bo-card li { font-size: 14.5px; color: var(--text); }
.bo-card ul { display: flex; flex-direction: column; gap: 8px; }
.bo-card li { display: flex; gap: 10px; align-items: flex-start; }
.bo-card li .icon { width: 14px; height: 14px; color: var(--cyan); flex-shrink: 0; margin-top: 4px; }
@media (max-width: 860px) { .bo-grid { grid-template-columns: 1fr; } }

/* ===== Competitors ===== */
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.comp-card { border-radius: var(--radius); padding: 26px; border: 1px solid var(--line); }
.comp-card.direct { background: var(--amber-dim); border-color: rgba(255,138,52,0.25); }
.comp-card.indirect { background: var(--panel); }
.comp-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.comp-card h4 .icon { width: 16px; height: 16px; color: var(--amber); }
.comp-card ul { display: flex; flex-direction: column; gap: 10px; }
.comp-card li { font-size: 14px; color: var(--muted); padding-left: 16px; position: relative; }
.comp-card li::before { content: "—"; position: absolute; left: 0; color: var(--amber); }
@media (max-width: 760px) { .comp-grid { grid-template-columns: 1fr; } }

/* ===== Economia ===== */
.econ-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.econ-card { border-radius: var(--radius); padding: 30px; border: 1px solid var(--line); }
.econ-card.costs { background: var(--panel); }
.econ-card.solution { background: linear-gradient(155deg, rgba(255,138,52,0.16), rgba(255,138,52,0.04)); border-color: rgba(255,138,52,0.35); }
.econ-label { font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.econ-card.solution .econ-label { color: var(--gold); }
.econ-line { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.econ-line.total { border: none; padding-top: 16px; font-weight: 700; font-size: 16px; }
.econ-big { font-family: var(--font-mono); font-size: 38px; font-weight: 600; margin-bottom: 4px; color: var(--amber); }
.econ-note { font-size: 13.5px; color: var(--muted); }
@media (max-width: 860px) { .econ-grid { grid-template-columns: 1fr; } }

.upside-box { margin-top: 40px; border: 1px dashed var(--line-strong); border-radius: var(--radius); padding: 30px; }
.upside-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.upside-head .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--amber-dim); color: var(--amber); display: flex; align-items: center; justify-content: center; }
.upside-head .ico .icon { width: 20px; height: 20px; }
.upside-head h3 { font-size: 18px; font-weight: 600; }
.upside-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 30px; }
.upside-item { display: flex; gap: 12px; font-size: 14.5px; color: var(--text); }
.upside-item .icon { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; margin-top: 3px; }
.upside-callout { margin-top: 20px; font-size: 13.5px; color: var(--muted); font-style: italic; }
@media (max-width: 760px) { .upside-list { grid-template-columns: 1fr; } }

/* ===== Markets grid ===== */
.markets-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.market-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 14px; text-align: center; transition: border-color .2s ease; }
.market-card:hover { border-color: rgba(79,216,199,0.4); }
.market-card .ico { width: 42px; height: 42px; border-radius: 50%; background: var(--cyan-dim); color: var(--cyan); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.market-card .ico .icon { width: 19px; height: 19px; }
.market-card span { font-size: 13px; font-weight: 600; }
@media (max-width: 760px) { .markets-grid { grid-template-columns: repeat(2, 1fr); } }

.icp-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; margin-top: 28px; }
.icp-card .eyebrow { color: var(--cyan); }
.icp-card .eyebrow::before { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.icp-card p { font-size: 15px; color: var(--text); }
.icp-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.icp-tag { background: var(--cyan-dim); border: 1px solid rgba(79,216,199,0.25); padding: 8px 14px; border-radius: 100px; font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: var(--cyan); }

/* ===== Accordion (PESTAL) ===== */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: none; padding: 22px 4px; text-align: left; color: var(--text);
}
.acc-trigger-left { display: flex; align-items: center; gap: 16px; }
.acc-trigger .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--panel); border: 1px solid var(--line); color: var(--amber); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.acc-trigger .ico .icon { width: 19px; height: 19px; }
.acc-trigger h4 { font-size: 16px; font-weight: 600; }
.acc-trigger .letter { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--amber); }
.acc-trigger .toggle-icon { width: 16px; height: 16px; color: var(--muted); flex-shrink: 0; transition: transform .2s ease; }
.acc-item.open .toggle-icon { transform: rotate(180deg); color: var(--amber); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-item.open .acc-panel { max-height: 600px; }
.acc-panel-inner { padding: 0 4px 26px 72px; display: flex; flex-direction: column; gap: 10px; }
.acc-panel-inner li { font-size: 14.5px; color: var(--muted); display: flex; gap: 10px; }
.acc-panel-inner li::before { content: "→"; color: var(--cyan); flex-shrink: 0; font-family: var(--font-mono); }

/* ===== Future / trends ===== */
.trend-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 40px; }
@media (max-width: 860px) { .trend-grid { grid-template-columns: 1fr; } }
.trend-list { display: flex; flex-direction: column; gap: 6px; }
.trend-list--grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 32px; }
@media (max-width: 640px) { .trend-list--grid { grid-template-columns: 1fr; } }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.badge-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 20px; display: flex; align-items: center; gap: 12px; flex: 1; min-width: 190px; }
.badge-card .ico { width: 34px; height: 34px; border-radius: 8px; background: var(--amber-dim); color: var(--amber); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.badge-card .ico .icon { width: 16px; height: 16px; }
.badge-card strong { display: block; font-size: 13.5px; }
.badge-card span { font-size: 12px; color: var(--muted); }

.vision-panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; position: relative; }
.vision-panel .icon-badge { width: 46px; height: 46px; border-radius: 12px; background: var(--amber-dim); color: var(--amber); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.vision-panel .icon-badge .icon { width: 21px; height: 21px; }
.vision-panel p.lead { font-size: 15.5px; color: var(--text); }
.vision-quote { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--amber); line-height: 1.4; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-item .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--panel); border: 1px solid var(--line); color: var(--amber); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item .ico .icon { width: 19px; height: 19px; }
.contact-item strong { display: block; font-size: 15px; }
.contact-item span { font-family: var(--font-mono); font-size: 13px; color: var(--muted); }

.form-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); padding: 12px 14px;
  font-family: inherit; font-size: 14.5px; background: var(--bg-3); color: var(--text); appearance: none;
}
.form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%238A9099' d='M4 6l4 4 4-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-dim); }
.form-note { margin-top: 14px; font-size: 12.5px; color: var(--muted-2); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.research-form { max-width: 640px; margin: 40px auto 0; }

.research-results { display: none; max-width: 640px; margin: 20px auto 0; opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; }
.research-results.is-shown { display: block; }
.research-results.is-in { opacity: 1; transform: translateY(0); }
.rr-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--text); }
.rr-sub { margin-top: 8px; font-size: 12.5px; line-height: 1.55; color: var(--muted); }
.rr-chart { margin-top: 22px; }
.rr-row { display: flex; align-items: center; gap: 14px; padding: 6px 0; }
.rr-row-label { flex: 0 0 180px; font-size: 12.5px; color: var(--text); display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.rr-row-bar-wrap { flex: 1; height: 20px; position: relative; background: var(--bg-3); border-radius: 4px; }
.rr-row-bar { display: block; height: 20px; width: 0; background: linear-gradient(90deg, var(--cyan), var(--amber)); border-radius: 4px; transition: width 1s cubic-bezier(.16,1,.3,1); }
.rr-row-value { flex: 0 0 34px; text-align: right; font-family: var(--font-mono); font-size: 12.5px; font-weight: 600; color: var(--text); font-variant-numeric: tabular-nums; }
.rr-badge { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: .3px; text-transform: uppercase; color: var(--amber); }
.rr-badge .rr-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.rr-summary { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); line-height: 1.6; }
.rr-summary strong { color: var(--text); }
@media (max-width: 560px) { .rr-row-label { flex-basis: 130px; } }

/* ===== Pain sliders (Roda da Operação) ===== */
.sliders-head { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted-2); margin: 22px 0 4px; }
.slider-row { padding: 14px 0; border-bottom: 1px solid var(--line); }
.slider-row-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.slider-row-head label { font-size: 14px; font-weight: 500; color: var(--text); }
.slider-value { font-size: 13px; font-weight: 600; color: var(--amber); min-width: 20px; text-align: right; }
.slider-row input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--amber) var(--fill, 50%), var(--line) var(--fill, 50%));
  outline: none; cursor: pointer;
}
.slider-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--amber); box-shadow: 0 0 0 4px rgba(255,138,52,0.15);
  cursor: pointer; transition: box-shadow .15s ease;
}
.slider-row input[type="range"]::-webkit-slider-thumb:hover { box-shadow: 0 0 0 6px rgba(255,138,52,0.22); }
.slider-row input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%; background: var(--bg); border: 2px solid var(--amber);
  box-shadow: 0 0 0 4px rgba(255,138,52,0.15); cursor: pointer;
}
.slider-row input[type="range"]::-moz-range-track { height: 4px; border-radius: 2px; background: var(--line); }

/* ===== Wheel (radar) results ===== */
.wheel-wrap { display: flex; flex-direction: column; align-items: center; margin-top: 8px; }
.wheel-svg { width: 100%; max-width: 360px; }
.wheel-svg svg { width: 100%; height: auto; display: block; }
.wheel-legend { display: flex; gap: 22px; margin-top: 10px; flex-wrap: wrap; justify-content: center; }
.wheel-legend-item { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted); }
.wheel-legend-item .sw { width: 14px; height: 3px; border-radius: 2px; }
.sw--you { background: var(--amber); }
.sw--avg { background: repeating-linear-gradient(90deg, var(--cyan) 0 4px, transparent 4px 8px); }

/* ===== Footer ===== */
.site-footer { background: var(--bg-3); color: var(--muted); padding: 64px 0 32px; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand .brand { color: var(--text); }
.footer-brand p { margin-top: 14px; font-size: 13.5px; max-width: 300px; }
.footer-col h5 { font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--text); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; }
.footer-col a:hover { color: var(--amber); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: var(--panel); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.footer-social a .icon { width: 16px; height: 16px; }
.footer-social a:hover { border-color: var(--amber); color: var(--amber); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-family: var(--font-mono); font-size: 11.5px; flex-wrap: wrap; gap: 10px; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Toast ===== */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--panel); border: 1px solid var(--line-strong); color: var(--text); padding: 14px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 600; box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease; z-index: 200; display: flex; align-items: center; gap: 10px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .icon { width: 16px; height: 16px; color: var(--amber); }

@media (max-width: 900px) {
  .section { padding: 64px 0; }
}
