:root {
  --bg:      #080809;
  --surface: #0f0f11;
  --card:    #141416;
  --card2:   #1a1a1d;
  --border:  rgba(255,255,255,0.065);
  --accent:  #F5C41A;
  --accent-dim: rgba(245,196,26,0.12);
  --accent-glow: rgba(245,196,26,0.22);
  --accent2: #2a2a2e;
  --text:    #ebebed;
  --muted:   #6b6b7a;
  --muted2:  #9898a8;
  --hf: 'Outfit', sans-serif;
  --bf: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--bf);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1rem 5%;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(8,8,9,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
nav.scrolled {
  background: rgba(8,8,9,0.98);
  border-bottom-color: rgba(245,196,26,.15);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.logo-img {
  height: 26px;
  display: block;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.logo-sep {
  display: block;
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--hf);
  font-size: .72rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .04em;
  white-space: nowrap;
}

nav ul { list-style: none; display: flex; gap: 2.25rem; align-items: center; }
nav ul a {
  font-family: var(--hf); font-size: .92rem; font-weight: 500;
  color: var(--muted); text-decoration: none;
  transition: color .2s;
  position: relative; padding-bottom: 2px;
}
nav ul a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
nav ul a:hover { color: var(--text); }
nav ul a:hover::after { transform: scaleX(1); }
nav ul a.active { color: var(--text); }
nav ul a.active::after { transform: scaleX(1); }

.nav-drawer a.nav-cta,
.nav-cta {
  font-family: var(--hf) !important; font-weight: 700 !important;
  font-size: .88rem !important; color: #000 !important;
  background: var(--accent); padding: .55rem 1.4rem !important;
  border-radius: 6px; transition: opacity .2s, transform .2s !important;
}
.nav-cta:hover { opacity: .88; transform: translateY(-1px) !important; }
.nav-cta::after { display: none !important; }

/* ── HAMBURGER (mobile) ── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center;
  gap: 5px; cursor: pointer; padding: 4px;
  background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.nav-drawer {
  display: none;
  position: fixed; top: -240px; left: 0; right: 0; z-index: 199;
  background: rgba(8,8,9,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 5% 2rem;
  flex-direction: column; gap: 0;
  transform: translateY(-8px); opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-drawer.open {
  top: 45px;
  opacity: 1;
}
.nav-drawer a {
  font-family: var(--hf); font-size: 1.1rem; font-weight: 600;
  color: var(--muted); text-decoration: none;
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.nav-drawer a:hover, .nav-drawer a.active { color: var(--text); }
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer .nav-cta-mobile {
  margin-top: 1.25rem;
  display: inline-block;
  background: var(--accent); color: #000 !important;
  font-weight: 700 !important; font-size: .95rem !important;
  padding: .75rem 1.5rem; border-radius: 8px;
  text-align: center; width: 100%;
}

/* ── SECTIONS ── */
section { padding: 7rem 5%; }
.container { max-width: 1140px; margin: 0 auto; }
h1,h2,h3,h4 { font-family: var(--hf); line-height: 1.12; }

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 5.5rem; position: relative; overflow: hidden;
}

.hero-glow-1 {
  position: absolute; top: -15%; right: -5%;
  width: 680px; height: 680px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,196,26,.09) 0%, transparent 68%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: -8%; left: 8%;
  width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,196,26,.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--accent-dim); border: 1px solid rgba(245,196,26,.25);
  border-radius: 100px; padding: .38rem 1rem;
  font-family: var(--hf); font-size: .78rem; font-weight: 600;
  color: var(--accent); letter-spacing: .04em;
  margin-bottom: 1.75rem;
  animation: fadeUp .65s ease both;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; animation: blink 2s infinite;
}
@keyframes blink {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.3;transform:scale(1.5)}
}

#hero h1 {
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
  font-weight: 900; letter-spacing: -.03em;
  max-width: 820px;
  animation: fadeUp .65s .1s ease both;
}

#hero h1 mark {
  background: none; color: var(--accent);
  -webkit-text-stroke: 0px;
}

