/* =========================================
   RESET & BASE
========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #3a3a3a;
  background: #fffaf0;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { line-height: 1.1; font-weight: 500; }
a { color: inherit; text-decoration: none; }

/* =========================================
   CLAY DESIGN TOKENS
========================================= */
:root {
  /* Surface */
  --canvas:           #fffaf0;
  --surface-soft:     #faf5e8;
  --surface-card:     #f5f0e0;
  --surface-strong:   #ebe6d6;
  --hairline:         #e5e5e5;
  --hairline-soft:    #f0f0f0;

  /* Text */
  --ink:              #0a0a0a;
  --body-strong:      #1a1a1a;
  --body:             #3a3a3a;
  --muted:            #6a6a6a;
  --muted-soft:       #9a9a9a;

  /* Primary action */
  --primary:          #0a0a0a;
  --primary-active:   #1f1f1f;
  --on-primary:       #ffffff;
  --on-dark:          #ffffff;

  /* Brand palette */
  --brand-pink:       #ff4d8b;
  --brand-teal:       #1a3a3a;
  --brand-lavender:   #b8a4ed;
  --brand-peach:      #ffb084;
  --brand-ochre:      #e8b94a;
  --brand-mint:       #a4d4c5;

  /* Radius */
  --r-xs:   6px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 9999px;

  /* Layout */
  --max-w:       1280px;
  --section-pad: 96px;

  /* Company accent colors — text-safe on cream */
  --c-levva:     #002c63;
  --c-boticario: #7a9e8c;
  --c-ifood:     #b05020;
  --c-early:     #8a6010;
}

/* =========================================
   LAYOUT
========================================= */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section    { padding: var(--section-pad) 0; }
.section-alt { background: var(--surface-soft); }

/* =========================================
   NAVIGATION
========================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  height: 64px; display: flex; align-items: center;
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.nav-logo {
  font-size: 14px; font-weight: 600; color: var(--ink); letter-spacing: 0;
}
.nav-logo span { color: var(--muted); font-weight: 500; }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  color: var(--muted); font-size: 14px; font-weight: 500;
  padding: 6px 14px; border-radius: var(--r-pill);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: var(--surface-card); }

/* =========================================
   HERO
========================================= */
.hero {
  background: var(--canvas);
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 64px;
}
.hero::before { display: none; }

.hero-content {
  position: relative; max-width: var(--max-w); margin: 0 auto;
  padding: var(--section-pad) 32px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 28px;
}
.hero-eyebrow::before { display: none; }

.hero-name {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500; color: var(--ink);
  letter-spacing: -2.5px; margin-bottom: 28px;
  line-height: 1;
}

.hero-tagline {
  font-size: 18px;
  color: var(--body); max-width: 560px; margin-bottom: 48px;
  font-weight: 400; line-height: 1.55;
}
.hero-tagline strong { color: var(--body-strong); font-weight: 600; }

.hero-stats { display: flex; gap: 48px; margin-bottom: 48px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-value {
  font-size: 32px; font-weight: 500; color: var(--ink);
  line-height: 1; letter-spacing: -0.5px;
}
.stat-label {
  font-size: 13px; color: var(--muted); font-weight: 500;
  text-transform: none; letter-spacing: 0;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: var(--r-md);
  font-size: 14px; font-weight: 600; line-height: 1;
  transition: background .15s, border-color .15s; cursor: pointer;
  height: 44px; border: 1px solid transparent;
}
.btn-primary { background: var(--primary); color: var(--on-primary); }
.btn-primary:hover { background: var(--primary-active); }
.btn-outline { background: var(--canvas); color: var(--ink); border-color: var(--hairline); }
.btn-outline:hover { background: var(--surface-card); border-color: var(--surface-strong); }

/* =========================================
   SECTION HEADERS
========================================= */
.section-header { margin-bottom: 56px; }
.section-label {
  display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.section-label::before { display: none; }
.section-title {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 500; color: var(--ink);
  letter-spacing: -1px; margin-bottom: 12px; line-height: 1.1;
}
.section-subtitle { font-size: 16px; color: var(--muted); max-width: 560px; line-height: 1.55; }

/* =========================================
   ABOUT
========================================= */
.about-text p {
  font-size: 16px; color: var(--body); line-height: 1.7; margin-bottom: 18px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--body-strong); font-weight: 600; }

/* =========================================
   EXPERTISE GRID
========================================= */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.expertise-card {
  padding: 28px 28px 28px 28px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  color: var(--ink);
  transition: transform .2s, box-shadow .2s;
}
.expertise-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.expertise-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  margin-bottom: 20px; letter-spacing: 0;
  color: #fff;
}
.expertise-card:nth-child(1) .expertise-icon { background: var(--brand-pink); }
.expertise-card:nth-child(2) .expertise-icon { background: var(--brand-teal); }
.expertise-card:nth-child(3) .expertise-icon { background: var(--brand-lavender); color: var(--ink); }
.expertise-card:nth-child(4) .expertise-icon { background: var(--brand-peach);   color: var(--ink); }
.expertise-card:nth-child(5) .expertise-icon { background: var(--brand-ochre);   color: var(--ink); }
.expertise-card:nth-child(6) .expertise-icon { background: var(--surface-strong); color: var(--muted); }

