/* =====================
   RESET & ROOT
===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --brand:         #1e3a8a;
  --brand-light:   #2952c8;
  --brand-soft:    #4a78e0;
  --bg:            #0a1832;
  --surface:       #0f1e3d;
  --surface-2:     #152849;
  --border:        rgba(192,199,213,0.10);
  --border-bright: rgba(74,120,224,0.35);
  --text:          #c0c7d5;
  --muted:         #8b95ae;
  --white:         #f5f4f0;
  --green:         #4ade80;
  --red:           #f87171;
  --gold:          #fbbf24;
  --font-display:  'Anton', sans-serif;
  --font-body:     'Asap Condensed', sans-serif;
  --radius-sm:     6px;
  --radius-md:     14px;
  --radius-lg:     22px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Noise texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' 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: .025;
  pointer-events: none;
  z-index: 0;
}

/* Grid background (aplicado em seções específicas via HTML) */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192,199,213,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,199,213,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* =====================
   UTILITIES
===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.section-dark { background-color: var(--bg); }
.section-alt  { background-color: var(--surface); }

.section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-label.center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 40px;
  max-width: 820px;
}
.section-title.center { text-align: center; margin-left: auto; margin-right: auto; }

.highlight-text { color: var(--gold); font-weight: 600; }

/* Hero headline blocks */
.hero-hl-line { display: block; }
.hero-hl-accent {
  display: block;
  background: linear-gradient(135deg, #8BB8FF 0%, #4a78e0 50%, #2952c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 2px 0;
}

/* =====================
   BUTTON
===================== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  border: none;
  outline: none;
}

.btn-cta {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 100%);
  color: var(--white);
  box-shadow: 0 0 40px rgba(41, 82, 200, 0.45);
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 56px rgba(41, 82, 200, 0.65);
  filter: brightness(1.1);
}

/* =====================
   NAVBAR
===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10, 24, 50, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  filter: none;
  box-shadow: none;
}

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta { padding: 10px 22px; font-size: 14px; }

/* =====================
   HERO
===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('desing.system/fundos/background-3.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 24, 50, 0.93) 0%,
    rgba(10, 24, 50, 0.80) 50%,
    rgba(30, 58, 138, 0.28) 100%
  );
}

/* Spotlight sweep — light-spotlight-render skill */
.hero-spotlight {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  --spot-x: -35%;
  background: radial-gradient(
    ellipse 40% 130% at var(--spot-x) 48%,
    transparent 0%,
    rgba(10, 24, 50, 0.92) 54%
  );
}

@media (prefers-reduced-motion: reduce) {
  .hero-spotlight { display: none; }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 28px 90px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-soft);
  border: 1px solid var(--border-bright);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 36px;
  background: rgba(74, 120, 224, 0.08);
}
.hero-badge::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand-soft);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 84px);
  line-height: 1.18;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 860px;
}

.hero-subheadline {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.78;
  letter-spacing: 0.025em;
  margin-bottom: 16px;
  max-width: 640px;
}
.hero-subheadline--destaque {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 40px;
}

.hero-ctas { margin-bottom: 44px; }
.hero-ctas .btn { font-size: 18px; padding: 19px 44px; }

.hero-quick-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-quick-links .ql-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  margin-right: 8px;
}
.hero-quick-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border-bright);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  margin-right: 12px;
}
.hero-quick-links a:hover {
  color: var(--brand-soft);
  border-color: var(--brand-soft);
}

/* =====================
   HISTÓRIA / PROPOSTA
===================== */
.historia-wrap {
  max-width: 820px;
}

.historia-body {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  margin-top: 40px;
}

/* Linha vertical animada */
.historia-accent-line {
  width: 2px;
  flex-shrink: 0;
  align-self: stretch;
  background: linear-gradient(180deg, var(--gold) 0%, var(--brand-soft) 55%, transparent 100%);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.3s cubic-bezier(0.16,1,0.3,1);
}
.historia-body.line-drawn .historia-accent-line {
  transform: scaleY(1);
}

