/* =========================================================
   EloVoltz | Energia Solar - folha de estilo principal
   ========================================================= */

:root {
  /* cores */
  --bg:            #070A12;
  --bg-alt:        #0A0E1A;
  --surface:       rgba(255, 255, 255, .035);
  --surface-2:     rgba(255, 255, 255, .06);
  --line:          rgba(255, 255, 255, .09);
  --line-strong:   rgba(255, 255, 255, .16);

  --text:          #EEF1F7;
  --text-soft:     #A7B0C2;
  --text-dim:      #77809A;

  --amber:         #FFC93C;
  --orange:        #FF7A18;
  --amber-soft:    #FFE29A;
  --grad:          linear-gradient(115deg, #FFD75E 0%, #FFA31A 45%, #FF6B18 100%);
  --grad-soft:     linear-gradient(115deg, rgba(255,201,60,.16), rgba(255,122,24,.10));

  /* tipografia */
  --font-display: "Sora", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* medidas */
  --container: 1200px;
  --radius:    18px;
  --radius-lg: 26px;
  --header-h:  76px;

  --ease: cubic-bezier(.22, .68, .28, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

::selection { background: var(--orange); color: #12060a; }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 6px;
}

/* barra de rolagem */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #05070d; }
::-webkit-scrollbar-thumb { background: #23293a; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #333b52; }

/* ---------- utilitários ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.icon {
  width: 20px; height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke-width: inherit;
}

.section { padding: 120px 0; position: relative; }
.section--tight { padding: 72px 0; }
.section--alt { background: var(--bg-alt); }
.section--alt::before,
.section--alt::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.section--alt::before { top: 0; }
.section--alt::after { bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.05rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  color: var(--text-soft);
  max-width: 62ch;
}
.lead--center { margin-inline: auto; text-align: center; }

.muted { color: var(--text-dim); margin-top: 16px; max-width: 60ch; }

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ---------- botões ---------- */
.btn {
  --btn-bg: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s, background-color .3s, color .3s;
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad);
  color: #170A02;
  box-shadow: 0 10px 30px -12px rgba(255, 138, 24, .85);
}
.btn--primary::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, #FFE9A8, #FF9B2E 60%, #FF7A18);
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: -1;
}
.btn--primary:hover::after { opacity: 1; }
.btn--primary:hover { box-shadow: 0 18px 42px -14px rgba(255, 138, 24, .95); }
.btn--primary:hover .icon { transform: translateX(3px); }

.btn--ghost {
  background: var(--surface);
  border-color: var(--line-strong);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: var(--surface-2); border-color: var(--amber); color: #fff; }

.btn--lg { padding: 17px 30px; font-size: 1rem; }
.btn--sm { padding: 11px 18px; font-size: .86rem; }
.btn--block { width: 100%; }

/* ---------- barra de progresso ---------- */
.scroll-progress {
  position: fixed; inset: 0 0 auto 0;
  height: 3px;
  z-index: 120;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(255, 150, 30, .8);
  transition: width .1s linear;
}

/* ---------- header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease), backdrop-filter .4s, border-color .4s, height .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  height: 64px;
  background: rgba(7, 10, 18, .82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 38px; height: 38px; display: block; }
.brand__mark svg { width: 100%; height: 100%; animation: spinSlow 24s linear infinite; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.brand__text small {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@keyframes spinSlow { to { transform: rotate(360deg); } }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative;
  padding: 9px 14px;
  font-size: .93rem;
  color: var(--text-soft);
  border-radius: 999px;
  transition: color .3s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--text); }
.nav__cta { margin-left: 10px; }

.burger { display: none; width: 42px; height: 42px; place-items: center; border-radius: 12px; border: 1px solid var(--line); }
.burger .icon { width: 22px; height: 22px; }
.burger__close { display: none; }
.burger.is-open .burger__open { display: none; }
.burger.is-open .burger__close { display: block; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 90px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__glow {
  position: absolute;
  top: -18%; right: -8%;
  width: 780px; height: 780px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 160, 30, .30), rgba(255, 110, 20, .12) 42%, transparent 68%);
  filter: blur(10px);
  will-change: transform;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 20%, transparent 78%);
}
.hero__beam {
  position: absolute;
  width: 1px; height: 46%;
  background: linear-gradient(180deg, transparent, rgba(255, 190, 90, .55), transparent);
  animation: beam 6.5s ease-in-out infinite;
}
.hero__beam--1 { left: 18%; top: -10%; animation-delay: .4s; }
.hero__beam--2 { left: 72%; top: -20%; animation-delay: 2.6s; }
@keyframes beam {
  0%   { transform: translateY(-40%); opacity: 0; }
  25%  { opacity: 1; }
  100% { transform: translateY(230%); opacity: 0; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  font-size: .82rem;
  color: var(--text-soft);
  letter-spacing: .04em;
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
}
.tag__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(255, 201, 60, .6);
  animation: ping 2.4s ease-out infinite;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(255, 201, 60, .55); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 201, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 201, 60, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.035em;
  margin-bottom: 24px;
}
.hero__title .word { display: inline-block; overflow: hidden; vertical-align: top; }
.hero__title .word > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform .95s var(--ease), opacity .8s var(--ease);
}
.hero__title.is-in .word > span { transform: translateY(0); opacity: 1; }
.hero__title .word:nth-last-child(-n+3) > span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__text { font-size: clamp(1.02rem, 1.7vw, 1.18rem); color: var(--text-soft); max-width: 56ch; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 30px; }

.hero__proof { display: grid; gap: 10px; }
.hero__proof li {
  display: flex; align-items: center; gap: 10px;
  font-size: .93rem;
  color: var(--text-dim);
}
.hero__proof .icon { width: 17px; height: 17px; color: var(--amber); stroke-width: 2.4; }

/* mostrador do hero */
.hero__visual { position: relative; display: grid; place-items: center; min-height: 420px; }
.dial {
  position: relative;
  width: min(430px, 82vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  will-change: transform;
  container-type: inline-size;
}
.dial__svg { width: 100%; height: 100%; }
.dial__ring { fill: none; stroke: rgba(255,255,255,.07); stroke-width: 1; }
.dial__ring--faint { stroke: rgba(255,255,255,.045); stroke-dasharray: 3 7; animation: spinSlow 60s linear infinite; transform-origin: 160px 160px; }
.dial__track { fill: none; stroke: rgba(255,255,255,.06); stroke-width: 10; }
.dial__arc {
  fill: none;
  stroke: url(#arcGrad);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 829;
  stroke-dashoffset: 829;
  transform: rotate(-90deg);
  transform-origin: 160px 160px;
  transition: stroke-dashoffset 2.4s var(--ease);
  filter: drop-shadow(0 0 14px rgba(255, 150, 30, .45));
}
.dial__core { filter: drop-shadow(0 0 34px rgba(255, 150, 30, .55)); animation: pulseCore 5s ease-in-out infinite; transform-origin: 160px 160px; }
@keyframes pulseCore { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.dial__rays path {
  stroke: rgba(255, 190, 90, .45);
  stroke-width: 2;
  stroke-linecap: round;
  animation: spinSlow 90s linear infinite reverse;
  transform-origin: 160px 160px;
}
/* valor centralizado dentro do núcleo luminoso */
.dial__value {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 13cqw;
  font-weight: 800;
  color: #1a0d02;
  letter-spacing: -.03em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .28);
  pointer-events: none;
  white-space: nowrap;
}
/* legenda no anel escuro, fora do núcleo */
.dial__caption {
  position: absolute;
  top: 70%; left: 50%;
  transform: translateX(-50%);
  width: 52cqw;
  text-align: center;
  font-size: 3.3cqw;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  line-height: 1.5;
  pointer-events: none;
}

/* fallback para navegadores sem container queries */
@supports not (container-type: inline-size) {
  .dial__value { font-size: clamp(1.8rem, 8vw, 3.2rem); }
  .dial__caption { font-size: .68rem; width: 220px; }
}

.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: rgba(12, 16, 27, .78);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px -30px rgba(0,0,0,.9);
  animation: floaty 7s ease-in-out infinite;
  will-change: transform;
}
.float-card .icon { color: var(--amber); width: 22px; height: 22px; }
.float-card strong { display: block; font-family: var(--font-display); font-size: .93rem; }
.float-card span { font-size: .78rem; color: var(--text-dim); }
.float-card--a { top: 6%; left: -4%; animation-delay: .2s; }
.float-card--b { bottom: -4%; right: -6%; animation-delay: 1.8s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero__scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  display: grid; place-items: center; gap: 8px;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-dim);
  z-index: 2;
  transition: color .3s;
}
.hero__scroll:hover { color: var(--text); }
.hero__mouse {
  width: 24px; height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  display: grid;
  justify-items: center;
  padding-top: 7px;
}
.hero__mouse i {
  width: 3px; height: 7px;
  border-radius: 2px;
  background: var(--amber);
  animation: wheel 1.9s ease-in-out infinite;
}
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(13px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-alt);
  overflow: hidden;
  padding: 18px 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.marquee__sep {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .7;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- números ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: border-color .4s, transform .5s var(--ease);
}
.stat::after {
  content: "";
  position: absolute; inset: auto 0 0 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease);
}
.stat:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.stat:hover::after { transform: scaleX(1); }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.05;
}
.stat__label { font-size: .9rem; color: var(--text-dim); }

/* ---------- sobre ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: .86rem;
  color: var(--text-soft);
}
.pill .icon { width: 16px; height: 16px; color: var(--amber); }

.about-art {
  position: relative;
  aspect-ratio: 4 / 3.4;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 90% at 70% 0%, rgba(255,160,30,.15), transparent 60%),
    linear-gradient(180deg, #0C1120, #080B14);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .4s var(--ease);
}
.panel-scene { position: absolute; inset: 0; display: grid; place-items: center; }
.panel-scene__sun {
  position: absolute;
  top: 12%; right: 16%;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #FFE9A8, #FF8A1F 65%, #FF6B18);
  box-shadow: 0 0 70px 18px rgba(255, 140, 30, .38);
  animation: pulseCore 6s ease-in-out infinite;
}
.panel-scene__board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  width: 62%;
  padding: 10px;
  border-radius: 8px;
  background: #0F1526;
  border: 1px solid rgba(255,255,255,.12);
  transform: perspective(900px) rotateX(52deg) rotateZ(-18deg) translateY(22%);
  box-shadow: 0 60px 80px -50px rgba(0,0,0,1);
}
.panel-scene__board span {
  aspect-ratio: 1 / 1.35;
  border-radius: 3px;
  background: linear-gradient(140deg, #16305A, #0E1D3A 55%, #1B3C6B);
  border: 1px solid rgba(120, 170, 255, .18);
  position: relative;
  overflow: hidden;
}
.panel-scene__board span::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 220, 150, .55) 48%, transparent 62%);
  transform: translateX(-140%);
  animation: shine 5.5s ease-in-out infinite;
}
.panel-scene__board span:nth-child(2)::after  { animation-delay: .25s; }
.panel-scene__board span:nth-child(3)::after  { animation-delay: .5s; }
.panel-scene__board span:nth-child(4)::after  { animation-delay: .75s; }
.panel-scene__board span:nth-child(5)::after  { animation-delay: .35s; }
.panel-scene__board span:nth-child(6)::after  { animation-delay: .6s; }
.panel-scene__board span:nth-child(7)::after  { animation-delay: .85s; }
.panel-scene__board span:nth-child(8)::after  { animation-delay: 1.1s; }
.panel-scene__board span:nth-child(9)::after  { animation-delay: .45s; }
.panel-scene__board span:nth-child(10)::after { animation-delay: .7s; }
.panel-scene__board span:nth-child(11)::after { animation-delay: .95s; }
.panel-scene__board span:nth-child(12)::after { animation-delay: 1.2s; }
@keyframes shine { 0% { transform: translateX(-140%); } 45%, 100% { transform: translateX(180%); } }

.panel-scene__flow { position: absolute; bottom: 14%; left: 0; right: 0; height: 2px; }
.panel-scene__flow i {
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  animation: flow 3.4s linear infinite;
}
.panel-scene__flow i:nth-child(2) { animation-delay: 1.1s; }
.panel-scene__flow i:nth-child(3) { animation-delay: 2.2s; }
@keyframes flow { 0% { transform: translateX(-10%); opacity: 0; } 20% { opacity: 1; } 100% { transform: translateX(760%); opacity: 0; } }

.about-art__badge {
  position: absolute;
  left: 22px; bottom: 22px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(8, 11, 20, .82);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
}
.about-art__badge strong { display: block; font-family: var(--font-display); font-size: .98rem; }
.about-art__badge span { font-size: .78rem; color: var(--text-dim); }

/* ---------- cards de serviço ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  padding: 34px 30px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  transition: transform .45s var(--ease), border-color .4s, background-color .4s;
  transform-style: preserve-3d;
}
.card:hover { border-color: var(--line-strong); background: var(--surface-2); }
.card__glow {
  position: absolute;
  top: -60%; left: -20%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255, 160, 30, .22), transparent 70%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.card:hover .card__glow { opacity: 1; }
.card__icon {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--grad-soft);
  border: 1px solid rgba(255, 190, 90, .22);
  color: var(--amber);
  margin-bottom: 20px;
  transition: transform .45s var(--ease);
}
.card__icon .icon { width: 24px; height: 24px; }
.card:hover .card__icon { transform: translateY(-3px) rotate(-6deg); }
.card h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.card p { color: var(--text-dim); font-size: .95rem; }

/* ---------- linha do tempo ---------- */
.timeline { position: relative; display: grid; gap: 8px; max-width: 900px; margin-inline: auto; }
.timeline__line {
  position: absolute;
  left: 33px; top: 26px; bottom: 26px;
  width: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.timeline__line i {
  display: block;
  width: 100%;
  height: 0;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(255, 150, 30, .6);
  transition: height .2s linear;
}
.tl {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
}
.tl__num {
  position: relative;
  z-index: 1;
  display: grid; place-items: center;
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-dim);
  transition: color .4s, border-color .4s, background-color .4s, box-shadow .4s;
}
.tl.is-in .tl__num {
  color: #170A02;
  border-color: transparent;
  background: var(--grad);
  box-shadow: 0 0 0 6px rgba(255, 150, 30, .10);
}
.tl__body { padding-top: 10px; }
.tl__body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.tl__body p { color: var(--text-dim); max-width: 62ch; }

/* ---------- showcase (sticky) ---------- */
.showcase__inner {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 80px;
  align-items: start;
}
.showcase__sticky { position: sticky; top: calc(var(--header-h) + 50px); }
.showcase__visual {
  position: relative;
  margin: 40px 0 24px;
  width: 220px; height: 220px;
  display: grid; place-items: center;
}
.showcase__ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: radial-gradient(circle at 50% 40%, rgba(255,160,30,.14), transparent 65%);
}
.showcase__ring::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--amber);
  animation: spinSlow 8s linear infinite;
}
.showcase__icon {
  display: grid; place-items: center;
  width: 96px; height: 96px;
  border-radius: 28px;
  background: var(--grad);
  color: #170A02;
  box-shadow: 0 20px 50px -22px rgba(255, 140, 30, .9);
  transition: transform .5s var(--ease), opacity .35s;
}
.showcase__icon .icon { width: 42px; height: 42px; stroke-width: 1.5; }
.showcase__icon.is-swapping { transform: scale(.82) rotate(-10deg); opacity: 0; }
.showcase__counter {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--text-dim);
  letter-spacing: .1em;
}
.showcase__counter span { color: var(--amber); font-size: 1.6rem; font-weight: 700; }
.showcase__counter i { width: 46px; height: 1px; background: var(--line-strong); display: block; }