.expertise-title { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.expertise-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* =========================================
   EXPERIENCE CARDS — vertical bold stack
========================================= */
.exp-stack { display: flex; flex-direction: column; gap: 16px; }
.exp-card-bold {
  display: flex; align-items: stretch;
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: var(--r-xl); overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  color: inherit;
}
.exp-card-bold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,.08);
}

.exp-card-bold-logo {
  width: 104px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  writing-mode: vertical-lr; text-orientation: mixed; transform: rotate(180deg);
}

.exp-card-bold-content {
  flex: 1; padding: 36px 40px;
  border-left: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 20px;
}

.exp-card-bold-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 16px;
}

.exp-card-bold-company {
  font-size: 32px; font-weight: 500; color: var(--ink);
  letter-spacing: -0.5px; line-height: 1.1; margin-bottom: 6px;
}
.exp-card-bold-role { font-size: 15px; color: var(--muted); font-weight: 500; margin-bottom: 3px; }
.exp-card-bold-period { font-size: 13px; color: var(--muted-soft); }

.exp-badge {
  display: inline-flex; align-items: center;
  padding: 4px 12px; border-radius: var(--r-pill);
  background: var(--surface-card);
  font-size: 12px; font-weight: 600;
  color: var(--muted); white-space: nowrap; flex-shrink: 0;
}

.exp-highlights { list-style: none; display: flex; flex-direction: column; gap: 0; }
.exp-highlights li {
  font-size: 15px; color: var(--body); padding: 9px 0 9px 16px;
  position: relative; line-height: 1.5;
  border-bottom: 1px solid var(--hairline-soft);
}
.exp-highlights li:last-child { border-bottom: none; }
.exp-highlights li::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%;
}

.exp-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  transition: gap .15s; align-self: flex-end;
}
.exp-link:hover { gap: 10px; }

