:root {
  --choco: #312822;
  --pastel: #e0bba2;
  --pearl: #eed9ca;
  --ivory: #f5e6dd;
  --nude: #eac2bd;
  --petal: #ffcdad;
  --peach: #ffb478;
  --mocha: #6a4c4c;
  --blush: #c67f74;
  --almond: #cc9e80;
  --ink: var(--choco);
  --cacao: var(--choco);
  --cacao-2: var(--mocha);
  --paper: var(--ivory);
  --surface: #fffaf6;
  --mist: var(--pearl);
  --sage: var(--blush);
  --sage-dark: var(--mocha);
  --clay: var(--mocha);
  --rose: var(--nude);
  --gold: var(--almond);
  --muted: var(--mocha);
  --muted-dark: var(--pastel);
  --line: rgba(106, 76, 76, 0.24);
  --line-dark: rgba(255, 255, 255, 0.18);
  --shadow: 0 18px 48px rgba(49, 40, 34, 0.14);
  --font-sans: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --container: 1180px;
  --gutter: 20px;
  --header-h: 64px;
  --section-y: 72px;
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(198, 127, 116, 0.78);
  outline-offset: 4px;
}

::selection {
  color: var(--surface);
  background: var(--mocha);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-y);
}

.section-head {
  margin-bottom: 36px;
}

.section-head h2,
.section-kicker h2,
.proof-copy h2,
.faq-head h2,
.closing h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section-kicker h2 {
  max-width: 14ch;
}

.section-head p,
.intro-copy p,
.proof-copy p,
.closing p {
  margin: 0;
  color: var(--muted);
}

.section-head > p,
.centered > p,
.split-head > p {
  max-width: 640px;
  font-size: 1.05rem;
}

.centered {
  max-width: 760px;
  text-align: center;
}

.centered > p {
  margin-inline: auto;
}

.split-head {
  display: grid;
  gap: 22px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--clay);
}


.eyebrow--statement {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--font-serif);
  font-style: italic;
}

.eyebrow-light {
  color: rgba(238, 217, 202, 0.88);
}

.hero .eyebrow {
  letter-spacing: 0.125em;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--surface);
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  box-shadow: 0 10px 26px rgba(106, 76, 76, 0.22);
}

.button-primary:hover {
  background: var(--almond);
  border-color: var(--almond);
}

.button-secondary {
  color: var(--ink);
  background: rgba(245, 230, 221, 0.82);
  border-color: rgba(49, 40, 34, 0.18);
}

.button-secondary:hover {
  background: var(--surface);
  border-color: rgba(31, 23, 19, 0.32);
}

.button-quiet {
  color: var(--surface);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-quiet:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-light {
  color: var(--cacao);
  background: var(--surface);
  border-color: var(--surface);
}

.button-outline-light {
  color: var(--surface);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.75);
}

