/* =========================================================
   Programa EIXO Comercial — Silvia Miranda
   Design system, layout & components
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,400..600&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Paleta oficial — Manual de Identidade Visual Silvia Miranda (2024) */
  --blue: #2e4a6c;
  --blue-deep: #1c2f47;
  --blue-soft: oklch(92% .02 253);
  --orange: #df832a;
  --orange-deep: #b8681c;
  --orange-soft: oklch(96% .04 65);
  --black: oklch(18% 0 0);
  --offwhite: oklch(97.5% .004 75);
  --gray: oklch(52% 0 0);
  --gray-soft: oklch(90% .005 250);
  --white: oklch(100% 0 0);

  --cm-gold: #c49a3f;

  --bg: var(--white);
  --surface: var(--offwhite);
  --ink: var(--black);
  --ink-soft: var(--gray);
  --line: var(--gray-soft);

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', 'Georgia', serif;

  --radius-sm: .5rem;
  --radius-md: 1rem;
  --radius-lg: 1.75rem;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px -4px oklch(38% .07 253 / .18);
  --shadow-md: 0 14px 40px -14px oklch(38% .07 253 / .28);
  --shadow-lg: 0 28px 70px -24px oklch(28% .06 253 / .35);

  --container: 1200px;
  --header-h: 84px;
  --ease: cubic-bezier(.16,1,.3,1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: oklch(16% .01 250);
    --surface: oklch(20% .015 253);
    --ink: oklch(96% .003 90);
    --ink-soft: oklch(72% .01 250);
    --line: oklch(30% .02 253);
    --blue-soft: oklch(24% .03 253);
    --orange-soft: oklch(24% .05 55);
  }
}
:root[data-theme="dark"] {
  --bg: oklch(16% .01 250);
  --surface: oklch(20% .015 253);
  --ink: oklch(96% .003 90);
  --ink-soft: oklch(72% .01 250);
  --line: oklch(30% .02 253);
  --blue-soft: oklch(24% .03 253);
  --orange-soft: oklch(24% .05 55);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; }
p { margin: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2.5px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
main { display: block; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange-deep);
}
.eyebrow::before { content: ''; width: 18px; height: 2px; background: var(--orange); border-radius: 2px; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.08; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.15; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.25; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); max-width: 62ch; }
.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
mark.hl {
  background: none; color: inherit; position: relative; font-weight: 700;
  background-image: linear-gradient(transparent 62%, var(--orange-soft) 0);
  background-repeat: no-repeat;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .95em 1.7em; border-radius: var(--radius-pill);
  font-weight: 600; font-size: .98rem; white-space: nowrap;
  border: 1px solid transparent; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, border-color .3s, color .3s;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform .3s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translate(3px, -2px); }