.showcase__list { display: grid; gap: 18px; }
.showcase__item {
  padding: 34px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color .45s, background-color .45s, transform .45s var(--ease), opacity .45s;
  opacity: .55;
}
.showcase__item.is-active {
  opacity: 1;
  border-color: rgba(255, 190, 90, .35);
  background: var(--grad-soft);
  transform: translateX(6px);
}
.showcase__item h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.showcase__item p { color: var(--text-soft); }

/* ---------- simulador ---------- */
.sim {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #0C1120, #080B14);
}
.sim__control { padding: 46px 44px; border-right: 1px solid var(--line); }
.sim__label {
  display: block;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.sim__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 22px;
}

.sim__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--orange) var(--fill, 10%), rgba(255,255,255,.08) var(--fill, 10%));
  outline: none;
  cursor: pointer;
}
.sim__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--orange);
  box-shadow: 0 6px 18px -6px rgba(255, 140, 30, .9);
  cursor: grab;
  transition: transform .2s var(--ease);
}
.sim__range::-webkit-slider-thumb:active { transform: scale(1.15); cursor: grabbing; }
.sim__range::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--orange);
  cursor: grab;
}
.sim__scale {
  display: flex; justify-content: space-between;
  font-size: .78rem;
  color: var(--text-dim);
  margin-top: 10px;
}