.sticky-mobile-cta {
  display: none;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  color: var(--sage-dark);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header-h);
  color: var(--surface);
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(245, 230, 221, 0.92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.brand-logo-wrap {
  position: relative;
  display: grid;
  width: 132px;
  height: 42px;
  align-items: center;
}

.brand-logo {
  grid-area: 1 / 1;
  width: 132px;
  height: auto;
}

.brand-logo-dark {
  display: none;
}

.site-header.is-scrolled .brand-logo-light {
  display: none;
}

.site-header.is-scrolled .brand-logo-dark {
  display: block;
}

.brand-divider {
  width: 1px;
  height: 20px;
  background: currentColor;
  opacity: 0.25;
}

.brand-program {
  color: currentColor;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1;
}

.desktop-nav {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-cta {
  display: none;
}

.menu-toggle,
.menu-close {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
}

.menu-toggle {
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 23px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  padding: 12px;
  background: rgba(31, 23, 19, 0.54);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-panel {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 22px;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-brand img {
  width: 134px;
  height: auto;
}

.mobile-menu-brand span {
  padding-left: 12px;
  color: var(--mocha);
  font-family: var(--font-serif);
  font-size: 1.12rem;
  border-left: 1px solid rgba(106, 76, 76, 0.28);
}

.mobile-nav {
  display: grid;
  gap: 0;
  margin-block: 32px;
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  padding-block: 16px;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.1;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-cta {
  margin-top: auto;
}

.mobile-menu-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--surface);
  background: var(--cacao);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(31, 23, 19, 0.42) 0%, rgba(31, 23, 19, 0.72) 100%),
    linear-gradient(90deg, rgba(31, 23, 19, 0.94) 0%, rgba(31, 23, 19, 0.78) 46%, rgba(31, 23, 19, 0.18) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  gap: 34px;
  padding-block: calc(var(--header-h) + 70px) 30px;
}

.hero-copy {
  max-width: 660px;
}

.hero h1 {
  max-width: 12.5ch;
  margin: 0 0 22px;
  font-family: var(--font-serif);
  font-size: 3.35rem;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero h1 span {
  color: var(--pearl);
  display: inline-block;
  padding-top: 0.04em;
}

.hero-subtitle {
  margin: 0 0 18px;
  color: rgba(255, 253, 248, 0.72);
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.hero-lead {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 1.08rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.editorial-strip {
  color: var(--surface);
  background: var(--choco);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.editorial-strip-inner {
  display: grid;
  gap: 18px;
  padding-block: 34px;
}

.editorial-strip .eyebrow {
  margin: 0;
  color: var(--almond);
}

.editorial-strip-copy {
  display: grid;
  gap: 10px;
}

.editorial-strip h2 {
  max-width: 680px;
  margin: 0;
  color: var(--surface);
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.16;
}

.editorial-strip p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 250, 246, 0.74);
  font-size: 1rem;
  line-height: 1.65;
}

.section-intro {
  background: var(--surface);
}

.intro-grid {
  display: grid;
  gap: 28px;
}

.intro-copy {
  display: grid;
  gap: 16px;
}

.summary-grid {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.summary-card,
.condition-grid article,
.pathway-card,
.team-card,
.price-table-wrap,
.pricing-notes {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.summary-card {
  padding: 22px;
  background: var(--paper);
}

.summary-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 700;
}

.summary-card h3,
.condition-grid h3,
.pathway-card h3,
.tool-card h3,
.team-card h3,
.kitchen-band h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
}

.summary-card p,
.condition-grid p,
.pathway-card p,
.tool-card p,
.team-card p,
.kitchen-band p,
.pricing-notes p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

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

.section-dark .section-head h2,
.section-proof .proof-copy h2,
.closing h2 {
  color: var(--surface);
}

.section-dark .section-head p,
.closing p {
  color: rgba(255, 253, 248, 0.72);
}

.section-proof .proof-copy p {
  color: rgba(255, 253, 248, 0.72);
  line-height: 1.75;
  margin-top: 1rem;
}

/* Para quem é — v7 match */
#para-quem {
  position: relative;
  padding-block: 6rem;
  background:
    linear-gradient(180deg, rgba(100, 66, 40, 0.72) 0%, rgba(80, 50, 28, 0.84) 100%),
    url("assets/hero-mulher.png") center / cover no-repeat;
}

#para-quem .section-head {
  max-width: 860px;
  margin-bottom: 4rem;
}

#para-quem .eyebrow,
#para-quem .eyebrow-light {
  color: rgba(200, 168, 130, 0.85);
  letter-spacing: 0.14em;
}

#para-quem .section-head h2 {
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--surface);
  margin-bottom: 1.5rem;
}

#para-quem .section-head > p {
  max-width: 60ch;
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.75);
}

.condition-grid {
  display: grid;
  gap: 12px;
}

.condition-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}

.condition-grid h3 {
  color: var(--surface);
  font-size: 1.28rem;
}

.condition-grid p {
  color: rgba(255, 253, 248, 0.68);
}

/* Carrossel — Para quem é */
.condition-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-inline: 24px;
  margin-top: 48px;
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
}

.condition-carousel {
  display: flex;
  gap: 12px;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.condition-carousel article {
  flex: 0 0 clamp(240px, 28vw, 320px);
  padding: 22px;
  background: rgba(30, 18, 10, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.condition-carousel h3 {
  color: var(--surface);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.condition-carousel p {
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.92rem;
  line-height: 1.6;
}

.carousel-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--surface);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

/* ── Section Method — editorial de leitura rápida ── */

.section-method {
  background: var(--choco);
  color: var(--pearl);
}

.eyebrow--blush {
  color: var(--blush);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}

.method-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
  display: grid;
  gap: 12px;
}

.method-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.08;
  margin: 0;
}

.method-subtitle {
  color: var(--pastel);
  font-size: 0.97rem;
  line-height: 1.65;
  margin: 0;
}

.blocos-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bloco-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 28px 32px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bloco-num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 400;
  color: var(--blush);
  opacity: 0.65;
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}