.btn:active { transform: scale(.97); }
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 10px 30px -10px oklch(71% .16 55 / .55);
}
.btn-primary:hover { box-shadow: 0 16px 40px -12px oklch(71% .16 55 / .65); transform: translateY(-2px); }
.btn-primary::before {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: radial-gradient(120px 120px at var(--mx, 50%) var(--my, 50%), oklch(100% 0 0 / .35), transparent 70%);
  transition: opacity .3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-outline {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-ghost-light { background: oklch(100% 0 0 / .1); color: var(--white); border-color: oklch(100% 0 0 / .3); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: oklch(100% 0 0 / .18); border-color: oklch(100% 0 0 / .5); transform: translateY(-2px); }
.btn-lg { padding: 1.1em 2.1em; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  z-index: 1000; transition: width .1s linear;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid color-mix(in oklab, var(--line) 70%, transparent);
  transition: box-shadow .3s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 16px; height: var(--header-h); }
.brand { display: flex; align-items: center; margin-right: auto; flex-shrink: 0; }
.brand-logo { height: 40px; width: auto; display: block; }

.main-nav { display: contents; }
.nav-menu {
  display: flex; align-items: center; gap: 2px;
  background: color-mix(in oklab, var(--surface) 90%, transparent);
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 5px; position: relative;
}
.nav-menu a {
  position: relative; z-index: 2; display: block; padding: .6em .8em;
  font-size: .83rem; font-weight: 500; color: var(--ink-soft);
  border-radius: var(--radius-pill); transition: color .3s;
  white-space: nowrap;
}
.nav-menu a:hover { color: var(--ink); }
.nav-menu a.is-active { color: var(--white); }
.nav-pill {
  position: absolute; z-index: 1; top: 5px; left: 5px; height: calc(100% - 10px);
  width: 0; border-radius: var(--radius-pill);
  background: var(--blue); transition: transform .45s var(--ease), width .45s var(--ease), opacity .3s;
  opacity: 0;
}
.nav-pill.is-ready { opacity: 1; }

.header-cta { flex-shrink: 0; }
.header-cta.mobile-only { display: none; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); flex-shrink: 0;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); margin-inline: auto; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1220px) {
  .nav-toggle { display: flex; }
  .header-cta:not(.mobile-only) { display: none; }
  .header-cta.mobile-only { display: inline-flex; }
  .nav-menu {
    position: fixed; top: var(--header-h); right: 0; bottom: 0; left: 0; z-index: 400;
    height: calc(100vh - var(--header-h)); height: calc(100dvh - var(--header-h));
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--bg); border-radius: 0; border: none; padding: 18px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform .35s var(--ease), opacity .3s;
    overflow-y: auto;
  }
  .nav-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 16px 18px; font-size: 1.1rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-menu a.is-active { color: var(--blue); }
  .nav-pill { display: none; }
  .nav-menu .header-cta.mobile-only { margin-top: 14px; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(56px, 9vw, 108px) 0 clamp(60px, 8vw, 96px);
  background: var(--bg);
}
.hero-blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-blobs span {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55;
  animation: float 16s ease-in-out infinite;
}
.hero-blobs span:nth-child(1) { width: 420px; height: 420px; top: -160px; left: -120px; background: radial-gradient(circle, var(--blue-soft), transparent 70%); }
.hero-blobs span:nth-child(2) { width: 380px; height: 380px; top: 40px; right: -140px; background: radial-gradient(circle, var(--orange-soft), transparent 70%); animation-delay: -6s; }
.hero-blobs span:nth-child(3) { width: 300px; height: 300px; bottom: -160px; left: 30%; background: radial-gradient(circle, var(--blue-soft), transparent 70%); animation-delay: -11s; }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-20px) scale(1.08); } }

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 20px; }
.hero-grid-photo { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 900px) { .hero-grid-photo { grid-template-columns: 1fr; } }
.hero-photo-wrap { position: relative; justify-self: center; max-width: 420px; width: 100%; }
.hero-photo-wrap img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-photo-wrap::before {
  content: ''; position: absolute; inset: 18px -18px auto auto; width: 60%; height: 45%; z-index: -1;
  background: var(--orange-soft); border-radius: var(--radius-lg); opacity: .8;
}
.hero-photo-badge {
  position: absolute; left: -16px; bottom: 20px; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 14px 18px; box-shadow: var(--shadow-md); max-width: 190px;
  display: flex; flex-direction: column; gap: 2px;
}
.hero-photo-badge strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--orange); line-height: 1; }
.hero-photo-badge span { font-size: .72rem; color: var(--ink-soft); line-height: 1.25; }
.hero-kicker { margin-bottom: 22px; }
.hero h1 { max-width: 20ch; margin-bottom: 22px; }
.hero .lede { margin-bottom: 30px; }
.hero-tagline {
  display: flex; align-items: center; gap: 10px; margin: 26px 0 32px;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue);
}
.hero-tagline .bar { width: 3px; align-self: stretch; background: var(--orange); border-radius: 2px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 26px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-tags .tag { display: flex; align-items: center; gap: 9px; font-size: .92rem; font-weight: 600; color: var(--blue); }
.hero-tags svg { width: 19px; height: 19px; color: var(--orange); }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(44px, 6vw, 64px); }
.stat-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 26px 22px; text-align: left;
}
.stat-card .num { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; color: var(--blue); letter-spacing: -.02em; }
.stat-card .num .accent { color: var(--orange); }
.stat-card .label { font-size: .84rem; color: var(--ink-soft); margin-top: 6px; }

