/* ═══════════════════════════════════════════════
   PIXELL — Site Oficial
   Variáveis, Reset, Componentes, Seções
═══════════════════════════════════════════════ */

:root {
  --preto:      #0A0A0A;
  --preto-md:   #111111;
  --preto-card: #161616;
  --vermelho:   #CC2A2A;
  --verm-hover: #E03333;
  --branco:     #FFFFFF;
  --cinza-lv:   #F5F5F5;
  --cinza-md:   #888888;
  --cinza-esc:  #333333;
  --texto:      #D0D0D0;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  --max-w: 1200px;
  --pad-h: clamp(1.5rem, 5vw, 5rem);
  --section-pad: clamp(5rem, 10vw, 9rem);
}

/* ── RIBBON: faixa de identidade no topo ─────── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--vermelho);
  z-index: 200;
  pointer-events: none;
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
section[id], footer[id] { scroll-margin-top: 100px; }
body {
  background: var(--preto);
  color: var(--texto);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ── UTILITÁRIOS ─────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}
.red { color: var(--vermelho); }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--vermelho);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  color: var(--branco);
  letter-spacing: -0.01em;
  margin-bottom: 3rem;
}

/* ── ANIMAÇÕES DE SCROLL ─────────────────────── */
.animate {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(.22,1,.36,1),
              transform 0.8s cubic-bezier(.22,1,.36,1);
}
.animate.from-left  { transform: translateX(-60px); }
.animate.from-right { transform: translateX(60px); }
.animate.from-scale { transform: translateY(20px) scale(0.97); }

.animate.visible { opacity: 1; transform: none; }

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.28s; }
.delay-4 { transition-delay: 0.38s; }
.delay-5 { transition-delay: 0.48s; }

/* ── HERO: entra na abertura da página ────────── */
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroPhotoIn {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: none; }
}
.hero-text  { animation: heroTextIn  1s cubic-bezier(.22,1,.36,1) 0.15s both; }
.hero-photo { animation: heroPhotoIn 1s cubic-bezier(.22,1,.36,1) 0.4s  both; }

/* ── BOTÕES ──────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--vermelho);
  color: var(--branco);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 1rem 2.2rem;
  border: 2px solid var(--vermelho);
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--verm-hover);
  border-color: var(--verm-hover);
  transform: translateY(-4px);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--branco);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 1rem 2.2rem;
  border: 1px solid var(--cinza-esc);
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}
.btn-ghost:hover {
  border-color: var(--branco);
  color: var(--branco);
  transform: translateY(-4px);
}

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem var(--pad-h);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: padding 0.3s;
}
#nav.scrolled { padding-top: 0.9rem; padding-bottom: 0.9rem; }

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.8; }

.logo-img {
  height: 56px;
  width: auto;
  display: block;
  transition: height 0.3s;
}
#nav.scrolled .logo-img { height: 42px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--texto);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--branco); }

.nav-cta {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--vermelho);
  border: 1px solid var(--vermelho);
  padding: 0.55rem 1.3rem;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--vermelho);
  color: var(--branco);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--preto);
  padding: 10rem var(--pad-h) 6rem;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 60%, rgba(204,42,42,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 0% 40%, rgba(204,42,42,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6rem;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-photo {
  flex: 0 0 38%;
  position: relative;
}
.hero-photo img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(25%) contrast(1.08);
  display: block;
}
.hero-photo-line {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 55%;
  height: 55%;
  border: 2px solid var(--vermelho);
  z-index: -1;
  opacity: 0.25;
}

.hero-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--vermelho);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  line-height: 1.0;
  color: var(--branco);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 300;
  color: var(--texto);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 50ch;
}

.hero-services {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}
.hero-services span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cinza-md);
  text-transform: uppercase;
}
.hero-sep {
  color: var(--vermelho) !important;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   PROVA SOCIAL
═══════════════════════════════════════════════ */
#prova-social {
  background: var(--preto-md);
  padding: var(--section-pad) var(--pad-h);
  border-top: 1px solid rgba(255,255,255,0.04);
}
#prova-social .container { max-width: var(--max-w); margin: 0 auto; }