.bloco-body {
  display: grid;
  gap: 6px;
}

.bloco-meta {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238, 217, 202, 0.75);
  margin: 0;
}

.bloco-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: #fff8f2;
  margin: 0;
  line-height: 1.1;
}

.bloco-desc {
  font-size: 0.88rem;
  color: rgba(238, 217, 202, 0.88);
  margin: 0;
  max-width: 460px;
  line-height: 1.65;
}

.bloco-price-col {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  justify-content: center;
  min-width: 120px;
}

.bloco-from-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238, 217, 202, 0.6);
  margin: 0;
}

.bloco-price-single {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 500;
  color: #fff8f2;
  margin: 0;
  white-space: nowrap;
  line-height: 1.1;
}

.bloco-price-single small {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(238, 217, 202, 0.75);
}

.method-footnote {
  text-align: center;
  font-size: 0.75rem;
  color: var(--pastel);
  opacity: 0.55;
  margin-top: 28px;
  line-height: 1.6;
}

.method-footnote-link {
  color: var(--pastel);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.method-footnote-link:hover {
  opacity: 1;
  color: var(--ivory);
}

/* pathway-card bullet mantido (era partilhado) */
.pathway-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pathway-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.pathway-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
}

/* Mobile */
@media (max-width: 640px) {
  .bloco-item {
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    gap: 4px 18px;
    padding: 32px 0;
  }

  .bloco-num {
    grid-row: 1 / 3;
    align-self: start;
    padding-top: 4px;
  }

  .bloco-price-col {
    grid-column: 2;
    align-items: flex-start;
    text-align: left;
    margin-top: 12px;
    flex-direction: row;
    gap: 20px;
  }

  .bloco-percurso-row {
    align-items: flex-start;
  }
}

#percursos {
  padding-block: 8rem;
}

#percursos .section-head h2 {
  margin-bottom: 1.25rem;
}

.glp-callout {
  margin-top: 2rem;
  padding: 20px 24px;
  background: var(--ivory);
  border-left: 3px solid var(--almond);
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 72ch;
}

.glp-callout-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--almond);
  margin-bottom: 8px;
}

.glp-callout p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.pathway-grid {
  display: grid;
  gap: 14px;
}

.pathway-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
  background: var(--surface);
}

.pathway-card-accent {
  background: var(--ivory);
  border-color: rgba(168, 114, 85, 0.32);
}

.pathway-card-small {
  align-self: start;
}

.pathway-eligibility-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--almond);
  margin-top: 8px;
  margin-bottom: 4px;
}

.pathway-label,
.tool-label,
.team-role {
  margin: 0;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pathway-note {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem !important;
}

.section-proof {
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(20, 10, 4, 0.88) 0%, rgba(44, 26, 14, 0.78) 55%, rgba(28, 16, 8, 0.92) 100%),
    url("assets/dexa.jpg") center 30% / cover no-repeat;
  background-attachment: fixed;
}

.proof-layout {
  display: grid;
  gap: 24px;
  margin-bottom: 34px;
}

.proof-stat {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.proof-stat span {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
}

.proof-stat p {
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
}

/* Ferramentas — layout simplificado */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Ferramentas — v7 layout */
.section-proof .sec-head {
  margin-bottom: 3rem;
}

.section-proof .sec-head h2 {
  color: var(--surface);
}

.section-proof .lead--light {
  color: rgba(250, 247, 242, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  margin-top: 1rem;
}

.tool-card--primary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  margin-bottom: 2rem;
}

.tool-primary-img {
  overflow: hidden;
  aspect-ratio: 3/4;
  min-height: 0;
  max-height: 440px;
}

.tool-primary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.tool-primary-body {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.tools-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: start;
}

.tool-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(20, 10, 4, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
}

.tool-img {
  overflow: hidden;
}

.tool-img--product {
  aspect-ratio: 4/3;
  max-height: 220px;
}

.tool-img--product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tool-body,
.tool-primary-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.tool-body { padding: 2rem; }

.tool-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--almond);
  opacity: .85;
}

.tool-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--pearl);
  letter-spacing: -.02em;
  line-height: 1.1;
}

