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

:root {
  --black:      #0F0F10;
  --white:      #FFFFFF;
  --blue:       #3640CC;
  --blush:      #F2C0B0;
  --rose:       #F2C0B0;
  --teal:       #547D88;
  --dark:       #1A1A1C;
  --muted:      #7D6E68;
  --border:     #E4DDD9;
  --bg-soft:    #F7F4F2;
  --blue-dim:   color-mix(in srgb, #3640CC 10%, transparent);
  --blue-rule:  color-mix(in srgb, #3640CC 22%, transparent);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Archivo', system-ui, sans-serif;
  background: var(--white);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: color-mix(in srgb, var(--white) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-brand svg {
  height: 18px;
  width: auto;
  fill: var(--black);
}

.nav-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-dim);
  border: 1px solid var(--blue-rule);
  padding: 3px 10px;
  border-radius: 2px;
}

.nav-cta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  padding: 7px 18px;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.82; }

.nav-tag:empty { display: none; }

/* ─── PHOTO REVEAL CANVAS ─── */
#webgl-photo {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

/* ─── LIQUID GRADIENT CANVAS ─── */
#hero-gradient-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

#liquid-gradient-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding-top: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 119px,
    color-mix(in srgb, var(--white) 6%, transparent) 119px,
    color-mix(in srgb, var(--white) 6%, transparent) 120px
  );
  pointer-events: none;
}

.hero-left {
  padding: 80px 64px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--rose);
}

.hero-eyebrow-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
}

.hero-title {
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 36px;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--rose);
}

.hero-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.60);
  max-width: 400px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-ghost {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--black); }

/* ─── SCORE PANEL ─── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px 80px 0;
  position: relative;
  z-index: 1;
}

.score-panel {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  box-shadow: 0 4px 32px color-mix(in srgb, var(--black) 6%, transparent);
}

.score-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.score-panel-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.score-panel-date {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-family: 'Courier New', monospace;
}

.score-item { margin-bottom: 20px; }
.score-item:last-child { margin-bottom: 0; }

.score-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.score-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--dark);
}

.score-val {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: 'Courier New', monospace;
  color: var(--rose);
}

.score-track {
  height: 4px;
  background: var(--bg-soft);
  border-radius: 2px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--rose);
  animation: fillBar 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fillBar {
  from { width: 0; }
  to { width: var(--w); }
}

.score-total {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.score-total-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.score-total-num {
  font-size: 52px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--rose);
}

.score-total-note {
  font-size: 10px;
  color: var(--muted);
  text-align: right;
  line-height: 1.5;
  max-width: 120px;
}

/* ─── SECTIONS ─── */
section {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.s-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.s-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--blue);
}

.s-title {
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--black);
}

.s-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--rose);
}

/* ─── PAIN POINTS ─── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 64px;
}

.pain-item {
  background: var(--white);
  padding: 40px 32px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.pain-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.pain-item:hover { background: var(--bg-soft); }
.pain-item:hover::after { transform: scaleX(1); }

.pain-num {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  font-family: 'Courier New', monospace;
}

.pain-name {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.25;
}

.pain-desc {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

/* ─── NÃO É ─── */
.notsection {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 3px;
  margin-top: 64px;
}

.not-item {
  display: grid;
  grid-template-columns: 48px 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 36px 40px;
  border-bottom: 1px solid var(--border);
}

.not-item:last-child { border-bottom: none; }

.not-x {
  font-size: 22px;
  font-weight: 900;
  color: var(--rose);
  opacity: 0.6;
  line-height: 1;
  margin-top: 2px;
}

.not-name {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--black);
}

.not-desc {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

/* ─── TIMELINE ─── */
.timeline-wrap {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.timeline-wrap::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: var(--blue-rule);
}

.tl-step {
  padding: 0 24px;
  position: relative;
}

.tl-step:first-child { padding-left: 0; }
.tl-step:last-child { padding-right: 0; }

.tl-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--blue-rule);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.tl-dot-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.tl-n {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  font-family: 'Courier New', monospace;
  margin-bottom: 10px;
}

.tl-title {
  font-size: 19px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 12px;
}

.tl-desc {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

.tl-time {
  margin-top: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--muted) 55%, transparent);
  font-family: 'Courier New', monospace;
}