.ps-header {
  margin-bottom: 3.5rem;
}
.ps-intro {
  font-size: 1rem;
  color: var(--cinza-md);
  max-width: 58ch;
  line-height: 1.75;
  margin-top: 0.5rem;
}

.ps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
}

.ps-card {
  background: var(--preto-card);
  padding: 2.5rem 2rem 0;
  border-top: 2px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.25s;
}
.ps-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 48px; height: 48px;
  border-right: 1px solid rgba(204,42,42,0.15);
  border-top: 1px solid rgba(204,42,42,0.15);
  pointer-events: none;
}
.ps-card:hover {
  border-top-color: var(--vermelho);
  transform: translateY(-5px);
}

.ps-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.75rem;
  color: var(--vermelho);
  opacity: 0.7;
  transition: opacity 0.25s;
}
.ps-card:hover .ps-icon { opacity: 1; }
.ps-icon svg { width: 100%; height: 100%; }

.ps-stat {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  color: var(--branco);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.ps-num {
  display: inline;
}
.ps-prefix {
  font-size: 0.45em;
  color: var(--vermelho);
  letter-spacing: 0.05em;
  vertical-align: baseline;
  margin-right: 0.05em;
}
.ps-unit {
  font-size: 0.45em;
  color: var(--vermelho);
  letter-spacing: 0.05em;
  vertical-align: baseline;
  margin-left: 0.1em;
}

.ps-desc {
  font-size: 0.875rem;
  color: var(--texto);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.ps-source {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--branco);
  background: var(--vermelho);
  padding: 0.6rem 2rem;
  margin: auto -2rem 0;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   DIAGNÓSTICO
═══════════════════════════════════════════════ */
#diagnostico {
  background: var(--preto);
  padding: var(--section-pad) var(--pad-h);
  border-top: 1px solid rgba(204,42,42,0.15);
  border-bottom: 1px solid rgba(204,42,42,0.15);
}

.diag-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.diag-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.08;
  color: var(--branco);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.diag-intro {
  font-size: 1rem;
  color: var(--texto);
  line-height: 1.78;
  margin-bottom: 1rem;
  max-width: 48ch;
}
.diag-intro:last-of-type { margin-bottom: 2rem; }

.diag-fine {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--cinza-md);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cinza-esc);
}

.diag-para-quem {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vermelho);
  margin-bottom: 1rem;
}

.diag-publico {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.diag-publico li {
  font-size: 0.92rem;
  color: var(--texto);
  line-height: 1.6;
  padding-left: 1.2rem;
  position: relative;
}
.diag-publico li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--vermelho);
  font-weight: 700;
}

.diag-entregas {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.diag-entrega {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.diag-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--vermelho);
  opacity: 0.5;
  line-height: 1;
  padding-top: 0.1rem;
}

.diag-entrega strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 0.3rem;
}
.diag-entrega p {
  font-size: 0.86rem;
  color: var(--cinza-md);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   PROBLEMA
═══════════════════════════════════════════════ */
#problema {
  background: var(--preto-md);
  padding: var(--section-pad) var(--pad-h);
}
#problema .container { max-width: var(--max-w); margin: 0 auto; }

.problema-statement {
  margin-bottom: 1.5rem;
}
.statement-line {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--cinza-md);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.red-line {
  color: var(--branco);
}

.problema-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--texto);
  max-width: 60ch;
  margin-bottom: 4rem;
  line-height: 1.75;
}
.problema-sub em { font-style: italic; color: var(--branco); }

.problema-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.pcard {
  background: var(--preto-card);
  padding: 2.5rem 2rem;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, transform 0.25s;
}
.pcard:hover {
  border-top-color: var(--vermelho);
  transform: translateY(-5px);
}

.pcard-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--vermelho);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
  transition: opacity 0.3s;
}
.pcard:hover .pcard-num { opacity: 1; }

