/* ── RESET ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ── TOKENS ───────────────────────────────── */
:root {
  --black:        #000000;
  --dark:         #0d0d12;
  --dark-2:       #111118;
  --dark-3:       #17171f;
  --dark-4:       #1e1e28;
  --silver-dim:   #868da4;
  --silver-mid:   #a8aec3;
  --silver:       #c0c5d8;
  --silver-bright:#d8dce9;
  --white:        #f0f0f7;
  --grad-silver:  linear-gradient(120deg, #a8aec3 0%, #d8dce9 45%, #b8bdd2 100%);
  --grad-card:    linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
  --border:       rgba(173,178,200,0.09);
  --border-hover: rgba(173,178,200,0.18);
  --glow:         0 0 60px rgba(173,178,200,0.07);
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --f-display: 'Outfit', sans-serif;
  --f-body:    'Plus Jakarta Sans', sans-serif;
  --ease: cubic-bezier(.25,.46,.45,.94);
}

/* ── BASE ─────────────────────────────────── */
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--silver-dim) var(--black);
}
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--silver-dim); border-radius: 3px; }

html { overflow-x: hidden; }
body {
  font-family: var(--f-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  cursor: none;
}

/* grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9997;
}

.container { max-width: 1260px; margin: 0 auto; padding: 0 2rem; }

/* ── CURSOR ───────────────────────────────── */
#cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--silver-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: difference;
}
#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(173,178,200,.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .12s var(--ease), width .3s, height .3s, border-color .3s;
}
body.cursor-hover #cursor-dot { width: 12px; height: 12px; }
body.cursor-hover #cursor-ring { width: 52px; height: 52px; border-color: rgba(173,178,200,.3); }

/* ── HEADER ───────────────────────────────── */
.hdr {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
}
.hdr__bg {
  position: absolute; inset: 0;
  background: transparent;
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background .5s, backdrop-filter .5s, border-color .5s;
}
.hdr.scrolled .hdr__bg {
  background: rgba(7,7,10,.82);
  backdrop-filter: blur(24px) saturate(1.4);
  border-color: var(--border);
}
.hdr__inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.hdr__logo { display: flex; align-items: center; }
.hdr__logo-img { height: 38px; width: auto; }
.hdr__nav-list { display: flex; align-items: center; gap: .15rem; }
.hdr__link {
  font-size: .8rem; font-weight: 400;
  color: var(--silver-mid);
  padding: .45rem .85rem;
  border-radius: 100px;
  transition: color .3s;
  letter-spacing: .01em;
}
.hdr__link:hover { color: var(--white); }
.hdr__link[aria-current="page"] { color: var(--white); }
.hdr__link--cta {
  color: var(--white);
  background: rgba(238,239,245,.07);
  border: 1px solid rgba(238,239,245,.11);
  margin-left: .4rem;
}
.hdr__link--cta:hover { background: rgba(238,239,245,.13); border-color: rgba(238,239,245,.22); }
.hdr__link--cta[aria-current="page"] { background: rgba(238,239,245,.13); border-color: rgba(238,239,245,.22); }

.hdr__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.hdr__burger-bar { display: block; width: 22px; height: 1px; background: var(--white); transition: .4s var(--ease); }
.hdr__burger[aria-expanded="true"] .hdr__burger-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hdr__burger[aria-expanded="true"] .hdr__burger-bar:nth-child(2) { opacity: 0; }
.hdr__burger[aria-expanded="true"] .hdr__burger-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hdr__mobile {
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(7,7,10,.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0 1.25rem;
  display: none;
}
.hdr__mobile.open { display: block; }
.hdr__mobile-link {
  display: block; padding: .75rem 2rem;
  font-size: .88rem; color: var(--silver-mid);
  transition: color .3s;
}
.hdr__mobile-link:hover { color: var(--white); }
.hdr__mobile-link[aria-current="page"] { color: var(--white); }

/* ── HERO ─────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero__ghost {
  position: absolute; left: 0; top: 0;
  transform: translate(-50%, -50%);
  width: clamp(300px, 42vw, 640px);
  opacity: .065;
  filter: blur(1px);
  pointer-events: none;
  will-change: transform;
}

.hero__content {
  position: relative; z-index: 2;
  padding-top: 70px;
  width: 100%;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--silver-mid);
  background: rgba(173,178,200,.06);
  border: 1px solid rgba(173,178,200,.11);
  padding: .45rem .95rem; border-radius: 100px;
  margin-bottom: 2.2rem;
}
.hero__badge-dot {
  width: 5px; height: 5px;
  background: var(--silver);
  border-radius: 50%;
  animation: blink 2.5s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero__eyeline {
  font-size: .7rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--silver-dim);
  display: block; margin-bottom: .8rem;
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 8vw, 8.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
  color: var(--white);
  margin-bottom: 2rem;
  padding-bottom: .08em;
}
.hero__title .silver {
  display: block;
  background: linear-gradient(105deg,
    #8a90a8 0%, #8a90a8 22%,
    #dce1ef 42%, #f8f9fd 50%, #dce1ef 58%,
    #8a90a8 78%, #8a90a8 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3.8s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { background-position: 120% center; }
  100% { background-position: -120% center; }
}

.hero__sub {
  font-size: .95rem; color: var(--silver-mid);
  max-width: 420px; line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-bottom: 3.5rem;
}

.hero__scroll {
  display: inline-flex; align-items: center; gap: .9rem;
  font-size: .67rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--silver-dim);
}
.hero__scroll-line {
  width: 44px; height: 1px;
  background: var(--silver-dim);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--silver);
  transform: translateX(-100%);
  animation: scrollSlide 2.4s ease infinite;
}
@keyframes scrollSlide { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }

.hero__tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 2.5rem; }
.hero__tag {
  font-size: .67rem; letter-spacing: .07em;
  color: var(--silver-dim);
  background: rgba(173,178,200,.04);
  border: 1px solid rgba(173,178,200,.07);
  padding: .3rem .75rem; border-radius: 100px;
}

/* ── TICKER ───────────────────────────────── */
.ticker {
  clip-path: inset(0);
  padding: 1.1rem 0 1.4rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(173,178,200,.015);
}
.ticker__track {
  display: flex; gap: 2.5rem;
  animation: tickerRoll 28s linear infinite;
  width: max-content;
  align-items: center;
}
.ticker__track span {
  font-family: var(--f-display);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--silver-dim); white-space: nowrap;
  line-height: 2;
  display: inline-block;
}
.ticker__sep { color: rgba(173,178,200,.2); align-self: center; font-size: .5rem; }
@keyframes tickerRoll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── STATS ────────────────────────────────── */
.stats { padding: 5rem 0; }
.stats__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: visible;
  clip-path: inset(0 round var(--r-lg));
}
.stat {
  padding: 2.5rem 1.75rem; text-align: center;
  border-right: 1px solid var(--border);
  transition: background .4s;
  position: relative;
}
.stat:last-child { border-right: none; }
.stat::before {
  content: '';
  position: absolute; top: 0; left: 50%; right: 50%;
  height: 1px;
  background: var(--grad-silver);
  transition: left .5s, right .5s;
}
.stat:hover::before { left: 0; right: 0; }
.stat:hover { background: rgba(173,178,200,.03); }
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(2.4rem,4vw,3.4rem);
  font-weight: 800; letter-spacing: -.02em;
  background: var(--grad-silver);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; display: block; margin-bottom: .45rem;
}
.stat__label { font-size: .76rem; color: var(--silver-dim); letter-spacing: .03em; }