.sim__type { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.chip {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: .88rem;
  color: var(--text-soft);
  transition: all .3s var(--ease);
}
.chip:hover { border-color: var(--line-strong); color: var(--text); }
.chip.is-active {
  background: var(--grad);
  color: #170A02;
  border-color: transparent;
  font-weight: 600;
}

.sim__results { padding: 46px 44px; display: grid; align-content: start; gap: 18px; }
.sim__result {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}
.sim__result--main {
  background: var(--grad-soft);
  border-color: rgba(255, 190, 90, .3);
  text-align: center;
  padding: 28px 22px;
}
.sim__result-label {
  display: block;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.sim__result strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.sim__result-num {
  font-size: clamp(1.9rem, 4vw, 2.6rem) !important;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sim__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sim__disclaimer { font-size: .76rem; color: var(--text-dim); line-height: 1.55; }

/* ---------- depoimentos ---------- */
.slider { max-width: 900px; margin-inline: auto; }
.slider__viewport { overflow: hidden; border-radius: var(--radius-lg); }
.slider__track { display: flex; transition: transform .7s var(--ease); }
.quote {
  flex: 0 0 100%;
  padding: 48px 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  position: relative;
}
.quote__mark { width: 40px; height: 40px; color: rgba(255, 170, 50, .3); margin-bottom: 18px; }
.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.42rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -.01em;
  margin-bottom: 26px;
}
.quote footer { display: grid; gap: 2px; }
.quote footer strong { font-size: .96rem; }
.quote footer span { font-size: .84rem; color: var(--text-dim); }

.slider__nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 28px; }
.slider__btn {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--text-soft);
  transition: all .3s var(--ease);
}
.slider__btn:hover { background: var(--grad); color: #170A02; border-color: transparent; transform: translateY(-2px); }
.slider__dots { display: flex; gap: 8px; }
.slider__dots button {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--line-strong);
  transition: all .35s var(--ease);
}
.slider__dots button.is-active { width: 26px; background: var(--grad); }