.hero-sub {
  font-size: 1.1rem; font-weight: 300; color: var(--muted2);
  max-width: 560px; margin: 1.5rem 0 2.5rem;
  animation: fadeUp .65s .2s ease both;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp .65s .3s ease both;
}

.btn-primary {
  background: var(--accent); color: #000;
  font-family: var(--hf); font-weight: 700; font-size: 1rem;
  padding: .88rem 1.5rem; border-radius: 8px;
  text-decoration: none; display: inline-flex;
  align-items: center; gap: .45rem;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(245,196,26,.28);
}

.btn-outline {
  background: transparent; color: var(--text);
  font-family: var(--hf); font-weight: 600; font-size: .92rem;
  padding: .88rem 2rem; border-radius: 8px;
  text-decoration: none; border: 1px solid var(--border);
  transition: border-color .2s, background .2s;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
}

.hero-stats {
  display: flex; gap: 2.75rem; margin-top: 4rem;
  flex-wrap: wrap; animation: fadeUp .65s .45s ease both;
}

.stat { border-left: 2px solid var(--accent); padding-left: 1rem; max-width: 320px;}
.stat-n { font-family: var(--hf); font-weight: 800; font-size: 1.2rem; color: #fff; line-height: 1.4;}
.stat-l { font-size: .82rem; color: #9898a8; margin-top: .2rem; font-family: var(--hf); max-width: 200px; line-height: 1.4; }

/* ── SECTION LABELS ── */
.eyebrow {
  font-family: var(--hf); font-size: .72rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .9rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 800; letter-spacing: -.025em; max-width: 660px;
  /* text-align:center; width:100%; */
}

.section-sub {
  font-size: 1.05rem; color: #c0c0cc; max-width: 580px;
  margin-top: .85rem; line-height: 1.75;
}

/* Números/dados inline destacados */
.section-sub strong, .section-sub b,
.step p strong, .step p b,
.bc p strong, .bc p b,
.ch-card p strong, .ch-card p b,
#garantia p strong, #garantia p b {
  color: var(--accent);
  font-weight: 700;
}

/* ── PROBLEM ── */
#problema { background: var(--surface); }

.problem-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(255px,1fr));
  gap: 1.25rem; margin-top: 3rem;
}

.pc {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.6rem;
  transition: border-color .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.pc:hover {
  border-color: rgba(245,196,26,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.pc::after {
  content: attr(data-n);
  position: absolute; right: 1rem; top: .6rem;
  font-family: var(--hf); font-weight: 900;
  font-size: 4.5rem; color: rgba(245,196,26,.1); line-height: 1;
}
.pc h3 {
  font-family: var(--hf); font-weight: 700;
  margin-bottom: 1rem; color: #fff;
}
.pc p {  color: var(--muted2); }

/* Destaque de dados estatísticos em qualquer parágrafo */
.stat-highlight {
  color: var(--accent);
  font-weight: 700;
  font-family: var(--hf);
}

/* ── METHOD ── */
#metodo { }

.steps { margin-top: 3.5rem; }
.step {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 1.75rem; padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }

.step-n {
  font-family: var(--hf); font-weight: 900; font-size: 3.2rem;
  color: rgba(255,255,255,.5); line-height: 1; margin-top: -.2rem;
}

.step-tag {
  display: inline-block; font-family: var(--hf); font-size: .7rem;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .22rem .7rem; border-radius: 100px; margin-bottom: .6rem;
}
.tg-y { background: rgba(245,196,26,.1); color: var(--accent); }
.tg-w { background: rgba(255,255,255,.06); color: var(--muted2); }

.step h3 {
  font-family: var(--hf); font-size: 1.15rem; font-weight: 700;
  margin-bottom: .5rem;
}
.step p { font-size: .9rem; color: var(--muted2); }

/* ── BENEFITS ── */
#beneficios { background: var(--surface); }

.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr));
  gap: 1.25rem; margin-top: 3rem;
}