/* ─── DELIVERABLES ─── */
.deliv-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.deliv-item {
  background: var(--white);
  padding: 40px;
  display: flex;
  gap: 24px;
}

.deliv-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 2px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-rule);
  display: flex;
  align-items: center;
  justify-content: center;
}

.deliv-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.deliv-name {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 10px;
}

.deliv-desc {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

/* ─── INVESTIMENTO ─── */
.invest-wrap {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.invest-card {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 48px;
  background: var(--bg-soft);
}

.invest-card.featured {
  background: var(--blue);
  border-color: var(--blue);
}

.invest-plabel {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.invest-card.featured .invest-plabel {
  color: color-mix(in srgb, var(--white) 65%, transparent);
}

.invest-price {
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--black);
  margin-bottom: 8px;
}

.invest-price span {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--muted);
}

.invest-card.featured .invest-price { color: var(--white); }
.invest-card.featured .invest-price span { color: color-mix(in srgb, var(--white) 60%, transparent); }

.invest-note {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 16px;
}

.invest-card.featured .invest-note {
  color: color-mix(in srgb, var(--white) 65%, transparent);
}

.invest-includes {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.invest-card.featured .invest-includes {
  border-top-color: color-mix(in srgb, var(--white) 18%, transparent);
}

.invest-inc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: var(--muted);
}

.invest-inc-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}

.invest-card.featured .invest-inc-item {
  color: color-mix(in srgb, var(--white) 80%, transparent);
}

.invest-card.featured .invest-inc-item::before {
  background: var(--blush);
}

.payback-strip {
  margin-top: 20px;
  padding: 28px 40px;
  background: color-mix(in srgb, var(--blush) 18%, var(--white));
  border: 1px solid color-mix(in srgb, var(--rose) 25%, transparent);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.payback-text {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
}

.payback-tag {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--rose);
  white-space: nowrap;
}

/* ─── NEXT STEPS ─── */
.next-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.next-item {
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-soft);
}

.next-arrow {
  font-size: 20px;
  color: var(--blue);
  font-weight: 900;
}

.next-name {
  font-size: 18px;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 4px;
}

.next-desc {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── SOBRE MIM ─── */
.sobre-wrap {
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}

.sobre-photo-col {
  flex-shrink: 0;
}

.sobre-photo {
  width: 320px;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 3px;
}

.sobre-content-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 8px;
}

.sobre-name {
  font-size: clamp(40px, 3.5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.93;
  color: var(--black);
  margin-bottom: 8px;
}

.sobre-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 36px;
}

.sobre-bio {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}

.sobre-bio strong {
  color: var(--black);
  font-weight: 700;
}

.clients-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.clients-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.clients-logos img {
  height: 100px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: opacity 0.2s, filter 0.2s;
}

.clients-logos img:hover {
  opacity: 0.9;
  filter: grayscale(0%);
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--blue);
  padding: 88px 48px;
  text-align: center;
}

.cta-band-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--white) 50%, transparent);
  margin-bottom: 24px;
}

.cta-band-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 40px;
}

.cta-band-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--blush);
}

.cta-band-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.cta-band-btn:hover { opacity: 0.9; transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-brand svg {
  height: 14px;
  width: auto;
  fill: color-mix(in srgb, var(--black) 30%, transparent);
}

.footer-link {
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--black); }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.38s; }
.delay-4 { animation-delay: 0.52s; }
.delay-5 { animation-delay: 0.66s; }

/* ─── HOME: HERO ─── */
.home-hero {
  min-height: 100vh;
  padding-top: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 48px;
  padding-right: 48px;
  position: relative;
  overflow: hidden;
  background: transparent;
  max-width: 1200px;
  margin: 0 auto;
}

.home-hero::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 119px,
    color-mix(in srgb, var(--white) 6%, transparent) 119px,
    color-mix(in srgb, var(--white) 6%, transparent) 120px
  );
  pointer-events: none;
  z-index: 0;
}

.home-hero > * { position: relative; z-index: 1; }

.home-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.home-hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--rose);
}

.home-hero-eyebrow-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
}

.home-hero-title {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 48px;
  max-width: 800px;
}

.home-hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--rose);
}

.home-hero-sub {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.60);
  max-width: 480px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 40px;
}