/* ---------- FAQ ---------- */
.grid-2--faq { align-items: start; gap: 60px; }
.faq__intro { position: sticky; top: calc(var(--header-h) + 50px); }
.faq__intro .btn { margin-top: 26px; }
.faq { display: grid; gap: 12px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .35s, background-color .35s;
}
.faq__item[open] { border-color: rgba(255, 190, 90, .3); background: var(--surface-2); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color .3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 12px; height: 12px;
  border-right: 2px solid var(--amber);
  border-bottom: 2px solid var(--amber);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform .35s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.faq__item summary:hover { color: var(--amber-soft); }
.faq__answer { padding: 0 24px 24px; color: var(--text-dim); }
.faq__answer p { max-width: 62ch; }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: 130px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
}
.cta__glow {
  position: absolute;
  bottom: -50%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(255, 150, 30, .20), transparent 62%);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; max-width: 800px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }

/* ---------- rodapé ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg); padding-top: 72px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 1fr;
  gap: 44px;
  padding-bottom: 56px;
}
.footer__slogan { color: var(--text-dim); font-size: .93rem; margin-top: 18px; max-width: 34ch; }
.social { display: flex; gap: 10px; margin-top: 22px; }
.social a {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--text-soft);
  transition: all .35s var(--ease);
}
.social a:hover { background: var(--grad); color: #170A02; border-color: transparent; transform: translateY(-3px); }

.footer__col h3 {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}
.footer__col a,
.footer__col p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-dim);
  font-size: .92rem;
  padding: 7px 0;
  transition: color .3s;
}
.footer__col a:hover { color: var(--amber); }
.footer__col .icon { width: 17px; height: 17px; margin-top: 3px; color: var(--orange); }
.footer__hours strong { color: var(--text-soft); font-weight: 600; }
.footer__hours--off { padding-left: 27px; font-size: .84rem; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  /* espaço extra para não passar por baixo dos botões flutuantes */
  padding: 24px 0 96px;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: .84rem;
}