.tool-desc {
  font-size: 0.9rem;
  color: rgba(250,247,242,.7);
  line-height: 1.65;
}

.tool-proof {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: calc(var(--radius) / 2);
  padding: 1.25rem;
}

.tool-proof strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pearl);
  margin-bottom: 0.5rem;
}

.tool-proof p {
  font-size: 0.8rem;
  color: rgba(250,247,242,.6);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.tool-proof small {
  font-size: 11px;
  color: rgba(200,168,130,.65);
  letter-spacing: .02em;
}

.tool-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(200,168,130,.1);
  border: 1px solid rgba(200,168,130,.2);
  border-radius: calc(var(--radius) / 2);
}

.tool-note-icon {
  color: var(--almond);
  flex-shrink: 0;
  margin-top: 2px;
}

.tool-note-main {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pearl);
  margin-bottom: 0.25rem;
}

.tool-note-sub {
  display: block;
  font-size: 0.78rem;
  color: rgba(250,247,242,.6);
  line-height: 1.5;
}

/* Evidência clínica */
.ev-highlight {
  display: grid !important;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem 3rem;
  background: rgba(200,168,130,.12);
  border: 1px solid rgba(200,168,130,.2);
  border-radius: var(--radius);
  margin-bottom: 2rem;
  color: var(--surface);
}

.ev-highlight-num { text-align: center; }

.ev-prefix, .ev-suffix {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(200,168,130,.7);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.ev-num-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
  line-height: 1;
}

.ev-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--pearl);
  letter-spacing: -.04em;
}

.ev-unit {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--almond);
  padding-top: 8px;
}

.ev-lede {
  font-size: 1rem;
  color: rgba(250,247,242,.85);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.ev-context {
  font-size: 0.875rem;
  color: rgba(250,247,242,.65);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,.05);
  border-radius: calc(var(--radius) / 2);
}

.ev-note {
  font-size: 0.78rem;
  color: rgba(200,168,130,.6);
  line-height: 1.6;
}

/* ─── 57% stat — Para quem é ───────────────────────── */
.pq-stat {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}

.pq-num {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--pearl);
  letter-spacing: -.04em;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.pq-stat-body p {
  font-size: 0.95rem;
  color: rgba(255,253,248,.75);
  line-height: 1.6;
  margin: 0 0 0.4rem;
}

.pq-stat-body small {
  font-size: 0.72rem;
  color: rgba(255,253,248,.45);
  letter-spacing: .06em;
  text-transform: uppercase;
}


/* ─── 21,6% banda — entre equipa e preços ────────────── */
.glp-band {
  background: var(--choco);
  padding: 5rem 0;
}

.glp-band-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.glp-num-wrap {
  flex-shrink: 0;
}

.glp-num {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 10vw, 8rem);
  font-weight: 500;
  color: var(--almond);
  letter-spacing: -.04em;
  line-height: 1;
}

.glp-copy {
  border-left: 2px solid rgba(204,158,128,.3);
  padding-left: 2.5rem;
}

.glp-body {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(250,247,242,.85);
  line-height: 1.65;
  margin: 0 0 0.75rem;
  max-width: 560px;
}

.glp-src {
  font-size: 0.72rem;
  color: rgba(204,158,128,.6);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ev-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-editorial {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  background: rgba(20, 10, 4, 0.55);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  color: var(--almond);
  letter-spacing: -.04em;
  line-height: 1;
  white-space: nowrap;
}

.stat-body {
  font-size: 0.875rem;
  color: rgba(250,247,242,.7);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.stat-src {
  font-size: 0.72rem;
  color: rgba(200,168,130,.5);
  letter-spacing: .04em;
}

.section-team {
  background: var(--surface);
}

.sec-head {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sec-head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.sec-head p {
  margin: 0;
}

.sec-head .lead {
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.55;
}

.sec-head--dark h2 { color: var(--choco); }
.sec-head--dark .lead { color: var(--muted); }

/* Card featured — Kadosh */
.eq-card--featured {
  display: grid;
  grid-template-columns: 240px 1fr;
  max-height: 240px;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ivory);
  margin-bottom: 2rem;
}

.eq-card--featured .eq-img {
  overflow: hidden;
}

.eq-card--featured .eq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.eq-card--featured .eq-body {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

/* Grid de especialistas */
.eq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.eq-card--spec {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: col