.bc {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.75rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.bc:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0,0,0,.35);
  border-color: rgba(245,196,26,.15);
}

.bc-icon {
  width: 46px; height: 46px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.1rem;
  background: var(--accent-dim);
}

.bc h3 { font-family: var(--hf); font-size: 1rem; font-weight: 700; margin-bottom: .45rem; }
.bc p { font-size: .875rem; color: var(--muted2); }

/* ── CHALLENGES ── */
#desafios { }

.ch-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(275px,1fr));
  gap: 1.25rem; margin-top: 3rem;
}

.ch-card {
  border: 1px solid rgba(245,196,26,.12);
  background: rgba(245,196,26,.025);
  border-radius: 12px; padding: 1.6rem;
}

.ch-head { display: flex; align-items: center; gap: .65rem; margin-bottom: .6rem; }
.ch-ico { font-size: 1.2rem; }
.ch-card h3 { font-family: var(--hf); font-size: .93rem; font-weight: 700; }
.ch-card p { font-size: .875rem; color: var(--muted2); }
.ch-sol {
  margin-top: .9rem; padding-top: .85rem;
  border-top: 1px solid rgba(245,196,26,.1);
  font-size: .82rem; color: var(--accent); font-family: var(--hf); font-weight: 600;
}

/* ── GUARANTEE ── */
#garantia {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

#garantia .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}

#garantia p { font-size: .93rem; color: var(--muted2); margin-bottom: .9rem; }

.g-box {
  background: var(--card); border: 1px solid rgba(245,196,26,.2);
  border-radius: 14px; padding: 2rem;
  box-shadow: 0 0 60px rgba(245,196,26,.04);
}
.g-box h3 {
  font-family: var(--hf); font-size: 1rem; font-weight: 700;
  color: var(--accent); margin-bottom: 1.25rem;
}

.g-list { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.g-list li {
  display: flex; gap: .7rem; font-size: .875rem; color: var(--text); align-items: flex-start;
}
.g-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; font-family: var(--hf); }

/* ── RESULTS ── */
#resultados { }

.results-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(275px,1fr));
  gap: 1.25rem; margin-top: 3rem;
}

.rc {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.75rem; position: relative;
}

.rc-badge {
  position: absolute; top: 1.4rem; right: 1.4rem;
  background: var(--accent-dim); color: var(--accent);
  font-family: var(--hf); font-weight: 800; font-size: 1.15rem;
  padding: .32rem .8rem; border-radius: 7px;
  border: 1px solid rgba(245,196,26,.2);
}

.rc-quote { font-size: 3rem; line-height: .5; color: var(--accent); opacity: .35; font-family: Georgia, serif; display: block; margin-bottom: .6rem; }
.rc blockquote { font-size: .875rem; color: var(--muted2); font-style: italic; margin-bottom: 1.4rem; }

.rc-author { display: flex; align-items: center; gap: .7rem; }
.rc-av {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--hf); font-weight: 700; font-size: .8rem;
  background: var(--accent-dim); color: var(--accent); flex-shrink: 0;
}
.rc-av-b { background: rgba(255,255,255,.06); color: var(--muted2); }
.rc-info strong { font-family: var(--hf); font-size: .88rem; display: block; }
.rc-info span { font-size: .76rem; color: var(--muted); }

/* ── SERVICES ── */
#servicos { background: var(--surface); }

.srv-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(215px,1fr));
  gap: 1.1rem; margin-top: 3rem;
}

.sc {
  border: 1px solid var(--border); border-radius: 11px; padding: 1.6rem;
  transition: background .25s, border-color .25s;
}
.sc:hover { background: var(--card); border-color: rgba(245,196,26,.18); }
.sc-ico { font-size: 1.65rem; margin-bottom: .9rem; }
.sc h3 { font-family: var(--hf); font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.sc p { font-size: .83rem; color: var(--muted2); }

/* ── FAQ ── */
#faq { }

#faq h2 { margin-bottom: 3rem; }
.faq-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(430px,1fr));
  gap: 1.1rem;
}