@media (max-width: 640px) { .stat-row { grid-template-columns: 1fr; } }

/* ---------- Page head (inner pages) ---------- */
.page-head {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--blue-deep), var(--blue) 70%);
  color: var(--white); padding: clamp(64px, 10vw, 104px) 0 clamp(56px, 8vw, 80px);
}
.page-head::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(52% 65% at 88% 6%, oklch(71% .16 55 / .28), transparent 62%);
}
.page-head .container { position: relative; z-index: 1; }
.breadcrumbs { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: oklch(100% 0 0 / .6); margin-bottom: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs .sep { opacity: .5; }
.page-head h1 { color: var(--white); max-width: 22ch; margin-bottom: 16px; }
.page-head .lede { color: oklch(100% 0 0 / .82); max-width: 60ch; }
.page-head .eyebrow { color: oklch(96% .06 65); }
.page-head .eyebrow::before { background: oklch(96% .06 65); }

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section.alt { background: var(--surface); }
.section.dark {
  background: linear-gradient(165deg, var(--blue-deep), var(--blue));
  color: var(--white);
}
.section.dark .eyebrow { color: oklch(96% .06 65); }
.section.dark .eyebrow::before { background: oklch(96% .06 65); }
.section.dark h2, .section.dark h3 { color: var(--white); }
.section.dark .lede { color: oklch(100% 0 0 / .78); }

.divider-wave { display: block; width: 100%; height: 56px; margin-top: -1px; }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 28px 26px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .ico {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--orange-soft); color: var(--orange-deep); margin-bottom: 18px;
}
.card .ico svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: .95rem; }

.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: .5em 1.1em; border-radius: var(--radius-pill); background: var(--surface);
  border: 1px solid var(--line); font-size: .86rem; font-weight: 500; color: var(--ink-soft);
}
.section.dark .chip { background: oklch(100% 0 0 / .08); border-color: oklch(100% 0 0 / .18); color: var(--white); }

.pill-list { display: flex; flex-direction: column; gap: 14px; }
.pill-item {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: .95rem; color: var(--ink);
}
.pill-item svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.pill-item.bad svg { color: var(--gray); }
.pill-item.good svg { color: var(--orange); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.in-view > * { opacity: 1; transform: none; }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: .02s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: .14s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: .2s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: .26s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: .32s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: .38s; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: .44s; }

/* ---------- Tabs (Pilares / método) ---------- */
.tabs [role="tabpanel"] { padding-top: 8px; }
.tablist { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.tablist[hidden] { display: none; }
.tab-btn {
  display: flex; align-items: center; gap: 10px; padding: .8em 1.3em;
  border: 1px solid var(--line); border-radius: var(--radius-pill); background: var(--surface);
  color: var(--ink-soft); font-weight: 600; font-size: .92rem; transition: all .3s var(--ease);
}
.tab-btn .n { width: 24px; height: 24px; border-radius: 50%; background: var(--bg); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: .74rem; }
.tab-btn[aria-selected="true"] { background: var(--blue); border-color: var(--blue); color: var(--white); }
.tab-btn[aria-selected="true"] .n { background: var(--orange); border-color: var(--orange); color: var(--white); }
.tab-btn:hover:not([aria-selected="true"]) { border-color: var(--blue); color: var(--blue); }

.pillar-block { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; padding: 8px 0; }
.pillar-block[hidden] { display: none; }
@media (max-width: 860px) { .pillar-block { grid-template-columns: 1fr; gap: 28px; } }
.pillar-num { font-size: .78rem; font-weight: 700; letter-spacing: .14em; color: var(--orange-deep); margin-bottom: 12px; }
.pillar-block h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 14px; }
.pillar-block p { color: var(--ink-soft); }