/* Company logo block colors */
[data-company="levva"]     .exp-card-bold-logo { background: #002c63; color: #fff; }
[data-company="boticario"] .exp-card-bold-logo { background: #7a9e8c; color: #fff; }
[data-company="ifood"]     .exp-card-bold-logo { background: #ea1d2c; color: #fff; }
[data-company="early"]     .exp-card-bold-logo { background: #d4860f; color: #fff; }

/* Badge colors per company */
[data-company="levva"]     .exp-badge { background: #d0dff0; color: #002c63; }
[data-company="boticario"] .exp-badge { background: #daeee7; color: #4a7060; }
[data-company="ifood"]     .exp-badge { background: #fde8e8; color: #c0101e; }
[data-company="early"]     .exp-badge { background: #fce9c8; color: #a06008; }

/* Bullet dots per company */
[data-company="levva"]     .exp-highlights li::before { background: #002c63; }
[data-company="boticario"] .exp-highlights li::before { background: #7a9e8c; }
[data-company="ifood"]     .exp-highlights li::before { background: #ea1d2c; }
[data-company="early"]     .exp-highlights li::before { background: #d4860f; }

/* =========================================
   EDUCATION & CERTS
========================================= */
.edu-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.edu-subsection-label {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.edu-list { display: flex; flex-direction: column; gap: 12px; }
.edu-item {
  padding: 20px 24px; background: var(--canvas);
  border: 1px solid var(--hairline); border-radius: var(--r-lg);
}
.edu-school { font-weight: 600; color: var(--ink); margin-bottom: 3px; font-size: 15px; }
.edu-degree { font-size: 14px; color: var(--body); }
.edu-period { font-size: 13px; color: var(--muted-soft); margin-top: 4px; }

.cert-list { display: flex; flex-direction: column; gap: 8px; }
.cert-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: var(--canvas);
  border: 1px solid var(--hairline); border-radius: var(--r-md);
}
.cert-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand-pink); flex-shrink: 0;
}
.cert-name { font-size: 14px; font-weight: 600; color: var(--body-strong); }

/* =========================================
   FOOTER — cream, not dark
========================================= */
.footer {
  background: var(--surface-soft);
  color: var(--body);
  padding: 80px 0;
  border-top: 1px solid var(--hairline);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.footer-name { font-size: 15px; font-weight: 600; color: var(--ink); }
.footer-tagline { font-size: 13px; color: var(--muted); margin-top: 3px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); font-size: 14px; transition: color .15s; }
.footer-links a:hover { color: var(--ink); }

/* =========================================
   PAGE HERO (experience pages) — cream
========================================= */
.page-hero {
  background: var(--canvas);
  padding: 110px 0 60px;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.page-hero::before { display: none; }
.page-hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px; position: relative;
}

.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 14px; font-weight: 500;
  margin-bottom: 36px; transition: color .15s;
}
.back-link:hover { color: var(--ink); }

.page-company {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 10px;
}
.page-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500; color: var(--ink);
  letter-spacing: -2px; margin-bottom: 8px; line-height: 1.05;
}
.page-period { color: var(--muted); font-size: 14px; }

/* =========================================
   EXPERIENCE PAGE CONTENT
========================================= */
.exp-content { max-width: 820px; margin: 0 auto; padding: 60px 32px; }
.exp-section { margin-bottom: 48px; }
.exp-section-title {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline);
}
.exp-intro { font-size: 16px; color: var(--body); line-height: 1.7; }
.exp-intro strong { color: var(--body-strong); font-weight: 600; }

.role-block {
  margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--hairline);
}
.role-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.role-title { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.role-squad { font-size: 14px; color: var(--muted); margin-bottom: 6px; font-style: italic; }
.role-period {
  display: inline-flex; align-items: center;
  padding: 3px 10px; background: var(--surface-card);
  border: 1px solid var(--hairline); border-radius: var(--r-pill);
  font-size: 12px; font-weight: 500; color: var(--muted); margin-bottom: 18px;
}

.bullet-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bullet-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--body); line-height: 1.65;
}
.bullet-list li::before {
  content: '→'; color: var(--ink); font-weight: 600;
  flex-shrink: 0; margin-top: 1px; opacity: .35;
}

.results-list { display: flex; flex-direction: column; gap: 12px; }
.result-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 20px;
  background: var(--surface-card); border: 1px solid var(--hairline); border-radius: var(--r-md);
}
.result-item.blue { background: var(--surface-card); border-color: var(--hairline); }
.result-mark { font-size: 15px; flex-shrink: 0; font-weight: 700; color: var(--ink); opacity: .45; }
.result-item.blue .result-mark { color: var(--ink); }
.result-text { font-size: 14px; color: var(--body); line-height: 1.65; }
.result-text strong { font-weight: 700; color: var(--body-strong); }

.tags-container { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 6px 14px; background: var(--surface-card);
  border: 1px solid var(--hairline); border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; color: var(--body);
}

/* =========================================
   PROJECT SHOWCASE (Trilha do Enem style)
========================================= */
.project-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}
.project-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--canvas);
}
.project-card-image {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; object-position: top;
  display: block;
}
.project-card-image-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: var(--surface-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--muted-soft); font-weight: 500;
}
.project-card-body {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--hairline);
}
.project-card-name {
  font-size: 16px; font-weight: 600; color: var(--ink);
  margin-bottom: 4px; letter-spacing: -0.2px;
}
.project-card-sub {
  font-size: 13px; color: var(--muted); margin-bottom: 16px;
}
.project-card-stat {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 16px;
}
.project-card-stat-value {
  font-size: 28px; font-weight: 500; color: var(--ink);
  letter-spacing: -0.5px; line-height: 1;
}
.project-card-stat-label {
  font-size: 13px; color: var(--muted); font-weight: 400;
}