.pcard h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.pcard p {
  font-size: 0.9rem;
  color: var(--cinza-md);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   DIFERENÇA
═══════════════════════════════════════════════ */
#diferenca {
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.diferenca-inner {
  display: flex;
  align-items: center;
  max-width: calc(var(--max-w) + 8rem);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  gap: 6rem;
}

.diferenca-photo {
  flex: 0 0 44%;
  position: relative;
}
.diferenca-photo { overflow: hidden; }
.diferenca-photo img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(20%) contrast(1.05);
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}
.diferenca-photo.visible img { transform: scale(1); }
.dif-photo-line {
  position: absolute;
  top: 10%;
  right: -16px;
  width: 3px;
  height: 80%;
  background: var(--vermelho);
}

.diferenca-text {
  flex: 1;
}
.diferenca-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.08;
  color: var(--branco);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.diferenca-text > p {
  font-size: 1rem;
  color: var(--texto);
  line-height: 1.75;
  max-width: 50ch;
  margin-bottom: 2.5rem;
}

.dif-items { display: flex; flex-direction: column; gap: 1.5rem; }

.dif-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.dif-bar {
  flex-shrink: 0;
  width: 3px;
  height: 100%;
  min-height: 2.5rem;
  background: var(--vermelho);
  margin-top: 0.2rem;
}
.dif-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 0.3rem;
}
.dif-item p {
  font-size: 0.88rem;
  color: var(--cinza-md);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   PROCESSO
═══════════════════════════════════════════════ */
#processo {
  background: var(--preto-md);
  padding: var(--section-pad) var(--pad-h);
}
#processo .container { max-width: var(--max-w); margin: 0 auto; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 2.2rem;
  left: 3rem;
  right: 3rem;
  height: 1px;
  background: var(--cinza-esc);
}

.step {
  padding: 0 2rem 0 0;
  position: relative;
}
.step-icon {
  width: 34px;
  height: 34px;
  color: var(--vermelho);
  opacity: 0.55;
  margin-bottom: 1rem;
  transition: opacity 0.3s;
}
.step:hover .step-icon { opacity: 1; }
.step-icon svg { width: 100%; height: 100%; }

.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--branco);
  background: var(--preto-md);
  border: 1px solid var(--vermelho);
  padding: 0.5rem 0.9rem;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
  transition: background 0.25s, color 0.25s;
}
.step:hover .step-num {
  background: var(--vermelho);
}
.step-line {
  display: none;
}

.step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 0.6rem;
}
.step p {
  font-size: 0.875rem;
  color: var(--cinza-md);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   SERVIÇOS
═══════════════════════════════════════════════ */
#servicos {
  padding: var(--section-pad) var(--pad-h);
}
#servicos .container { max-width: var(--max-w); margin: 0 auto; }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.servico {
  background: var(--preto-card);
  padding: 2.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s, transform 0.25s, color 0.3s;
  position: relative;
}
.servico:hover {
  background: var(--vermelho);
  border-bottom-color: transparent;
  transform: translateY(-6px);
}

.servico-icon {
  display: block;
  width: 36px;
  height: 36px;
  color: var(--vermelho);
  margin-bottom: 1.25rem;
  opacity: 0.7;
  transition: opacity 0.25s, color 0.3s;
}
.servico-icon svg { width: 100%; height: 100%; }
.servico:hover .servico-icon {
  color: rgba(255,255,255,0.65);
  opacity: 1;
}

.servico h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.servico p {
  font-size: 0.9rem;
  color: var(--cinza-md);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.servico:hover p { color: rgba(255,255,255,0.8); }

.servico-tag {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--vermelho);
  opacity: 0.6;
  transition: color 0.3s, opacity 0.3s;
}
.servico:hover .servico-tag {
  color: rgba(255,255,255,0.5);
  opacity: 1;
}

/* ═══════════════════════════════════════════════
   QUEM
═══════════════════════════════════════════════ */
#quem {
  background: var(--preto-md);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.quem-inner {
  display: flex;
  align-items: center;
  max-width: calc(var(--max-w) + 8rem);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  gap: 6rem;
}

.quem-photo {
  flex: 0 0 40%;
  position: relative;
}
.quem-photo { overflow: hidden; }
.quem-photo img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(10%) contrast(1.05);
  transform: scale(1.06);
  transition: transform 1.4s cubic-bezier(.22,1,.36,1);
}
.quem-photo.visible img { transform: scale(1); }
.quem-photo::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 60%;
  height: 60%;
  border: 2px solid var(--vermelho);
  z-index: -1;
  opacity: 0.3;
}