.historia-paragraphs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.historia-text {
  font-size: 19px;
  color: var(--text);
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.historia-stat {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

/* Pull quote — linha de maior impacto */
.historia-pullquote {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pullquote-text {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 60px);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 14px;
}
.pullquote-sub {
  display: block;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Parágrafo de fechamento */
.historia-closing {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
}
.historia-closing p {
  font-size: 18px;
  color: var(--white);
  line-height: 1.78;
  font-weight: 500;
}

@media (max-width: 768px) {
  .historia-body { gap: 20px; }
  .pullquote-text { font-size: clamp(32px, 8vw, 48px); }
}

/* Foto — container com glow */
.sobre-photo {
  position: relative;
  margin-top: -100px;
  max-width: 420px;
}

/* Glow brand atrás da figura */
.sobre-photo::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 80%;
  background: radial-gradient(
    ellipse at 50% 88%,
    rgba(41, 82, 200, 0.38) 0%,
    rgba(39, 31, 131, 0.18) 42%,
    transparent 68%
  );
  z-index: 0;
  pointer-events: none;
}

/* A imagem */
.sobre-foto {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;

  /* Dissolve o fundo branco no navy do site */
  mix-blend-mode: multiply;

  /* Compensa o escurecimento do multiply sem estourar */
  filter: brightness(1.08) contrast(1.04) saturate(1.02);

  /* Fade suave na base para ancorar na seção */
  -webkit-mask-image: linear-gradient(
    to top,
    transparent 0%,
    black 14%,
    black 100%
  );
  mask-image: linear-gradient(
    to top,
    transparent 0%,
    black 14%,
    black 100%
  );
}

/* Entrada da foto — slide lateral + scale + fade, spring easing */
.sobre-photo.reveal {
  transform: translateX(-28px) translateY(20px) scale(0.97);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.sobre-photo.reveal.visible {
  transform: translateX(0) translateY(0) scale(1);
}

/* Responsivo */
@media (max-width: 1024px) {
  .sobre-photo::before { width: 70%; height: 60%; }
}
@media (max-width: 768px) {
  .sobre-photo.reveal { transform: translateY(24px); }
  .sobre-foto { max-width: 320px; margin: 0 auto; }
}
.photo-sub {
  font-size: 12px;
  color: var(--brand-soft);
  opacity: 0.65;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =====================
   DOR
===================== */
.dor-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
}

.dor-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: background 0.25s, border-color 0.25s;
}
.dor-item:hover {
  background: var(--surface-2);
  border-color: var(--border-bright);
}

.dor-icon {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.7;
}
.dor-item p {
  font-size: 20px;
  color: var(--text);
  line-height: 1.65;
  letter-spacing: 0.025em;
}

.dor-conclusion {
  font-size: 19px;
  color: var(--white);
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.025em;
  padding: 32px 36px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-bright);
}

/* =====================
   SOLUÇÃO
===================== */
.solucao-header { margin-bottom: 28px; }

.solucao-text {
  font-size: 20px;
  color: var(--text);
  line-height: 1.85;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  max-width: 820px;
}

.solucao-highlight {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #ffe082 0%, var(--gold) 60%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 36px;
}

/* =====================
   BENEFÍCIOS
===================== */
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.beneficio-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 28px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}
.beneficio-item:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.beneficio-check {
  font-size: 20px;
  color: var(--green);
  flex-shrink: 0;
  line-height: 1.5;
}
.beneficio-item p {
  font-size: 20px;
  color: var(--text);
  line-height: 1.65;
  letter-spacing: 0.02em;
}

/* =====================
   SOBRE FELIPE
===================== */
.sobre-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) 1fr;
  gap: 48px;
  align-items: end;
}

.sobre-name {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.sobre-text {
  font-size: 18px;
  color: var(--text);
  line-height: 1.82;
  letter-spacing: 0.025em;
  margin-bottom: 18px;
}
.sobre-text:last-child { margin-bottom: 0; }

/* =====================
   PROVA SOCIAL
===================== */
.numeros-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 64px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
}

.numero-item {
  text-align: center;
  padding: 44px 36px;
  flex: 1;
  min-width: 160px;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.numero-item:last-child { border-right: none; }
.numero-item:hover { background: var(--surface-2); }

.numero {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--white) 0%, var(--brand-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.numero-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
  max-width: 140px;
  margin: 0 auto;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.depoimento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.depoimento-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}

/* =====================
   PROVA SOCIAL — MOTION
===================== */
@keyframes gold-pulse-glow {
  0%   { filter: drop-shadow(0 0 0px rgba(251,191,36,0)); }
  35%  { filter: drop-shadow(0 0 10px rgba(251,191,36,0.65)) drop-shadow(0 0 24px rgba(251,191,36,0.25)); }
  100% { filter: drop-shadow(0 0 0px rgba(251,191,36,0)); }
}
.numero.counted {
  animation: gold-pulse-glow 1.4s cubic-bezier(0.16,1,0.3,1) forwards;
}

@keyframes label-line-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
#prova-social .section-label {
  position: relative;
  display: inline-block;
}
#prova-social .section-label::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 2px;
}
#prova-social .section-label.line-animated::after {
  animation: label-line-grow 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .numero.counted { animation: none; }
  #prova-social .section-label::after { animation: none; transform: scaleX(1); }
}
.depoimento-text {
  font-size: 18px;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.depoimento-autor {
  font-size: 14px;
  color: var(--brand-soft);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* =====================
   PRODUTOS
===================== */
.produtos-header {
  text-align: center;
  margin-bottom: 60px;
}

.produtos-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.7;
}

#produtos .section-label {
  position: relative;
  display: inline-block;
}
#produtos .section-label::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 2px;
}
#produtos .section-label.line-animated::after {
  animation: label-line-grow 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto;
}