/* ---------- Stepper (método) ---------- */
.stepper { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; position: relative; margin-bottom: 34px; }
.stepper::before { content: ''; position: absolute; top: 22px; left: 8%; right: 8%; height: 2px; background: var(--line); z-index: 0; }
@media (max-width: 760px) { .stepper { grid-template-columns: 1fr; gap: 10px; } .stepper::before { display: none; } }
.step-btn {
  position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: transparent; border: none; padding: 6px; text-align: center; color: var(--ink-soft);
}
@media (max-width: 760px) { .step-btn { flex-direction: row; text-align: left; } }
.step-btn .circle {
  width: 44px; height: 44px; border-radius: 50%; background: var(--bg); border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-weight: 700; transition: all .3s var(--ease); flex-shrink: 0;
}
.step-btn .label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; }
.step-btn[aria-selected="true"] .circle { background: var(--orange); border-color: var(--orange); color: var(--white); transform: scale(1.08); }
.step-btn[aria-selected="true"] .label { color: var(--blue); }
.step-panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px;
}
.step-panel[hidden] { display: none; }

/* ---------- Accordion (FAQ) ---------- */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: clip; transition: border-color .3s;
}
.accordion-item[open] { border-color: var(--blue); }
.accordion-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 24px; font-weight: 600; font-size: 1rem;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item .plus {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; position: relative; transition: all .35s var(--ease);
}
.accordion-item .plus::before, .accordion-item .plus::after {
  content: ''; position: absolute; background: var(--ink-soft); transition: all .35s var(--ease);
}
.accordion-item .plus::before { width: 12px; height: 2px; }
.accordion-item .plus::after { width: 2px; height: 12px; }
.accordion-item[open] .plus { background: var(--orange); border-color: var(--orange); transform: rotate(90deg); }
.accordion-item[open] .plus::before, .accordion-item[open] .plus::after { background: var(--white); }
.accordion-item[open] .plus::after { opacity: 0; }
.accordion-body { padding: 0 24px 22px; color: var(--ink-soft); max-width: 68ch; }
.accordion-item[open] summary { color: var(--blue); }

/* ---------- Timeline (história / cases) ---------- */
.case-card {
  display: flex; flex-direction: column; gap: 14px; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 28px;
}
.case-card .tag { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-deep); }
.case-card h3 { font-size: 1.1rem; }
.case-card .segment { font-size: .78rem; color: var(--ink-soft); font-weight: 500; }
.case-card p { color: var(--ink-soft); font-size: .92rem; }
.case-card .result { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); font-weight: 700; color: var(--blue); font-size: 1.05rem; }

.result-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px; text-align: left;
}
.result-card .tag { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-deep); margin-bottom: 14px; display: block; }
.result-card .figure { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; color: var(--blue); letter-spacing: -.02em; }
.result-card .period { font-size: .86rem; color: var(--ink-soft); margin-top: 6px; }

/* ---------- About / bio ---------- */
.bio-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 52px; align-items: center; }
@media (max-width: 860px) { .bio-grid { grid-template-columns: 1fr; gap: 34px; } }
.bio-photo { position: relative; }
.bio-photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; height: auto; }
.bio-photo::before {
  content: ''; position: absolute; inset: -18px -18px auto auto; width: 70%; height: 55%; z-index: -1;
  background: var(--orange-soft); border-radius: var(--radius-lg); opacity: .7;
}
.bio-badge {
  position: absolute; left: -20px; bottom: -20px; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 16px 20px; box-shadow: var(--shadow-md); display: flex; gap: 12px; align-items: center;
}
.bio-badge .num { font-size: 1.5rem; font-weight: 800; color: var(--orange); }
.bio-badge .label { font-size: .74rem; color: var(--ink-soft); max-width: 12ch; line-height: 1.2; }