.quem-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.08;
  color: var(--branco);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.quem-text p {
  font-size: 1rem;
  color: var(--texto);
  line-height: 1.8;
  max-width: 52ch;
  margin-bottom: 1.25rem;
}
.quem-text blockquote {
  border-left: 3px solid var(--vermelho);
  padding-left: 1.25rem;
  margin-top: 2rem;
  font-size: 1rem;
  font-style: italic;
  color: var(--cinza-md);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   PRODUTOS PREVIEW (index)
═══════════════════════════════════════════════ */
#produtos-preview {
  background: var(--preto);
  padding: var(--section-pad) var(--pad-h);
  border-top: 1px solid rgba(255,255,255,0.04);
}
#produtos-preview .container { max-width: var(--max-w); margin: 0 auto; }

.pp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.pp-header .section-title { margin-bottom: 0; }

.pp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.pp-card {
  background: var(--preto-card);
  padding: 2.25rem 2rem;
  border-top: 2px solid transparent;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.25s;
}
.pp-card:hover {
  border-top-color: var(--vermelho);
  transform: translateY(-5px);
}

.pp-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--vermelho);
  text-transform: uppercase;
  border: 1px solid rgba(204,42,42,0.3);
  padding: 0.28rem 0.6rem;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.pp-icon {
  width: 32px;
  height: 32px;
  color: var(--vermelho);
  opacity: 0.6;
  margin-bottom: 1.25rem;
  transition: opacity 0.25s;
}
.pp-card:hover .pp-icon { opacity: 1; }
.pp-icon svg { width: 100%; height: 100%; }

.pp-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.pp-card p {
  font-size: 0.875rem;
  color: var(--cinza-md);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}
.pp-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--vermelho);
  transition: color 0.2s, letter-spacing 0.2s;
  align-self: flex-start;
}
.pp-link:hover {
  color: var(--branco);
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .pp-grid { grid-template-columns: 1fr; gap: 1.5px; }
  .pp-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

/* ═══════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════ */
#cta {
  background: var(--preto-md);
  padding: var(--section-pad) var(--pad-h);
  border-top: 1px solid var(--cinza-esc);
}

.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.cta-inner .section-label { text-align: center; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--branco);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--texto);
  line-height: 1.75;
  max-width: 55ch;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-small {
  font-size: 0.78rem;
  color: var(--cinza-md);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cinza-esc);
  display: inline-block;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
#footer {
  background: var(--preto);
  border-top: 1px solid var(--cinza-esc);
  padding: 2.5rem var(--pad-h);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo-vermelho {
  height: 48px;
  width: 48px;
  object-fit: cover;
  display: block;
}
.footer-tagline {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--vermelho);
}
.footer-email {
  font-size: 0.82rem;
  color: var(--cinza-md);
  transition: color 0.2s;
}
.footer-email:hover { color: var(--branco); }
.footer-copy {
  font-size: 0.78rem;
  color: var(--cinza-esc);
}

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
#faq {
  background: var(--preto);
  padding: var(--section-pad) var(--pad-h);
  border-top: 1px solid rgba(204,42,42,0.15);
  border-bottom: 1px solid rgba(204,42,42,0.15);
}
#faq .container { max-width: var(--max-w); margin: 0 auto; }

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid var(--cinza-esc);
  padding: 2rem 0;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: border-color 0.25s;
}
.faq-item:last-child {
  border-bottom: 1px solid var(--cinza-esc);
}
.faq-item:last-child:hover {
  border-bottom-color: var(--vermelho);
}
.faq-item:hover {
  border-top-color: var(--vermelho);
}
.faq-item .dif-bar {
  flex-shrink: 0;
  opacity: 0.35;
  transition: opacity 0.25s;
}
.faq-item:hover .dif-bar {
  opacity: 1;
}

.faq-content { flex: 1; }

.faq-q {
  font-size: 1rem;
  font-weight: 600;
  color: var(--branco);
  line-height: 1.45;
  margin-bottom: 0.75rem;
}