/* ─── HOME: TRAJETÓRIA ─── */
.traj-wrap {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.traj-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  position: relative;
}

.traj-step::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 6px;
  font-size: 13px;
  color: var(--blue-rule);
  font-weight: 700;
  z-index: 1;
}

.traj-step:last-child::after { display: none; }

.traj-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  font-family: 'Courier New', monospace;
  margin-bottom: 8px;
}

.traj-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.traj-step.current .traj-name { color: var(--blue); }

/* ─── HOME: CREDENCIAIS ─── */
.cred-strip {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.cred-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cred-value {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1;
}

.cred-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── HOME: OFERTAS ─── */
.ofertas-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.oferta-card {
  background: var(--white);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.oferta-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.oferta-card:hover { background: var(--bg-soft); }
.oferta-card:hover::after { transform: scaleX(1); }

.oferta-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  font-family: 'Courier New', monospace;
  margin-bottom: 20px;
}

.oferta-name {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.1;
}

.oferta-desc {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 24px;
  flex: 1;
}

.oferta-para-quem {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  line-height: 1.5;
}

.oferta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}

.oferta-list li {
  font-size: 18px;
  color: var(--muted);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.oferta-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  margin-top: 5px;
}

.oferta-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  margin-top: auto;
}

.oferta-cta:hover { gap: 10px; }

/* ─── HOME: MANIFESTO ─── */
.manifesto-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
  margin-top: 0;
}

.manifesto-text {
  font-size: 18px;
  line-height: 1.9;
  color: var(--muted);
}

.manifesto-text p { margin-bottom: 20px; }
.manifesto-text p:last-child { margin-bottom: 0; }

.manifesto-text strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-top: 8px;
}

/* ─── TREINAMENTO: HERO ─── */
.trein-hero {
  min-height: 100vh;
  padding-top: 52px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.trein-hero::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 119px,
    color-mix(in srgb, var(--white) 6%, transparent) 119px,
    color-mix(in srgb, var(--white) 6%, transparent) 120px
  );
  pointer-events: none;
  z-index: 0;
}

.trein-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.trein-hero-title {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 48px;
  max-width: 800px;
}

.trein-hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--rose);
}

.trein-hero-sub {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.60);
  max-width: 480px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 40px;
}

/* ─── TREINAMENTO: SHARED SECTION ─── */
.page-section {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── TREINAMENTO: OBJETIVO ─── */
.trein-objetivo-section {
  border-top: 1px solid var(--border);
}

.trein-objetivo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.trein-objetivo-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.trein-objetivo-desc p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
}

/* ─── TREINAMENTO: ENTREGAMOS ─── */
.trein-entrega-header {
  display: flex;
  align-items: baseline;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.trein-entrega-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.4;
}

.trein-entrega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.trein-entrega-card {
  background: var(--white);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.trein-entrega-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.trein-entrega-card:hover { background: var(--bg-soft); }
.trein-entrega-card:hover::after { transform: scaleX(1); }

.trein-entrega-num {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  font-family: 'Courier New', monospace;
}

.trein-entrega-name {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.1;
}

.trein-entrega-desc {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

/* ─── TREINAMENTO: EFICIÊNCIA ─── */
.trein-efic-section {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  max-width: 100%;
  padding: 96px 0;
}

.trein-efic-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.trein-efic-note {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 32px;
}

.trein-efic-note strong {
  color: var(--black);
  font-style: italic;
}

.trein-efic-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  background: var(--white);
}

.trein-efic-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid var(--border);
}

.trein-efic-row:last-child { border-bottom: none; }

.trein-efic-cat {
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  color: var(--muted);
  padding: 24px 28px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  padding-top: 28px;
}

.trein-efic-list {
  list-style: none;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trein-efic-list li {
  font-size: 18px;
  color: var(--dark);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trein-efic-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ─── TREINAMENTO: DEPOIMENTOS ─── */
.trein-depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trein-depo-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trein-video-wrapper {
  aspect-ratio: 9 / 16;
  border-radius: 3px;
  overflow: hidden;
  background: #000;
}

.trein-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.trein-video-placeholder {
  aspect-ratio: 9 / 16;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  transition: background 0.2s;
  cursor: pointer;
}

.trein-video-placeholder:hover {
  background: color-mix(in srgb, var(--blue) 4%, var(--white));
  border-color: var(--blue-rule);
}

.trein-video-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.trein-video-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.trein-depo-company {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}

.trein-depo-role {
  font-size: 18px;
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.01em;
}

/* ─── TREINAMENTO: CTA ─── */
.trein-cta-section {
  background: var(--black);
  padding: 96px 48px;
}

.trein-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.trein-cta-title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 32px;
}

.trein-cta-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--rose);
}