/* ── SECTION LABELS ───────────────────────── */
.sec-label {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--silver-mid); margin-bottom: 1.2rem;
}
.sec-label::before {
  content: '';
  display: block; width: 22px; height: 1px;
  background: var(--silver-mid);
}
.sec-title {
  font-family: var(--f-display);
  font-size: clamp(2rem,4vw,3.4rem);
  font-weight: 800; line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--white);
  overflow: visible;
}
.sec-title .g {
  background: var(--grad-silver);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SERVICES ─────────────────────────────── */
.services { padding: 8rem 0; }
.services__head {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 4.5rem;
  gap: 2rem; flex-wrap: wrap;
}
.services__tagline {
  font-size: .88rem; color: var(--silver-dim);
  max-width: 280px; text-align: right; line-height: 1.6;
}

.svc-list { border-top: 1px solid var(--border); }
.svc-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center; gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  position: relative; cursor: none;
  transition: padding .4s var(--ease);
}
.svc-item::before {
  content: '';
  position: absolute; inset: 0 -2rem;
  background: rgba(173,178,200,.025);
  opacity: 0;
  border-radius: var(--r-sm);
  transition: opacity .4s;
}
.svc-item:hover::before { opacity: 1; }
.svc-item:hover { padding-left: .5rem; }

.svc-num {
  font-family: var(--f-display);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; color: var(--silver-dim);
}
.svc-body { flex: 1; }
.svc-title {
  font-family: var(--f-display);
  font-size: clamp(1.2rem,2.4vw,1.9rem);
  font-weight: 700; letter-spacing: -.015em;
  color: var(--white); margin-bottom: .35rem;
  transition: color .3s;
}
.svc-item:hover .svc-title {
  background: var(--grad-silver);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.svc-desc {
  font-size: .83rem; color: var(--silver-dim);
  max-width: 460px; line-height: 1.65;
}
.svc-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(173,178,200,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver-mid);
  transition: .4s var(--ease);
  flex-shrink: 0;
}
.svc-item:hover .svc-arrow {
  border-color: var(--silver);
  color: var(--white);
  background: rgba(173,178,200,.08);
  transform: rotate(-45deg);
}
.svc-arrow svg { width: 15px; height: 15px; }