.faq-a {
  font-size: 0.9rem;
  color: var(--cinza-md);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════
   RESPONSIVO — TABLET
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .faq-item { gap: 1rem; }

  .ps-grid { grid-template-columns: repeat(2, 1fr); }

  .diag-inner { grid-template-columns: 1fr; gap: 3rem; }

  .hero-inner { flex-direction: column; gap: 3rem; }
  .hero-photo { flex: unset; width: 100%; }
  .hero-photo img { height: 420px; object-position: center 20%; }
  .hero-photo-line { display: none; }

  .problema-cards { grid-template-columns: 1fr; gap: 1.5px; }

  .diferenca-inner { flex-direction: column; gap: 3rem; }
  .diferenca-photo { flex: unset; width: 100%; }
  .diferenca-photo img { height: 400px; }
  .dif-photo-line { display: none; }

  .steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .steps::before { display: none; }

  .servicos-grid { grid-template-columns: repeat(2, 1fr); }

  .quem-inner { flex-direction: column; gap: 3rem; }
  .quem-photo { flex: unset; width: 100%; }
  .quem-photo img { height: 420px; }
  .quem-photo::after { display: none; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVO — MOBILE
═══════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --pad-h: 1.25rem; }

  .nav-link { display: none; }
  .logo-img { height: 44px; }

  .ps-grid { grid-template-columns: 1fr; }

  .servicos-grid { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr; }
  .step { padding: 0; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }

  .footer-inner { flex-direction: column; text-align: center; }
}

/* ── ACESSIBILIDADE: movimento reduzido ─────── */
@media (prefers-reduced-motion: reduce) {
  .animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-text, .hero-photo {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════
   FRAMECODE — banner de produto (caminho pro pack)
═══════════════════════════════════════════════ */
#framecode-banner {
  background: var(--preto);
  padding: 0 var(--pad-h) var(--section-pad);
}
.fcb-card {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: var(--preto-card);
  border: 1px solid rgba(204,42,42,0.18);
  padding: clamp(2.5rem, 5vw, 4.5rem);
}
.fcb-glow {
  position: absolute;
  top: -45%; right: -8%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(204,42,42,0.13), transparent 65%);
  pointer-events: none;
}
.fcb-content { position: relative; z-index: 1; }
.fcb-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vermelho);
  border: 1px solid rgba(204,42,42,0.3);
  padding: 0.3rem 0.7rem;
  margin-bottom: 1.6rem;
}
.fcb-logo {
  width: clamp(230px, 32vw, 340px);
  margin-bottom: 1.5rem;
  opacity: 0.97;
}
.fcb-desc {
  font-size: 0.95rem;
  color: var(--texto);
  line-height: 1.75;
  max-width: 54ch;
  margin-bottom: 2rem;
}
.fcb-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 600px) {
  .fcb-card { padding: 2rem 1.4rem; }
  .fcb-logo { width: 100%; max-width: 280px; }
  .fcb-btns { width: 100%; }
}

/* ═══════════════════════════════════════════════
   POLISH — padrão Área de Membros (acabamento + acessibilidade)
═══════════════════════════════════════════════ */
/* foco visível por teclado */
.btn-primary:focus-visible, .btn-ghost:focus-visible,
.nav-cta:focus-visible, .nav-link:focus-visible,
.pp-link:focus-visible, .footer-email:focus-visible {
  outline: 2px solid var(--vermelho);
  outline-offset: 3px;
}
/* seleção de texto na cor da marca */
::selection { background: var(--vermelho); color: #fff; }
/* scrollbar coerente com o tema escuro */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--preto); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #3a3a3a; }
html { scrollbar-width: thin; scrollbar-color: #2a2a2a var(--preto); }
/* sem flash escuro enquanto as fotos carregam */
.hero-photo img, .diferenca-photo img, .quem-photo img { background: var(--preto-card); }
/* resposta tátil consistente nos botões */
.btn-primary:active, .btn-ghost:active, .nav-cta:active { transform: translateY(-1px) scale(0.99); }
/* link de nav com sublinhado animado (igual à área de membros) */
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1.5px; background: var(--vermelho);
  transition: width 0.3s cubic-bezier(.22,1,.36,1);
}
.nav-link:hover::after { width: 100%; }