.fi {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 11px; padding: 1.6rem; cursor: pointer;
  transition: border-color .2s;
}
.fi:hover { border-color: rgba(245,196,26,.22); }
.fi-q {
  font-family: var(--hf); font-weight: 700; font-size: .92rem;
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: .9rem;
}
.fi-q .ar {
  color: var(--accent); flex-shrink: 0;
  font-size: 1rem; transition: transform .3s;
}
.fi-a {
  font-size: .875rem; color: var(--muted2);
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, margin-top .3s;
}
.fi.open .fi-a { max-height: 280px; margin-top: .9rem; }
.fi.open .ar { transform: rotate(180deg); }

/* ── CTA FINAL ── */
#cta-final {
  background: var(--card);
  border-top: 1px solid var(--border);
  text-align: center; padding: 7rem 5%; position: relative; overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 760px; height: 380px;
  background: radial-gradient(ellipse, rgba(245,196,26,.07) 0%, transparent 70%);
  pointer-events: none;
}
#cta-final h2 {
  font-size: clamp(2.1rem,4.8vw,3.8rem); font-weight: 900;
  letter-spacing: -.03em; margin: 0 auto 1.1rem;
}
#cta-final p { font-size: 1rem; color: var(--muted2); max-width: 600px; margin: 0 auto 2.5rem; }

.cta-row {
  display: flex; gap: .7rem; max-width: 900px; margin: 0 auto .9rem;
}
.cta-row input {
  flex: 1; background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: .88rem 1.2rem; color: var(--text);
  font-family: var(--bf); font-size: .88rem; outline: none;
  transition: border-color .2s;
}
.cta-row input:focus { border-color: rgba(245,196,26,.35); }
.cta-row input::placeholder { color: var(--muted); }
.cta-micro { font-size: .76rem; color: var(--muted); font-family: var(--hf); }