.project-side { display: flex; flex-direction: column; gap: 20px; }

.project-context {
  font-size: 15px; color: var(--body); line-height: 1.65;
}
.project-context strong { color: var(--body-strong); font-weight: 600; }

/* PROJECT LINKS (external references) */
.project-links {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--hairline-soft);
}
.project-links-label {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted-soft); margin-bottom: 2px;
}
.project-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--surface-card); border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  font-size: 13px; font-weight: 500; color: var(--body);
  transition: background .15s, color .15s;
}
.project-link:hover { background: var(--surface-strong); color: var(--ink); }
.project-link-icon { font-size: 14px; flex-shrink: 0; }
.project-link-text { flex: 1; }
.project-link-source { font-size: 11px; color: var(--muted-soft); font-weight: 400; white-space: nowrap; }

/* =========================================
   TECH STACK VISUAL
========================================= */
.stack-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.stack-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  font-size: 13px; font-weight: 500; color: var(--body-strong);
}
.stack-chip-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}

@media (max-width: 768px) {
  .project-showcase { grid-template-columns: 1fr; }
}

.exp-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 32px 0; margin-top: 48px; border-top: 1px solid var(--hairline); gap: 16px;
}
.exp-nav-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--muted); transition: color .15s, gap .15s;
}
.exp-nav-link:hover { color: var(--ink); gap: 10px; }

/* =========================================
   IFOOD CASE STUDY
========================================= */

/* Dark hero variant for iFood page */
.page-hero-dark {
  background: #111;
  border-bottom: 1px solid #2a2a2a;
}
.page-hero-dark .back-link  { color: rgba(255,255,255,.38); }
.page-hero-dark .back-link:hover { color: #fff; }
.page-hero-dark .page-title { color: #fff; }
.page-hero-dark .page-period { color: rgba(255,255,255,.35); }

/* Career arc (inside dark hero) */
.career-arc {
  display: flex; align-items: center; margin-top: 48px; flex-wrap: wrap; row-gap: 12px;
}
.career-step {
  padding: 14px 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
}
.career-step--active {
  border-color: #ea1d2c;
  background: rgba(234,29,44,.1);
}
.career-step-title {
  font-size: 13px; font-weight: 700; letter-spacing: -.1px;
  color: rgba(255,255,255,.7);
}
.career-step--active .career-step-title { color: #f97388; }
.career-step-period { font-size: 12px; color: rgba(255,255,255,.32); margin-top: 4px; }
.career-arc-gap {
  width: 32px; height: 1px; background: rgba(255,255,255,.15); flex-shrink: 0;
}

/* Phase chip (red pill label above section titles) */
.phase-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 13px;
  background: #fde8e8; border: 1px solid #f8b4b4;
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: #c41020; margin-bottom: 16px;
}
.phase-chip::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: #ea1d2c; flex-shrink: 0;
}
.phase-chip--green { background: #e8f0ed; border-color: #c0d8ce; color: #3d6a5a; }
.phase-chip--green::before { background: #7a9e8c; }

/* Section blocks */
.ifood-section { padding: 80px 0; border-bottom: 1px solid var(--hairline); }
.ifood-section-alt { background: var(--surface-soft); }
.ifood-section:last-of-type { border-bottom: none; }
.ifood-section-inner { max-width: 860px; margin: 0 auto; }

.ifood-section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500; color: var(--ink);
  letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 16px;
}
.ifood-section-body {
  font-size: 16px; color: var(--body); line-height: 1.75;
  max-width: 640px; margin-bottom: 36px;
}
.ifood-section-body strong { color: var(--body-strong); font-weight: 600; }
.ifood-section-body a { color: #c41020; text-decoration: underline; }

/* YouTube embed */
.yt-wrap {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: var(--r-xl); overflow: hidden;
  background: #000; border: 1px solid var(--hairline);
  margin: 32px 0;
}
.yt-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* External link button */
.ifood-link-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  background: #ea1d2c; color: #fff;
  border-radius: var(--r-md); font-size: 14px; font-weight: 600;
  transition: background .15s;
}
.ifood-link-btn:hover { background: #c41020; }

/* Initiative grid (3 cards — PM Jr) */
.initiative-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px;
}
.initiative-card {
  padding: 28px 24px;
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
}
.initiative-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: #fde8e8; border: 1px solid #f8b4b4;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.initiative-title {
  font-size: 15px; font-weight: 600; color: var(--ink);
  letter-spacing: -.2px; line-height: 1.3; margin-bottom: 8px;
}
.initiative-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.initiative-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: #c41020;
  margin-top: 16px; transition: gap .15s;
}
.initiative-link:hover { gap: 10px; }