/* ── DIFERENCIAIS (por que a CRIIDEN) ────── */
.diferenciais { margin-top: 6rem; padding-top: 5rem; border-top: 1px solid var(--border); }
.diferenciais__head { margin-bottom: 2.5rem; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.diff-card {
  background: rgba(173,178,200,.03);
  border: 1px solid rgba(173,178,200,.08);
  border-radius: 1.25rem;
  padding: 2rem 1.6rem 1.8rem;
  transition: background .3s, border-color .3s;
}
.diff-card:hover {
  background: rgba(173,178,200,.065);
  border-color: rgba(173,178,200,.2);
}
.diff-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(173,178,200,.08);
  border: 1px solid rgba(173,178,200,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.diff-card__icon svg {
  width: 20px; height: 20px;
  stroke: var(--silver-bright); fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.diff-card__title {
  font-family: var(--f-display);
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: .5rem; line-height: 1.3;
}
.diff-card__desc {
  font-size: .84rem; color: var(--silver-dim); line-height: 1.72;
}

/* ── PROCESS ──────────────────────────────── */
.process {
  padding: 10rem 0 9rem;
  background: var(--black);
  position: relative;
  clip-path: polygon(0 2.5%, 100% 0, 100% 97.5%, 0 100%);
  margin: 1.5rem 0;
}
/* process slider */
.process__slider-wrap { overflow: hidden; position: relative; margin-top: 4rem; }
.process__grid {
  display: flex;
  transition: transform .65s var(--ease);
  will-change: transform;
}
.process-card {
  min-width: 100%; flex-shrink: 0;
  background: rgba(173,178,200,.028);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 4rem 3.5rem;
  position: relative;
  transition: border-color .4s;
  min-height: 380px;
}
.process-card__content {
  max-width: 60%;
  position: relative;
  z-index: 1;
}
.process-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--grad-silver);
  opacity: .55;
}
.process-card__ghost-num {
  font-family: var(--f-display);
  font-size: 6rem; font-weight: 800;
  letter-spacing: -.06em; line-height: 1;
  background: var(--grad-silver);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .12; margin-bottom: .75rem;
  display: block;
}
.process-card__title {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700;
  letter-spacing: -.02em; line-height: 1.25;
  color: var(--white); margin-bottom: 1rem;
}
.process-card__desc {
  font-size: .95rem; color: var(--silver-mid); line-height: 1.82;
  word-break: break-word; overflow-wrap: break-word;
}
.process-card__detail {
  font-size: .88rem; color: var(--silver-dim); line-height: 1.85;
  margin-top: .9rem;
  padding-top: .9rem;
  border-top: 1px solid var(--border);
  word-break: break-word; overflow-wrap: break-word;
}
.process-card__art {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 280px; height: 240px;
  opacity: .75;
  pointer-events: none;
  z-index: 0;
}
.process-card__art svg { width: 100%; height: 100%; }
.process__nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 2rem;
}
.process__dots { display: flex; gap: .55rem; }
.process__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(173,178,200,.2); border: none; padding: 0;
  cursor: none; transition: background .35s, transform .35s;
}
.process__dot.active { background: var(--silver); transform: scale(1.35); }
.process__arrows { display: flex; gap: .65rem; }
.process__arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: none; border: 1px solid var(--border-hover);
  color: var(--silver-mid); cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: .3s var(--ease);
}
.process__arrow:hover { border-color: var(--silver); color: var(--white); background: rgba(173,178,200,.06); }
.process__arrow svg { width: 16px; height: 16px; }

/* ── PORTFOLIO ────────────────────────────── */
.portfolio { padding: 8rem 0; }
.portfolio__head {
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; margin-bottom: 3.5rem; gap: 2rem;
}
.portfolio__note {
  font-size: .85rem; color: var(--silver-dim);
  max-width: 260px; text-align: right; line-height: 1.6;
}
.portfolio__intro {
  font-size: .96rem;
  color: var(--silver-mid);
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 4rem;
}

/* portfolio grid */
.portfolio__slider-wrap { position: relative; }
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 860px) { .portfolio__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .portfolio__grid { grid-template-columns: 1fr; } }
.pcard {
  aspect-ratio: 4 / 3;
  position: relative; overflow: hidden;
  border-radius: var(--r-md); background: var(--dark-3);
  border: 1px solid var(--border); transition: .5s var(--ease);
  cursor: none;
}
/* cover link torna o card inteiro clicável */
.pcard__cover-link {
  position: absolute; inset: 0; z-index: 2;
  cursor: none;
}

.pcard__img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.pcard:hover .pcard__img { transform: scale(1.06); }
.pcard__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,7,10,.92) 0%, rgba(7,7,10,.35) 55%, transparent 100%);
  opacity: 0; transition: opacity .4s;
  display: flex; align-items: flex-end; padding: 1.5rem;
  flex-direction: column; justify-content: flex-end;
}
.pcard:hover .pcard__overlay { opacity: 1; }
.pcard__name {
  font-family: var(--f-display);
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: .2rem;
  letter-spacing: -.015em; width: 100%;
}
.pcard__url { font-size: .72rem; color: var(--silver-mid); margin-bottom: .8rem; }
.pcard__btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .76rem; font-weight: 500;
  color: var(--white);
  background: rgba(238,239,245,.1);
  border: 1px solid rgba(238,239,245,.18);
  padding: .5rem 1rem; border-radius: 100px;
  backdrop-filter: blur(10px);
  transition: background .3s;
}
.pcard__btn:hover { background: rgba(238,239,245,.18); }