/* ── FOOTER ── */
footer {
  padding: 2.5rem 5%;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.foot-logo { height: 22px; filter: brightness(0) invert(1); opacity: .55; }
footer p { font-size: .78rem; color: var(--muted); }
.foot-links { display: flex; gap: 1.5rem; }
.foot-links a { font-size: .78rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.foot-links a:hover { color: var(--muted2); }

/* ── STICKY BAND ── */
.sb {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: rgba(8,8,9,.96); backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: .85rem 5%;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transform: translateY(100%); transition: transform .4s ease;
}
.sb.on { transform: translateY(0); }
.sb p { font-family: var(--hf); font-size: .88rem; font-weight: 500; }
.sb span { color: var(--accent); font-weight: 700; }

@media (max-width: 800px) {
  .sb {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .5rem;
  }
  .sb p{
    line-height: 1.2rem;
  }
}

/* ── REVEAL ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── DIVIDER ── */
.yd { display: inline-block; width: 36px; height: 3px; background: var(--accent); border-radius: 2px; margin-bottom: 1.1rem; }

/* ── CLIENTS ── */
#clientes { background: var(--bg); }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 1.5rem;
}

.client-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.client-card:hover {
  border-color: rgba(245,196,26,.2);
  transform: translateY(-3px);
}

.client-header {
  padding: 1.75rem 1.75rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.client-sector {
  font-family: var(--hf); font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .75rem; border-radius: 100px;
  background: var(--accent-dim); color: var(--accent);
  white-space: nowrap;
}

.client-name {
  font-family: var(--hf); font-weight: 800; font-size: 1.25rem;
  margin-bottom: .25rem;
}
.client-url {
  font-size: 1rem; color: var(--accent);
  text-decoration: none; font-family: var(--hf);
  transition: color .2s;
}
.client-url:hover { color: var(--accent); }

.client-body { padding: 1.25rem 1.75rem 1.75rem; }

.client-desc {
  font-size: .9rem; color: var(--muted2);
  margin-bottom: 1.25rem;
  border-left: 2px solid rgba(245,196,26,.25);
  padding-left: .9rem;
}

.client-deliverables {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.35rem;
}

.del-tag {
  font-family: var(--hf); font-size: .72rem; font-weight: 600;
  padding: .28rem .75rem; border-radius: 6px;
  background: rgba(255,255,255,.05); color: var(--muted2);
  border: 1px solid var(--border);
}

.client-highlights {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.ch-hl {
  background: rgba(245,196,26,.06);
  border: 1px solid rgba(245,196,26,.12);
  border-radius: 10px; padding: .85rem;
  text-align: center;
}
.ch-hl-n {
  font-family: var(--hf); font-weight: 800; font-size: 1.4rem;
  color: var(--accent); line-height: 1;
}
.ch-hl-l {
  font-size: .72rem; color: #9898a8; margin-top: .3rem;
  font-family: var(--hf);
}

.client-flag {
  font-size: .85rem; margin-right: .3rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  nav ul { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }

  .logo-sep,
  .logo-text { display: none; }

  .clients-grid { grid-template-columns: 1fr; }
  .client-highlights { grid-template-columns: repeat(3,1fr); }
  #garantia .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; }
  
  .client-header {
    flex-direction: column-reverse;
  }
}


/* ═══════════════════════════════════════════
   SEÇÃO: APENAS SOCIAL
═══════════════════════════════════════════ */
#apenas-social {
  background: var(--surface);
  position: relative;
}
#apenas-social::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.social-risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.sr-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: border-color .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sr-card:hover {
  border-color: rgba(245,196,26,.2);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.sr-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: block;
}

.sr-card h3 {
  font-family: var(--hf);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .6rem;
}

.sr-card p {
  /* font-size: .87rem; */
  color: var(--muted2);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.sr-stat {
  /* font-size: .8rem; */
  color: var(--muted2);
  background: rgba(245,196,26,.06);
  border: 1px solid rgba(245,196,26,.12);
  border-radius: 8px;
  padding: .6rem .85rem;
  line-height: 1.5;
  margin-top: auto;
}
.sr-stat strong {
  color: var(--accent);
  font-family: var(--hf);
  font-weight: 700;
}

/* CTA bridge */
.social-cta-bridge {
  border: 1px solid rgba(245,196,26,.2);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245,196,26,.05) 0%, transparent 60%);
}
.scb-inner {
  display: grid;
  grid-template-columns: 1fr;
  /* gap: 40px; */
}
@media (max-width: 860px) {
  .scb-inner { grid-template-columns: 1fr; }
  .scb-right { border-left: none !important; border-top: 1px solid var(--border); }
}

.scb-left {
  padding: 1.75rem;
}
.scb-label {
  font-family: var(--hf);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.scb-left h3 {
  font-family: var(--hf);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .85rem;
  line-height: 1.25;
}
.scb-left p {
  /* font-size: .9rem; */
  color: var(--muted2);
  line-height: 1.75;
}

.scb-right {
  padding: 0 2rem;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  justify-content: center;
}

.scb-stat-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  width: 50%;
}
.scb-sn {
  font-family: var(--hf);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--accent);
  line-height: 1;
}
.scb-sl {
  /* font-size: .75rem; */
  color: var(--muted2);
  margin-top: .35rem;
  line-height: 1.5;
}
.social-cta-bridge .btn-primary{
  max-width: 330px;
  margin: auto;
}

@media (max-width: 700px) {
  .social-risk-grid { grid-template-columns: 1fr; }
}

/* ONBOARDING */

.pp-onboarding {
  padding-top: 9rem;
  padding-bottom: 6rem;
}

.pp-onboarding-inner {
  max-width: 640px;
  margin: 0 auto;
}

.pp-onboarding .step { display:none; }
.pp-onboarding .step.on { display:block; }

.pp-onboarding .opt {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  cursor: pointer;
  transition: border-color .2s;
}
.pp-onboarding .opt:hover {
  border-color: rgba(245,196,26,.25);
}
.pp-onboarding .opt.sel {
  border-color: var(--accent);
  background: var(--accent-dim);
}