/* ---------- Final CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-deep), var(--blue) 60%, var(--orange-deep));
  padding: clamp(40px, 6vw, 68px); color: var(--white); text-align: center;
}
.cta-band h2 { color: var(--white); max-width: 26ch; margin-inline: auto 12px; margin-bottom: 16px; }
.cta-band p { color: oklch(100% 0 0 / .82); max-width: 52ch; margin-inline: auto; margin-bottom: 30px; }
.cta-band .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-deep); color: oklch(100% 0 0 / .82); padding-top: clamp(48px, 7vw, 76px); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid oklch(100% 0 0 / .12); }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand { display: flex; align-items: center; margin-bottom: 18px; }
.footer-brand img { height: 34px; width: auto; }
.footer-col h4 { color: var(--white); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: .92rem; margin-bottom: 16px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  padding-block: 24px; font-size: .82rem;
}
.footer-credit {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 14px 8px 8px;
  border: 1px solid oklch(100% 0 0 / .16); border-radius: var(--radius-pill);
  transition: border-color .3s, background .3s;
}
.footer-credit:hover { border-color: var(--cm-gold); background: oklch(100% 0 0 / .05); }
.footer-credit svg, .footer-credit img { width: 26px; height: 18px; object-fit: contain; }
.footer-credit span { font-size: .8rem; }
.footer-credit strong { color: var(--white); }

/* ---------- WhatsApp float + back to top ---------- */
.float-stack { position: fixed; right: 22px; bottom: 22px; z-index: 300; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.wa-float {
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease); animation: pulse-wa 2.6s ease-in-out infinite;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.08); }
@keyframes pulse-wa { 0%,100% { box-shadow: 0 0 0 0 #25d36655, var(--shadow-md); } 50% { box-shadow: 0 0 0 10px #25d36600, var(--shadow-md); } }
.top-btn {
  width: 42px; height: 42px; border-radius: 50%; background: var(--bg); border: 1px solid var(--line); color: var(--ink);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateY(10px); pointer-events: none; transition: all .3s var(--ease);
}
.top-btn.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.top-btn svg { width: 18px; height: 18px; }

/* ---------- Misc ---------- */
.table-compare { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 760px) { .table-compare { grid-template-columns: 1fr 1fr; } }
.compare-col { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px; }
.compare-col.good { border-color: color-mix(in oklab, var(--orange) 40%, var(--line)); }
.compare-col h3 { margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.compare-col h3 svg { width: 24px; height: 24px; }
.compare-col.good h3 { color: var(--orange-deep); }
.compare-col.bad h3 { color: var(--ink-soft); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 30px; } }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.quote-block {
  border-left: 3px solid var(--orange); padding-left: 24px; font-size: 1.15rem; font-weight: 500; color: var(--blue);
  max-width: 58ch;
}

.list-check { display: flex; flex-direction: column; gap: 12px; }
.list-check li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; }
.list-check svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }

.badge-inline {
  display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600;
  color: var(--blue); background: var(--blue-soft); padding: .4em 1em; border-radius: var(--radius-pill);
}

/* ---------- Engagement tiers (Como trabalhamos) ---------- */
.tier-card {
  position: relative; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 30px 24px 26px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.tier-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.tier-stage { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-deep); background: var(--orange-soft); padding: .3em .8em; border-radius: var(--radius-pill); margin-bottom: 16px; }
.tier-num { font-family: var(--font-display); font-size: 1.8rem; color: var(--blue); opacity: .35; margin-bottom: 2px; }
.tier-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.tier-card p { color: var(--ink-soft); font-size: .92rem; }
.tier-format { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-weight: 600; font-size: .82rem !important; color: var(--blue) !important; }

/* ---------- Journey timeline (trajetória pessoal) ---------- */
.journey { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.journey li { display: flex; align-items: center; gap: 14px; padding: 10px 22px; font-weight: 600; color: var(--ink); font-size: .98rem; }
.journey li:not(:last-child)::after { content: '→'; margin-left: 22px; color: var(--orange); font-weight: 400; }
.journey-dot {
  display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%;
  background: var(--blue); color: var(--white); font-family: var(--font-display); font-size: .85rem; flex-shrink: 0;
}
.journey li:last-child .journey-dot { background: var(--orange); }
@media (max-width: 760px) { .journey { flex-direction: column; align-items: stretch; } .journey li:not(:last-child)::after { display: none; } }

/* ---------- Gallery (bastidores) ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item { position: relative; margin: 0; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 28px 16px 14px; font-size: .82rem; font-weight: 600; color: var(--white);
  background: linear-gradient(0deg, oklch(18% 0 0 / .82), transparent);
}