/* Journey flow (ruptura automation) */
.journey-wrap { display: flex; flex-direction: column; gap: 4px; margin: 40px 0; }
.journey-node {
  padding: 20px 28px;
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
}
.journey-node-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted-soft); margin-bottom: 6px;
}
.journey-node-title { font-size: 16px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.journey-node-sub { font-size: 14px; color: var(--muted); margin-top: 4px; }
.journey-arrow {
  text-align: center; font-size: 20px; color: var(--muted-soft); padding: 4px 0; line-height: 1;
}
.journey-split {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.journey-branch {
  padding: 16px 18px;
  background: var(--surface-soft); border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
}
.journey-branch-method { font-size: 13px; font-weight: 700; color: var(--body-strong); margin-bottom: 4px; }
.journey-branch-action { font-size: 13px; color: var(--muted); }
.journey-outcome-bar {
  display: flex; gap: 0; flex-wrap: wrap;
  background: #ea1d2c; border-radius: var(--r-xl); overflow: hidden;
}
.journey-outcome-item {
  flex: 1; min-width: 160px;
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px;
  font-size: 13px; font-weight: 600; color: #fff;
  border-right: 1px solid rgba(255,255,255,.2);
}
.journey-outcome-item:last-child { border-right: none; }
.journey-outcome-item span { opacity: .75; font-weight: 400; }

/* Problem "before" block */
.problem-block {
  padding: 28px 32px;
  background: var(--surface-soft); border: 1px solid var(--hairline);
  border-radius: var(--r-xl); margin-bottom: 36px;
}
.problem-block-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted-soft); margin-bottom: 20px;
}
.problem-metrics { display: flex; gap: 40px; flex-wrap: wrap; align-items: flex-end; }
.problem-metric { display: flex; flex-direction: column; gap: 6px; }
.problem-metric-value {
  font-size: 36px; font-weight: 500; color: var(--body-strong);
  letter-spacing: -1px; line-height: 1;
}
.problem-metric-label { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* Result stat cards */
.result-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px;
}
.result-stat {
  padding: 28px 24px;
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
}
.result-stat-delta {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: #ea1d2c; margin-bottom: 8px;
}
.result-stat-value {
  font-size: 44px; font-weight: 500; color: var(--ink);
  letter-spacing: -2px; line-height: 1; margin-bottom: 6px;
}
.result-stat-label { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* CSAT display */
.csat-display {
  display: flex; align-items: center; gap: 20px;
  padding: 40px 36px; background: var(--canvas);
  border: 1px solid var(--hairline); border-radius: var(--r-xl);
  margin-top: 32px;
}
.csat-score {
  font-size: 80px; font-weight: 500; letter-spacing: -4px; line-height: 1; flex-shrink: 0;
}
.csat-before { color: var(--muted-soft); }
.csat-after  { color: #ea1d2c; }
.csat-arrow  { font-size: 32px; color: var(--muted-soft); flex-shrink: 0; padding: 0 4px; }
.csat-meta-title {
  font-size: 20px; font-weight: 500; color: var(--ink);
  letter-spacing: -.3px; margin-bottom: 8px; line-height: 1.2;
}
.csat-meta-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }
.csat-meta-desc strong { color: var(--body-strong); font-weight: 600; }

/* =========================================
   ANIMATIONS
========================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeInUp .45s ease .05s both; }
.hero-name    { animation: fadeInUp .45s ease .15s both; }
.hero-tagline { animation: fadeInUp .45s ease .25s both; }
.hero-stats   { animation: fadeInUp .45s ease .35s both; }
.hero-actions { animation: fadeInUp .45s ease .45s both; }

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .nav-links       { display: none; }
  .hero-name       { letter-spacing: -1.5px; }
  .hero-stats      { gap: 28px; }
  .expertise-grid  { grid-template-columns: 1fr; }
  .exp-card-bold { flex-direction: column; }
  .exp-card-bold-logo {
    width: 100%; height: 56px;
    writing-mode: horizontal-tb; transform: none;
    font-size: 11px; letter-spacing: 2px;
  }
  .exp-card-bold-content { padding: 24px; border-left: none; border-top: 1px solid var(--hairline); }
  .edu-grid        { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner    { flex-direction: column; text-align: center; }
  .footer-links    { flex-direction: column; align-items: center; gap: 12px; }
  .exp-nav         { flex-direction: column; }
  /* iFood case study */
  .initiative-grid { grid-template-columns: 1fr; }
  .feature-grid    { grid-template-columns: 1fr 1fr; }
  .journey-split   { grid-template-columns: 1fr; }
  .journey-types   { grid-template-columns: 1fr; }
  .result-stats    { grid-template-columns: 1fr; }
  .problem-metrics { gap: 24px; }
  .csat-display    { flex-direction: column; align-items: flex-start; gap: 12px; }
  .csat-score      { font-size: 56px; }
  .career-arc-gap  { width: 16px; }
  .journey-outcome-item { min-width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .journey-outcome-item:last-child { border-bottom: none; }
  .ifood-section   { padding: 56px 0; }
}

/* Journey "before" context block */
.journey-before {
  padding: 20px 24px;
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  margin-bottom: 4px;
}
.journey-before-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted-soft); margin-bottom: 12px;
}
.journey-before-flow {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.journey-before-step {
  padding: 7px 14px;
  background: var(--surface-card); border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  font-size: 13px; color: var(--muted); font-weight: 500;
}
.journey-before-arrow { font-size: 14px; color: var(--muted-soft); }
.journey-before-note {
  font-size: 13px; color: var(--muted-soft); margin-top: 10px; font-style: italic;
}

/* Feature grid (Portal do Parceiro deliverables) */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px;
}
.feature-card {
  padding: 18px 20px;
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
}
.feature-card-icon { font-size: 20px; margin-bottom: 10px; }
.feature-card-title { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.3; margin-bottom: 4px; }
.feature-card-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* Insight callout block */
.insight-block {
  padding: 24px 28px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-left: 3px solid #ea1d2c;
  border-radius: var(--r-lg);
  margin-top: 28px;
}
.insight-block-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: #ea1d2c; margin-bottom: 8px;
}
.insight-block-text { font-size: 15px; color: var(--body); line-height: 1.7; }
.insight-block-text strong { color: var(--body-strong); font-weight: 600; }

/* Impact anecdote quote */
.impact-quote {
  padding: 20px 24px;
  background: var(--surface-soft); border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  margin-top: 12px;
  font-size: 14px; color: var(--body); line-height: 1.7; font-style: italic;
}
.impact-quote strong { color: var(--body-strong); font-weight: 600; font-style: normal; }
.impact-quote-source {
  font-size: 12px; color: var(--muted-soft); font-style: normal; margin-top: 10px;
}

/* Journey edit-type cards */
.journey-types {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 4px;
}
.journey-type {
  padding: 14px 16px;
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 4px;
}
.journey-type-label {
  font-size: 13px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 7px;
}
.journey-type-sub { font-size: 12px; color: var(--muted); }