/* ── ABOUT ────────────────────────────────── */
.about { padding: 8rem 0; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

.about__quote {
  font-family: var(--f-display);
  font-size: clamp(1.7rem,2.8vw,2.6rem);
  font-weight: 700; line-height: 1.22;
  letter-spacing: -.02em; color: var(--white);
  margin: 1.5rem 0 1rem;
  padding-bottom: .06em;
}
.about__quote em {
  font-style: normal;
  background: var(--grad-silver);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about__desc { font-size: .88rem; color: var(--silver-mid); line-height: 1.8; margin-bottom: .9rem; }

.about__statements { margin-top: 2.2rem; }
.about__statements p {
  font-size: .9rem; color: var(--silver-mid); line-height: 1.82;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--border);
}
.about__statements p:first-child { border-top: 1px solid var(--border); }

.about__cards { display: flex; flex-direction: column; gap: .9rem; }
.about__card {
  padding: 1.75rem;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: .4s var(--ease);
}
.about__card:hover { border-color: var(--border-hover); transform: translateX(-5px); }
.about__card-icon { width: 38px; height: 38px; color: var(--silver-mid); margin-bottom: .9rem; }
.about__card-icon svg { width: 20px; height: 20px; }
.about__card p { font-size: .84rem; color: var(--silver-mid); line-height: 1.72; }

/* ── CONTACT ──────────────────────────────── */
.contact {
  padding: 10rem 0 7rem;
  background: var(--black);
  clip-path: polygon(0 2.5%, 100% 0, 100% 100%, 0 100%);
  margin-top: 1.5rem;
}
.contact__grid {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 4rem; align-items: start; margin-top: 3rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block; font-size: .76rem; font-weight: 500;
  color: var(--silver-mid); margin-bottom: .45rem; letter-spacing: .02em;
}
.form-opt { color: var(--silver-dim); font-weight: 400; }
.form-select option {
  background-color: #17171f;
  color: #eeeef5;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(173,178,200,.08);
  border: 1px solid rgba(173,178,200,.15);
  border-radius: var(--r-sm);
  padding: .82rem .95rem;
  color: var(--white);
  font-family: var(--f-body); font-size: .86rem;
  transition: border-color .3s, background .3s;
  outline: none; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--silver-mid);
  background: rgba(173,178,200,.07);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--silver-dim); opacity: .7; }
.form-textarea { resize: vertical; min-height: 125px; }
.form-sel-wrap { position: relative; }
.form-sel-wrap .arrow-icon {
  position: absolute; right: .9rem; top: 50%; transform: translateY(-50%);
  width: 15px; height: 15px; color: var(--silver-dim); pointer-events: none;
}
.form-error { display: block; font-size: .72rem; color: #e25c5c; margin-top: .3rem; min-height: .9rem; }
.form-feedback {
  padding: .9rem 1rem; border-radius: var(--r-sm); font-size: .83rem; margin-top: .9rem;
}
.form-feedback.ok { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2); color: #4ade80; }
.form-feedback.err { background: rgba(226,92,92,.1); border: 1px solid rgba(226,92,92,.2); color: #e25c5c; }

.contact__wa-primary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  background: rgba(18,140,126,.07);
  border: 1px solid rgba(18,140,126,.22);
  border-radius: var(--r-lg);
  padding: 2.2rem 2.8rem;
  margin-top: 2.5rem;
}
.contact__wa-info { flex: 1; min-width: 200px; }
.contact__wa-title {
  font-family: var(--f-display); font-size: 1.35rem; font-weight: 700;
  color: var(--white); margin-bottom: .4rem;
}
.contact__wa-sub { font-size: .88rem; color: var(--silver-mid); line-height: 1.6; }
.contact__divider {
  display: flex; align-items: center; gap: 1.2rem;
  margin: 2.8rem 0 2rem; color: var(--silver-dim); font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  font-family: var(--f-body); font-weight: 500;
}
.contact__divider::before, .contact__divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(173,178,200,.1);
}
.btn--wa-lg {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--f-body); font-size: .95rem; font-weight: 600;
  padding: 1rem 2.4rem; border-radius: 100px;
  background: #128C7E; color: #fff; cursor: none;
  transition: .4s var(--ease); border: none; white-space: nowrap;
}
.btn--wa-lg:hover { background: #0d7066; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(18,140,126,.32); }
.contact__form--solo { max-width: 680px; }
.contact__aside { display: flex; flex-direction: column; gap: .9rem; }
.contact__card {
  padding: 1.4rem;
  background: rgba(173,178,200,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex; align-items: flex-start; gap: .9rem;
}
.contact__card-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(173,178,200,.06);
  border: 1px solid rgba(173,178,200,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver); flex-shrink: 0;
}
.contact__card-icon svg { width: 15px; height: 15px; }
.contact__card-lbl { font-size: .7rem; color: var(--silver-dim); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .2rem; }
.contact__card-val { font-size: .88rem; color: var(--silver-bright); }
.contact__card-val:hover { color: var(--white); }

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--f-body); font-size: .83rem; font-weight: 500;
  letter-spacing: .03em; padding: .85rem 1.9rem;
  border-radius: 100px; transition: .4s var(--ease);
  cursor: none; border: none; position: relative;
}
.btn--primary { background: var(--white); color: var(--black); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(238,239,245,.18); }
.btn--outline { background: transparent; color: var(--white); border: 1px solid rgba(238,239,245,.2); }
.btn--outline:hover { border-color: var(--silver); transform: translateY(-2px); }
.btn--submit { width: 100%; justify-content: center; margin-top: .3rem; }
.btn--wa {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--f-body); font-size: .83rem; font-weight: 500;
  padding: .85rem 1.9rem; border-radius: 100px;
  background: #128C7E; color: #fff; cursor: none;
  transition: .4s var(--ease); border: none;
}
.btn--wa:hover { background: #0d7066; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(18,140,126,.28); }
.btn--sm { padding: .55rem 1.1rem; font-size: .78rem; }

/* ── CTA FINAL ────────────────────────────── */
.cta-final {
  padding: 9rem 0;
  text-align: center;
  position: relative;
}
.cta-final::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(173,178,200,.055) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final .sec-label { justify-content: center; }
.cta-final .sec-label::before { display: none; }
.cta-final__title {
  font-family: var(--f-display);
  font-size: clamp(2.4rem,6vw,5.2rem);
  font-weight: 800; letter-spacing: -.025em;
  padding-bottom: .06em;
  color: var(--white);
  max-width: 820px; margin: 1.5rem auto 1rem;
  line-height: .97;
}
.cta-final__sub {
  font-size: .92rem; color: var(--silver-mid);
  max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.7;
}
.cta-final__btns { display: flex; justify-content: center; flex-wrap: wrap; gap: .75rem; }

/* ── FOOTER ───────────────────────────────── */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 4rem; margin-bottom: 3rem;
}
.footer__logo-img { height: 34px; width: auto; margin-bottom: .9rem; }
.footer__tagline { font-size: .8rem; color: var(--silver-dim); line-height: 1.65; }
.footer__nav-title {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--silver-mid); margin-bottom: 1.15rem;
}
.footer__nav-list { display: flex; flex-direction: column; gap: .55rem; }
.footer__nav-link { font-size: .83rem; color: var(--silver-dim); transition: color .3s; }
.footer__nav-link:hover { color: var(--white); }
.footer__social-list { display: flex; flex-direction: column; gap: .55rem; }
.footer__social-link { display: flex; align-items: center; gap: .55rem; font-size: .83rem; color: var(--silver-dim); transition: color .3s; }
.footer__social-link:hover { color: var(--white); }
.footer__social-link svg { width: 15px; height: 15px; }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.4rem;
  display: flex; align-items: center; justify-content: space-between;
}
.footer__copy { font-size: .75rem; color: var(--silver-dim); }