.trein-cta-sub {
  font-size: 18px;
  color: color-mix(in srgb, var(--white) 55%, transparent);
  margin-bottom: 40px;
}

.btn-cta-band {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  border: 1px solid color-mix(in srgb, var(--white) 30%, transparent);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-cta-band:hover {
  border-color: var(--white);
  background: color-mix(in srgb, var(--white) 8%, transparent);
}

/* ─── ASSESSORIA: RITUAIS ─── */
.asses-rituals {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  background: var(--white);
}

.asses-ritual-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.asses-ritual-item:last-child { border-bottom: none; }
.asses-ritual-item:hover { background: color-mix(in srgb, var(--blue) 3%, var(--white)); }

.asses-ritual-num {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--blue);
  font-family: 'Courier New', monospace;
  padding-top: 4px;
  flex-shrink: 0;
  width: 20px;
}

.asses-ritual-name {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.2;
}

.asses-ritual-desc {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

/* ─── ASSESSORIA: ENTREGÁVEIS ─── */
.asses-deliv-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.asses-deliv-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.2s;
}

.asses-deliv-item:last-child { border-bottom: none; }
.asses-deliv-item:hover { background: var(--bg-soft); }

.asses-deliv-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 8px;
}

.asses-deliv-name {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 4px;
}

.asses-deliv-desc {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

/* ─── RESPONSIVE TREINAMENTO ─── */
@media (max-width: 960px) {
  .trein-hero-inner { padding: 60px 24px; }
  .trein-objetivo-grid { grid-template-columns: 1fr; gap: 40px; }
  .trein-entrega-grid { grid-template-columns: 1fr; }
  .trein-entrega-header { flex-direction: column; gap: 12px; }
  .trein-efic-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .trein-depo-grid { grid-template-columns: 1fr; }
  .trein-cta-section { padding: 64px 24px; }
  .page-section { padding: 72px 24px; }
}

@media (max-width: 600px) {
  .trein-hero-title { font-size: 44px; }
  .trein-efic-row { grid-template-columns: 1fr; }
  .trein-efic-cat { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 24px; }
  .trein-efic-list { padding: 16px 24px; }
}

/* ─── RESPONSIVE HOME ─── */
@media (max-width: 960px) {
  .home-hero { padding-left: 24px; padding-right: 24px; }
  .traj-wrap { flex-wrap: wrap; gap: 24px; }
  .traj-step::after { display: none; }
  .traj-step { flex: none; width: calc(50% - 12px); }
  .cred-strip { gap: 24px; }
  .ofertas-grid { grid-template-columns: 1fr; }
  .manifesto-wrap { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .home-hero-title { font-size: 44px; }
  .traj-step { width: 100%; }
  .cred-strip { flex-direction: column; gap: 16px; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 60px 24px 60px; }
  nav { padding: 0 24px; }
  .nav-tag { display: none; }
  section { padding: 72px 24px; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .timeline-wrap { grid-template-columns: 1fr 1fr; gap: 40px; }
  .timeline-wrap::before { display: none; }
  .invest-wrap { grid-template-columns: 1fr; }
  .next-grid { grid-template-columns: 1fr; }
  .deliv-grid { grid-template-columns: 1fr; }
  .not-item { grid-template-columns: 36px 1fr; }
  .not-desc { display: none; }
  .sobre-wrap { grid-template-columns: 1fr; padding: 56px 24px; gap: 40px; }
  .sobre-photo { width: 100%; height: 300px; }
  .sobre-content-col { padding-top: 0; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 600px) {
  .pain-grid { grid-template-columns: 1fr; }
  .timeline-wrap { grid-template-columns: 1fr; }
  .hero-title { font-size: 40px; }
  .cta-band { padding: 64px 24px; }
  .payback-strip { flex-direction: column; gap: 16px; }
}