/* ---------- flutuantes ---------- */
.wa-float {
  position: fixed;
  left: 24px; bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 15px;
  border-radius: 999px;
  background: #1FAF54;
  color: #fff;
  box-shadow: 0 16px 40px -14px rgba(31, 175, 84, .85);
  transition: gap .4s var(--ease), padding .4s var(--ease), transform .35s var(--ease);
  overflow: hidden;
}
.wa-float .icon { width: 26px; height: 26px; }
.wa-float span {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  transition: max-width .45s var(--ease), opacity .3s;
}
.wa-float:hover { gap: 10px; padding-right: 24px; transform: translateY(-3px); }
.wa-float:hover span { max-width: 160px; opacity: 1; }

.to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 90;
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(12, 16, 27, .85);
  color: var(--text-soft);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .4s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--grad); color: #170A02; border-color: transparent; }

/* ---------- animações de scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
[data-reveal="scale"] { transform: translateY(28px) scale(.965); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- responsivo ---------- */
@media (max-width: 1080px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .showcase__inner { gap: 48px; }
}

@media (max-width: 960px) {
  .section { padding: 92px 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .dial { width: min(340px, 74vw); }

  /* cards saem de cima do mostrador e viram uma linha abaixo dele */
  .hero__visual {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .float-card {
    position: static;
    animation: none;
    width: 100%;
    max-width: 420px;
    transform: none !important; /* neutraliza o parallax aplicado via JS */
  }
  .hero__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }
  .hero__cards .float-card { flex: 1 1 220px; width: auto; }
  .grid-2 { grid-template-columns: 1fr; gap: 46px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .showcase__inner { grid-template-columns: 1fr; }
  .showcase__sticky { position: static; }
  .showcase__visual { margin-inline: auto; }
  .showcase__counter { justify-content: center; }
  .showcase__item { opacity: 1; }
  .faq__intro { position: static; }
  .sim { grid-template-columns: 1fr; }
  .sim__control { border-right: 0; border-bottom: 1px solid var(--line); }

  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: calc(var(--header-h) + 20px) 24px 32px;
    background: rgba(7, 10, 18, .97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-102%);
    transition: transform .55s var(--ease);
    max-height: 100svh;
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link { padding: 15px 6px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
  .nav__cta { margin: 18px 0 0; justify-content: center; }
  .burger { display: grid; z-index: 2; }
}

@media (max-width: 640px) {
  .container { padding-inline: 18px; }
  .section { padding: 76px 0; }
  .section-head { margin-bottom: 44px; }
  .stats { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .sim__control, .sim__results { padding: 30px 22px; }
  .sim__grid { grid-template-columns: 1fr; }
  .quote { padding: 32px 26px; }
  .tl { grid-template-columns: 52px 1fr; gap: 16px; }
  .tl__num { width: 52px; height: 52px; font-size: .9rem; }
  .timeline__line { left: 25px; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .cta__actions .btn { width: 100%; }
  .float-card { padding: 12px 16px; }
  .wa-float span { display: none; }
  .to-top { right: 18px; bottom: 18px; }
  .wa-float { left: 18px; bottom: 18px; }
}

/* ---------- acessibilidade: menos movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__title .word > span { transform: none; opacity: 1; }
}

/* ---------- impressão ---------- */
@media print {
  .header, .wa-float, .to-top, .scroll-progress, .hero__scroll, .marquee { display: none !important; }
  body { background: #fff; color: #000; }
}