/* ── DEPOIMENTOS ─────────────────────────── */
.reviews { padding: 8rem 0; }
.reviews__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.25rem; margin-top: 3.5rem;
}
.review-card {
  background: rgba(173,178,200,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: .4s var(--ease);
}
.review-card:hover { border-color: var(--border-hover); background: rgba(173,178,200,.07); transform: translateY(-4px); }
.review-stars { display: flex; gap: .25rem; }
.review-stars svg { width: 13px; height: 13px; fill: #d4a843; color: #d4a843; flex-shrink: 0; }
.review-stars svg.empty { fill: rgba(212,168,67,.25); color: rgba(212,168,67,.25); }
.review-text {
  font-size: .86rem; color: var(--silver-mid);
  line-height: 1.8; flex: 1;
}
.review-author { display: flex; align-items: center; gap: .75rem; margin-top: .4rem; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(173,178,200,.08);
  border: 1px solid rgba(173,178,200,.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: .9rem; font-weight: 700;
  color: var(--silver); flex-shrink: 0;
}
.review-name { font-size: .83rem; font-weight: 600; color: var(--white); margin-bottom: .1rem; }
.review-role { font-size: .74rem; color: var(--silver-dim); }
@media (max-width: 900px) { .reviews__grid { grid-template-columns: 1fr; } }

/* ── WA FLOAT ────────────────────────────── */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  z-index: 9000;
  display: flex; flex-direction: column; align-items: flex-end; gap: .75rem;
}
.wa-float__popup {
  position: relative;
  background: var(--dark-3);
  border: 1px solid rgba(173,178,200,.18);
  border-radius: var(--r-md);
  padding: 1.4rem 1.4rem 1.4rem;
  width: 290px;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  transform: translateY(12px) scale(.96);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.wa-float__popup.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.wa-float__close {
  position: absolute; top: .7rem; right: .7rem;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(173,178,200,.08); border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--silver-dim); cursor: none;
  transition: background .2s, color .2s;
}
.wa-float__close:hover { background: rgba(173,178,200,.18); color: var(--white); }
.wa-float__close svg { width: 11px; height: 11px; }
.wa-float__head {
  display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem;
}
.wa-float__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: #128C7E;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wa-float__avatar svg { width: 22px; height: 22px; stroke: #fff; fill: none; }
.wa-float__name { font-size: .82rem; font-weight: 700; color: var(--white); margin-bottom: .15rem; }
.wa-float__status {
  font-size: .7rem; color: #4ade80;
  display: flex; align-items: center; gap: .3rem;
}
.wa-float__status::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%; background: #4ade80;
}
.wa-float__msg { font-size: .83rem; color: var(--silver-mid); line-height: 1.72; margin-bottom: 1.1rem; }
.wa-float__cta {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: #128C7E; color: #fff;
  padding: .72rem 1rem; border-radius: 100px;
  font-size: .82rem; font-weight: 600;
  transition: background .3s; width: 100%;
}
.wa-float__cta:hover { background: #0d7066; }
.wa-float__cta svg { width: 16px; height: 16px; stroke: #fff; fill: none; flex-shrink: 0; }
.wa-float__btn {
  width: 54px; height: 54px; border-radius: 50%;
  background: #128C7E; border: none; cursor: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(18,140,126,.45);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.wa-float__btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(18,140,126,.55); }
.wa-float__btn svg { width: 28px; height: 28px; stroke: #fff; fill: none; }

/* ── CAPTCHA + HONEYPOT ──────────────────── */
.captcha-box { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
#captcha-question { font-size: .95rem; font-weight: 700; color: var(--silver-bright); letter-spacing: .01em; }
.captcha-eq { color: var(--silver-dim); font-size: .9rem; }
.captcha-input { width: 80px !important; text-align: center; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; height: 0; width: 0; }


/* ── SCROLL PROGRESS ─────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 2px; width: 0%;
  background: var(--grad-silver);
  transition: width .08s linear;
  pointer-events: none;
}

/* ── BACK TO TOP ──────────────────────────── */
.back-top {
  position: fixed; bottom: 5.5rem; left: 1.75rem; z-index: 800;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(173,178,200,.07);
  border: 1px solid rgba(173,178,200,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver-mid); cursor: none;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .3s, color .3s;
}
.back-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-top:hover { background: rgba(173,178,200,.16); color: var(--white); }
.back-top svg { width: 16px; height: 16px; }

/* ── FAQ ──────────────────────────────────── */
.faq { padding: 8rem 0; }
.faq__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 6rem; align-items: start; margin-top: 1rem; }
.faq__list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__btn {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.4rem 0; cursor: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--f-display); font-size: .97rem; font-weight: 600;
  color: var(--white); transition: color .3s;
}
.faq-item__btn:hover { color: var(--silver-bright); }
.faq-item__icon {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
  border: 1px solid rgba(173,178,200,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver-mid); transition: .3s var(--ease);
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); background: rgba(173,178,200,.09); color: var(--white); }
.faq-item__icon svg { width: 13px; height: 13px; }
.faq-item__body {
  overflow: hidden; max-height: 0;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
}
.faq-item.open .faq-item__body { max-height: 300px; padding-bottom: 1.3rem; }
.faq-item__body p { font-size: .87rem; color: var(--silver-mid); line-height: 1.82; max-width: 600px; }
@media (max-width: 900px) { .faq__grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ── LGPD BANNER ──────────────────────────── */
.lgpd-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8998;
  background: rgba(13,13,18,.97);
  border-top: 1px solid rgba(173,178,200,.12);
  backdrop-filter: blur(20px);
  padding: 1.1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .5s var(--ease);
}
.lgpd-bar.show { transform: translateY(0); }
.lgpd-bar__text { font-size: .78rem; color: var(--silver-mid); line-height: 1.65; flex: 1; min-width: 260px; }
.lgpd-bar__btns { display: flex; gap: .6rem; flex-shrink: 0; }
.lgpd-bar__accept {
  padding: .55rem 1.2rem; border-radius: 100px;
  background: var(--white); color: var(--black);
  font-family: var(--f-body); font-size: .78rem; font-weight: 600;
  border: none; cursor: none; transition: opacity .3s;
}
.lgpd-bar__accept:hover { opacity: .85; }
.lgpd-bar__decline {
  padding: .55rem 1.2rem; border-radius: 100px;
  background: transparent; color: var(--silver-dim);
  font-family: var(--f-body); font-size: .78rem; font-weight: 500;
  border: 1px solid rgba(173,178,200,.18); cursor: none; transition: color .3s;
}
.lgpd-bar__decline:hover { color: var(--white); }

/* ── REVEAL ANIMATIONS ────────────────────── */

/* --- Base: flutuar para cima (padrão) --- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
.reveal-d3 { transition-delay: .36s; }
.reveal-d4 { transition-delay: .52s; }

/* --- Aparecer: pop instantâneo --- */
.reveal.rv-appear {
  transform: none;
  transition: opacity 0s;
}
.reveal.rv-appear.in { opacity: 1; }

/* --- Esmaecer: só opacidade --- */
.reveal.rv-fade {
  transform: none;
  transition: opacity 1.1s var(--ease);
}
.reveal.rv-fade.in { opacity: 1; }

/* --- Deslocar: voar da esquerda --- */
.reveal.rv-fly-l {
  transform: translateX(-65px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.rv-fly-l.in { opacity: 1; transform: translateX(0); }

/* --- Deslocar: voar da direita --- */
.reveal.rv-fly-r {
  transform: translateX(65px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.rv-fly-r.in { opacity: 1; transform: translateX(0); }

/* --- Dividir: split do centro ---
   Usa opacity:0 inicial → IntersectionObserver detecta o bounding-box
   e dispara .in; a animação aplica o clip-path a partir do 1º keyframe */
.reveal.rv-split { opacity: 0; transform: none; transition: none; }
@keyframes rv-split-anim {
  0%   { clip-path: inset(0 50%); opacity: 1; }
  100% { clip-path: inset(0 0%);  opacity: 1; }
}
.reveal.rv-split.in { animation: rv-split-anim .95s cubic-bezier(.25,.46,.45,.94) forwards; }

/* --- Apagar: wipe da esquerda --- */
.reveal.rv-wipe { opacity: 0; transform: none; transition: none; }
@keyframes rv-wipe-anim {
  0%   { clip-path: inset(0 100% 0 0); opacity: 1; }
  100% { clip-path: inset(0 0%   0 0); opacity: 1; }
}
.reveal.rv-wipe.in { animation: rv-wipe-anim 1s cubic-bezier(.25,.46,.45,.94) forwards; }

/* --- Forma: círculo expandindo --- */
.reveal.rv-shape { opacity: 0; transform: none; transition: none; }
@keyframes rv-shape-anim {
  0%   { clip-path: circle(0%   at 50% 50%); opacity: 1; }
  100% { clip-path: circle(150% at 50% 50%); opacity: 1; }
}
.reveal.rv-shape.in { animation: rv-shape-anim 1.1s cubic-bezier(.25,.46,.45,.94) forwards; }

/* --- Roda: girar + escalar --- */
.reveal.rv-wheel {
  transform: rotate(-110deg) scale(.5);
  transition: opacity .9s var(--ease), transform .9s cubic-bezier(.34,1.56,.64,1);
}
.reveal.rv-wheel.in { opacity: 1; transform: rotate(0deg) scale(1); }

/* --- Barras: revelar em tiras --- */
.reveal.rv-blinds { opacity: 0; transform: none; transition: none; }
@keyframes rv-blinds-anim {
  0%   { clip-path: inset(0 0 100% 0); opacity: 1; }
  20%  { clip-path: inset(0 0  80% 0); opacity: 1; }
  40%  { clip-path: inset(0 0  60% 0); opacity: 1; }
  60%  { clip-path: inset(0 0  40% 0); opacity: 1; }
  80%  { clip-path: inset(0 0  20% 0); opacity: 1; }
  100% { clip-path: inset(0 0   0% 0); opacity: 1; }
}
.reveal.rv-blinds.in { animation: rv-blinds-anim .9s steps(5,end) forwards; }

/* --- Crescer e girar: scale + rotate com bounce --- */
.reveal.rv-spin {
  transform: scale(.3) rotate(-20deg);
  transition: opacity .85s var(--ease), transform .85s cubic-bezier(.34,1.56,.64,1);
}
.reveal.rv-spin.in { opacity: 1; transform: scale(1) rotate(0deg); }

/* --- Zoom: crescer do centro --- */
.reveal.rv-zoom {
  transform: scale(.55);
  transition: opacity .75s var(--ease), transform .75s cubic-bezier(.34,1.56,.64,1);
}
.reveal.rv-zoom.in { opacity: 1; transform: scale(1); }

/* ── GEO DECORAÇÕES ──────────────────────── */
.stats, .services, .process, .portfolio,
.about, .reviews, .contact {
  position: relative;
  overflow: hidden;
}
.geo-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0;
  transform: scale(.8);
  transition: opacity 1.8s var(--ease), transform 1.8s var(--ease);
}
.geo-deco.in { opacity: 1; transform: scale(1); }
.geo-circle {
  border-radius: 50%;
  border: 1px solid rgba(173,178,200,.09);
  background: transparent;
}
.geo-square {
  border: 1px solid rgba(173,178,200,.09);
  background: transparent;
}
.geo-hex {
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  background: rgba(173,178,200,.04);
}
.geo-tri {
  clip-path: polygon(50% 0%,0% 100%,100% 100%);
  background: rgba(173,178,200,.04);
}
.geo-dot {
  border-radius: 50%;
  background: rgba(173,178,200,.22);
}
.geo-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(173,178,200,.13), transparent);
}

/* ── STEP CARDS (etapas estáticas) ──────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
}
.step-card {
  background: rgba(173,178,200,.03);
  border: 1px solid rgba(173,178,200,.08);
  border-radius: 1.25rem;
  padding: 2.5rem 2.2rem 2.2rem;
  position: relative;
}
.step-card__num {
  font-family: var(--f-display);
  font-size: 5rem; font-weight: 800;
  letter-spacing: -.06em; line-height: 1;
  background: var(--grad-silver);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .12;
  display: block; margin-bottom: .5rem;
}
.step-card__title {
  font-family: var(--f-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--white); margin-bottom: .7rem; line-height: 1.25;
}
.step-card__desc {
  font-size: .9rem; color: var(--silver-mid); line-height: 1.8;
}
.step-card__detail {
  font-size: .86rem; color: var(--silver-dim); line-height: 1.82;
  margin-top: .8rem; padding-top: .8rem;
  border-top: 1px solid var(--border);
}
.process-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 4.5rem 0 3rem;
}

/* ── OFFER CARDS (como-trabalhamos) ─────────── */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
}
.offer-card {
  position: relative;
  overflow: hidden;
  background: rgba(173,178,200,.04);
  border: 1px solid rgba(173,178,200,.1);
  border-radius: 1.25rem;
  padding: 2.8rem 1.8rem 2.4rem;
  text-align: center;
  cursor: none;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
/* efeito copo enchendo — sobe de baixo para cima */
.offer-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: rgba(173,178,200,.1);
  transition: height .65s cubic-bezier(.25,.46,.45,.94);
  z-index: 0;
}
.offer-card:hover { border-color: rgba(173,178,200,.28); transform: translateY(-5px); }
.offer-card:hover::before { height: 100%; }

.offer-card__icon {
  position: relative; z-index: 1;
  width: 58px; height: 58px;
  margin: 0 auto 1.6rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(173,178,200,.07);
  border-radius: 14px;
  border: 1px solid rgba(173,178,200,.12);
  transition: background .4s, border-color .4s;
}
.offer-card:hover .offer-card__icon { background: rgba(173,178,200,.16); border-color: rgba(173,178,200,.28); }
.offer-card__icon svg {
  width: 26px; height: 26px;
  stroke: var(--silver-bright); fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.offer-card__title {
  position: relative; z-index: 1;
  font-family: var(--f-display);
  font-size: 1.08rem; font-weight: 700;
  color: var(--white); margin-bottom: .75rem; line-height: 1.25;
}
.offer-card__desc {
  position: relative; z-index: 1;
  font-size: .86rem; color: var(--silver-mid); line-height: 1.76;
}

/* ── FAQ (como-trabalhamos) ─────────────── */
.faq { margin-top: 6rem; padding-top: 5rem; border-top: 1px solid var(--border); }
.faq__head { margin-bottom: 2.5rem; }
.faq-list { display: flex; flex-direction: column; gap: .75rem; list-style: none; padding: 0; margin: 0; }
.faq-item {
  border: 1px solid rgba(173,178,200,.09);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(173,178,200,.03);
  transition: background .3s, border-color .3s;
}
.faq-item.open {
  background: rgba(173,178,200,.055);
  border-color: rgba(173,178,200,.18);
}
.faq-item__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.8rem;
  background: none;
  border: none;
  cursor: none;
  text-align: left;
  font-family: var(--f-display);
  font-size: 1rem; font-weight: 600;
  color: var(--white);
  user-select: none;
  box-sizing: border-box;
}
.faq-item__btn > span:first-child { flex: 1; min-width: 0; }
.faq-chevron {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(173,178,200,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, transform .35s var(--ease);
}
.faq-chevron svg {
  width: 12px; height: 12px;
  stroke: var(--silver-bright); fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: rgba(173,178,200,.16); }
.faq-item__body {
  display: none;
  padding: 0 1.8rem 1.6rem;
  font-size: .88rem; color: var(--silver-mid); line-height: 1.82;
}
.faq-item.open .faq-item__body { display: block; }

/* ── FEATURES (infographic cards) ───────────── */
.features { padding: 8rem 0; position: relative; overflow: hidden; }
.features__head { text-align: center; max-width: 680px; margin: 0 auto 4.5rem; }
.features__label {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--silver-mid); margin-bottom: 1rem;
}
.features__title { font-family: var(--f-display); font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; color: var(--white); line-height: 1.18; margin-bottom: 1rem; }
.features__desc { font-size: 1.05rem; color: var(--silver-mid); line-height: 1.75; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feat-card {
  background: rgba(173,178,200,.04);
  border: 1px solid rgba(173,178,200,.1);
  border-radius: 1.25rem;
  padding: 2.5rem 2.2rem 2.2rem;
  position: relative; overflow: hidden;
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  display: flex; flex-direction: column; gap: 1.5rem;
}
.feat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 55% at 80% 20%, rgba(173,178,200,.06) 0%, transparent 70%);
  pointer-events: none;
}
.feat-card:hover { background: rgba(173,178,200,.075); border-color: rgba(173,178,200,.2); transform: translateY(-4px); }

.feat-card__art {
  width: 100%; max-width: 340px; height: 160px;
  margin: 0 auto;
  flex-shrink: 0;
}
.feat-card__art svg { width: 100%; height: 100%; }

.feat-card__body { display: flex; flex-direction: column; gap: .65rem; }
.feat-card__tag {
  font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--silver-dim); opacity: .7;
}
.feat-card__title { font-family: var(--f-display); font-size: 1.3rem; font-weight: 700; color: var(--white); line-height: 1.25; }
.feat-card__desc { font-size: .93rem; color: var(--silver-mid); line-height: 1.72; }
.feat-card__list {
  list-style: none; display: flex; flex-direction: column; gap: .4rem; margin-top: .3rem;
}
.feat-card__list li {
  font-size: .88rem; color: var(--silver-dim); display: flex; align-items: flex-start; gap: .55rem;
}
.feat-card__list li::before {
  content: ''; flex-shrink: 0; width: 5px; height: 5px; border-radius: 50%;
  background: var(--silver-mid); margin-top: .45em; opacity: .6;
}

/* WA pulse rings */
.wa-float__btn { position: relative; }
.wa-float__btn::before,
.wa-float__btn::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(18,140,126,.6);
  animation: wa-ring 2.4s ease-out infinite;
  pointer-events: none;
}
.wa-float__btn::after { animation-delay: 1.2s; }
@keyframes wa-ring {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(1.85); opacity: 0; }
  100% { transform: scale(1.85); opacity: 0; }
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
  .hero__ghost { display: none; }
  .stats__grid { grid-template-columns: repeat(3,1fr); }
  .features__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hdr__nav { display: none; }
  .hdr__burger { display: flex; }
  .features__grid { max-width: 100%; }
  .process-steps { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .services__head { flex-direction: column; }
  .services__tagline { text-align: left; max-width: none; }
  .svc-item { grid-template-columns: 44px 1fr; }
  .svc-arrow { display: none; }
  .process { clip-path: polygon(0 1.5%, 100% 0, 100% 98.5%, 0 100%); padding: 8rem 0 7rem; }
  .process-card { min-height: auto; }
  .process-card__content { max-width: 100%; }
  .process-card__art { display: none; }
  .portfolio__head { grid-template-columns: 1fr; }
  .portfolio__note { text-align: left; max-width: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact { clip-path: polygon(0 1.5%, 100% 0, 100% 100%, 0 100%); padding-top: 8rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: .75rem; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .stat { padding: 1.75rem 1rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta-final__btns { flex-direction: column; align-items: center; }
}