/* 3º card (Mentoria) centralizado abaixo dos primeiros dois */
.produto-card:last-child {
  grid-column: 1 / -1;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* — Tokens de acento por produto — */
#notion     { --card-accent: #4A78E0; --card-glow: rgba(74, 120, 224, 0.13); --card-hover-shadow: rgba(74, 120, 224, 0.22); --card-hover-border: rgba(74, 120, 224, 0.5); }
#flashcards { --card-accent: #FBBF24; --card-glow: rgba(251, 191, 36, 0.10); --card-hover-shadow: rgba(251, 191, 36, 0.18); --card-hover-border: rgba(251, 191, 36, 0.45); }
#mentoria   { --card-accent: #22D3EE; --card-glow: rgba(34, 211, 238, 0.10); --card-hover-shadow: rgba(34, 211, 238, 0.18); --card-hover-border: rgba(34, 211, 238, 0.40); }

/* — Card base — */
.produto-card {
  --mouse-x: 50%;
  --mouse-y: 40%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    border-color 0.35s,
    box-shadow   0.4s,
    transform    0.5s cubic-bezier(0.16,1,0.3,1);
}
.produto-card:hover {
  border-color: var(--card-hover-border, rgba(74,120,224,0.45));
  transform: translateY(-10px);
  box-shadow: 0 32px 90px var(--card-hover-shadow, rgba(41,82,200,0.2)), 0 0 0 1px var(--card-hover-border, rgba(74,120,224,0.12));
}

/* Spotlight glow following cursor */
.produto-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 300px at var(--mouse-x) var(--mouse-y),
    var(--card-glow, rgba(41,82,200,0.11)),
    transparent 65%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.produto-card:hover .produto-card-glow { opacity: 1; }

/* Ícone decorativo — fundo do card */
.produto-card-icon {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 160px;
  height: 160px;
  color: var(--card-accent, var(--white));
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s;
}
.produto-card:hover .produto-card-icon { opacity: 0.13; }
.produto-card-icon svg { width: 100%; height: 100%; }

/* Top accent line — draws on entrance */
.produto-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--card-accent, var(--gold)) 0%, var(--brand-soft) 60%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.85s cubic-bezier(0.16,1,0.3,1);
  z-index: 2;
}
.produto-card.entrance-done::before { transform: scaleX(1); }

/* Inner content */
.produto-card-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 44px 40px 40px;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Header row: status + tag */
.produto-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.produto-status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.produto-status--live {
  background: rgba(74,222,128,0.1);
  color: var(--green);
  border: 1px solid rgba(74,222,128,0.22);
}
.produto-status--soon {
  background: rgba(192,199,213,0.07);
  color: var(--muted);
  border: 1px solid var(--border);
}

.produto-tag {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--card-accent, var(--gold));
}

.produto-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 34px);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.produto-desc {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
}

/* Feature list */
.produto-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.produto-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.pf-check {
  color: var(--card-accent, var(--gold));
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA full-width */
.produto-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 14px;
  padding: 16px 28px;
  margin-top: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .produto-card::before { transition: none; transform: scaleX(1); }
  #produtos .section-label::after { animation: none; transform: scaleX(1); }
}

/* =====================
   OBJEÇÕES — Accordion
===================== */
#objecoes .section-label {
  position: relative;
  display: inline-block;
}
#objecoes .section-label::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 2px;
}
#objecoes .section-label.line-animated::after {
  animation: label-line-grow 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}

.objecoes-intro {
  text-align: center;
  margin-bottom: 56px;
}

.objecoes-accordion {
  max-width: 860px;
  margin: 0 auto;
}

.objecao-item {
  position: relative;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.objecao-item:first-child {
  border-top: 1px solid var(--border);
}

.objecao-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--brand-light), var(--brand));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 0 2px 2px 0;
}

.objecao-item.is-open {
  background: rgba(41, 82, 200, 0.06);
}

.objecao-item.is-open::before {
  transform: scaleY(1);
}

.objecao-trigger {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  background: none;
  border: none;
  padding: 28px 12px 28px 20px;
  cursor: pointer;
  text-align: left;
}

.objecao-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--brand-light);
  flex-shrink: 0;
  width: 28px;
  opacity: 0.7;
  transition: opacity 0.25s;
}

.objecao-item.is-open .objecao-num {
  opacity: 1;
}

.objecao-pergunta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  line-height: 1.35;
  flex: 1;
  transition: color 0.25s;
}

.objecao-item.is-open .objecao-pergunta {
  color: #fff;
}

.objecao-chevron {
  width: 22px;
  height: 22px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s;
}

.objecao-item.is-open .objecao-chevron {
  transform: rotate(180deg);
  color: var(--brand-light);
}

.objecao-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.objecao-body-inner {
  padding: 0 12px 28px 84px;
}

.objecao-resposta {
  font-size: 18px;
  color: var(--text);
  line-height: 1.75;
  letter-spacing: 0.015em;
}

/* =====================
   CTA FINAL
===================== */
.cta-final-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('desing.system/fundos/background-6.png');
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 24, 50, 0.93) 0%,
    rgba(10, 24, 50, 0.88) 60%,
    rgba(10, 24, 50, 0.96) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  color: var(--white);
  line-height: 1.07;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 820px;
  margin: 0 auto 32px;
}

.cta-text {
  font-size: 19px;
  color: var(--text);
  line-height: 1.82;
  letter-spacing: 0.025em;
  max-width: 680px;
  margin: 0 auto 16px;
}

.cta-sub {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-soft);
  margin: 36px 0;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.cta-buttons .btn { font-size: 15px; }

.ps-text {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.72;
  font-style: italic;
  opacity: 0.85;
}
.ps-text strong {
  color: var(--gold);
  font-style: normal;
}

/* =====================
   FOOTER
===================== */
.footer {
  background: #050d1e;
  padding: 52px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
  filter: none;
  box-shadow: none;
}

.footer-links {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 15px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--brand-soft); }
.footer-links .sep { color: rgba(192,199,213,0.2); }

.footer-social { display: flex; gap: 28px; }
.footer-social a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--brand-soft); }

.footer-copy {
  font-size: 13px;
  color: rgba(192,199,213,0.25);
}

/* =====================
   SCROLL ANIMATIONS
===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =====================
   SECTION BACKGROUNDS
   hero→3, historia→4, dor→5,
   prova-social→7, produtos→8, cta→6
===================== */
#historia,
#dor,
#prova-social,
#produtos {
  position: relative;
  isolation: isolate;
}

#historia::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('desing.system/fundos/background-4.png') center/cover no-repeat;
  opacity: 0.07;
  z-index: -1;
}

#dor::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('desing.system/fundos/background-5.png') center/cover no-repeat;
  opacity: 0.07;
  z-index: -1;
}

#prova-social::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('desing.system/fundos/background-7.png') center/cover no-repeat;
  opacity: 0.07;
  z-index: -1;
}

#produtos::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('desing.system/fundos/background-8.png') center right/cover no-repeat;
  opacity: 0.09;
  z-index: -1;
}

#objecoes {
  position: relative;
  isolation: isolate;
}
#objecoes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('desing.system/fundos/background-5.png') center/cover no-repeat;
  opacity: 0.05;
  z-index: -1;
}

/* Section divider — substituído por border-top nas .section */
.section-divider { display: none; }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
  .sobre-grid       { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .sobre-photo      { max-width: 380px; margin-top: 0; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .produtos-grid    { grid-template-columns: 1fr; max-width: 100%; }
  .numeros-grid     { flex-direction: row; }
  .numero-item      { border-right: none; border-bottom: 1px solid var(--border); flex: auto; width: 48%; }
  .numero-item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .section          { padding: 72px 0; }
  .nav-links        { display: none; }
  .beneficios-grid  { grid-template-columns: 1fr; }
  .objecao-body-inner { padding-left: 52px; }
  .cta-buttons      { flex-direction: column; align-items: center; }
  .hero-quick-links { flex-direction: column; align-items: flex-start; gap: 10px; }
  .numeros-grid     { flex-direction: column; }
  .numero-item      { width: 100%; border-bottom: 1px solid var(--border); }
}

@media (max-width: 480px) {
  .nav-cta          { display: none; }
  .hero-headline    { font-size: 32px; }
  .hero-ctas .btn   { width: 100%; text-align: center; }
}
