:root {
  --ink: #1d1d1f;
  --ink-soft: #333333;
  --muted: #686868;
  --blue: #0066cc;
  --blue-focus: #0071e3;
  --blue-on-dark: #2997ff;
  --blue-ice: #f5fbff;
  --line: #e0e0e0;
  --hairline: #e0e0e0;
  --divider-soft: #f0f0f0;
  --paper: #ffffff;
  --wash: #f5f5f7;
  --surface-pearl: #fafafc;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 11px;
  --radius-xl: 24px;
  --radius-panel-tight: 22px;
  --max: 1440px;
  --page-gutter: clamp(12px, 1.7vw, 24px);
  /* design.md spacing */
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 17px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 46%, #ffffff 100%);
  color: var(--ink);
  font-family: "Instrument Sans", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

.reveal-target {
  opacity: 0;
  transition: opacity 640ms ease;
}

.reveal-target.is-visible {
  opacity: 1;
}

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

a:focus-visible,
main:focus-visible {
  outline: 2px solid var(--blue-focus);
  outline-offset: 4px;
}

/* Foco após navegação por âncora (outline externo pode ser cortado com overflow:hidden). */
section:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--blue-focus);
}

.investment:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.82);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

main {
  min-width: 0;
}

.page-shell :where(p, h1, h2, h3) {
  text-wrap: pretty;
}

.page-shell {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding: 20px max(var(--page-gutter), env(safe-area-inset-right)) 32px max(var(--page-gutter), env(safe-area-inset-left));
}

/* Bordas laterais só vêm do .page-shell; alinha logo e CTA ao mesmo grid do restante */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: 100%;
  min-width: 0;
  min-height: 44px;
  margin: 0 0 var(--space-xxl);
  padding: 10px 0 14px;
  border-bottom: 1px solid var(--hairline);
}

.site-header .brand {
  display: flex;
  align-items: center;
  line-height: 0;
  min-width: 0;
  flex-shrink: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-header .brand img {
  display: block;
  width: auto;
  height: 34px;
}

.footer-brand img {
  width: 128px;
  height: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(0, 102, 204, 0.14);
  background: var(--blue);
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.224px;
  box-shadow: none;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.button__label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.button__label--short {
  display: none;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--blue-focus);
}

.button:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 120ms;
}

.button:focus-visible {
  outline-offset: 3px;
}

/* CTA do header: button-primary compacto (design.md padding 11px 22px) */
.button--nav {
  min-height: 36px;
  padding: 11px 22px;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.29;
  letter-spacing: -0.224px;
  border: none;
  transition: background 160ms ease, opacity 160ms ease;
}

.button--nav:hover {
  transform: none;
  background: var(--blue-focus);
}

.button--nav:active {
  transform: scale(0.98);
  opacity: 0.94;
}

.button__chevron {
  margin-left: 1px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0.95;
}

.site-header .button--nav {
  flex: 0 0 auto;
}

.hero {
  position: relative;
  display: grid;
  /* Coluna da imagem mais larga para o hero aparecer maior */
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(24px, 3.5vw, 48px);
  min-width: 0;
  margin-bottom: -18px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 var(--space-xl);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 var(--space-sm);
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.29;
  letter-spacing: -0.224px;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.25rem, 3.65vw, 3.5rem);
  font-weight: 600;
  font-kerning: normal;
  line-height: 1.07;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-align: left;
  max-width: 100%;
}

.hero__title-line {
  display: block;
  max-width: 100%;
  overflow-wrap: break-word;
  white-space: nowrap;
}

@media (min-width: 981px) and (max-width: 1200px) {
  .hero__title-line {
    white-space: normal;
    text-wrap: balance;
  }
}

.hero__title-line + .hero__title-line {
  margin-top: 0.03em;
}

/* Acento cromático só nos verbos de ação; peso idêntico ao restante do H1 */
.hero__title-accent {
  font-weight: inherit;
  color: var(--blue);
  letter-spacing: inherit;
}

/* Pontuação e coloções gramaticais recuam: leitura foca no conteúdo lexical */
.hero__title-punct {
  font-weight: inherit;
  color: var(--ink-soft);
  letter-spacing: inherit;
}

.hero__title-line--payoff {
  letter-spacing: -0.018em;
}

.hero__prose {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
  max-width: min(44rem, 100%);
  margin-top: var(--space-lg);
  /* Altura da linha de apoio removida: mantém o mesmo respiro até os CTAs */
  padding-bottom: calc(var(--space-md) + (17px * 1.4705882 * 2));
}

.hero__prose .hero__lead {
  margin: 0;
}

.hero__lead {
  display: block;
  margin: 0;
  max-width: none;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4705882;
  letter-spacing: -0.022em;
  hyphens: manual;
  overflow-wrap: break-word;
  text-wrap: pretty;
  color: var(--ink-soft);
}

.hero__rule {
  width: 100%;
  max-width: 12rem;
  height: 1px;
  margin: 0;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--hairline), transparent);
  align-self: flex-start;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
  max-width: 100%;
  min-width: 0;
  margin-top: var(--space-xl);
}

.play-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4705882;
  letter-spacing: -0.022em;
  border-radius: 999px;
  transition: color 160ms ease;
}

.play-link:hover {
  color: var(--blue-focus);
}

.play-link:hover .play-link__text span:first-child {
  color: var(--blue-focus);
}

.play-link:hover .play-link__text span:last-child {
  color: var(--ink-soft);
}

.play-link:active .play-link__icon {
  transform: scale(0.96);
}

.play-link__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
}

.play-link__text span {
  display: block;
  line-height: 1.25;
}

.play-link__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 102, 204, 0.26);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(0, 102, 204, 0.1);
  transition:
    border-color 160ms ease,
    box-shadow 200ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.play-link:hover .play-link__icon {
  border-color: rgba(0, 113, 227, 0.38);
  background: var(--blue-ice);
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.14);
  transform: translateY(-1px);
}

.play-link:focus-visible {
  outline: 2px solid var(--blue-focus);
  outline-offset: 6px;
}

.play-link__icon svg {
  width: 17px;
  height: 17px;
  margin-left: 2px;
  fill: currentColor;
  stroke-width: 2;
}

.hero .button {
  min-height: 52px;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.hero__visual {
  position: relative;
  min-height: 650px;
  transform: translateX(22px);
  isolation: isolate;
}

.hero__accents {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero__dot-grid {
  position: absolute;
  width: clamp(74px, 9.5vw, 96px);
  height: clamp(48px, 6.2vw, 62px);
  background-image: radial-gradient(circle, rgba(41, 151, 255, 0.45) 1.25px, transparent 1.25px);
  background-size: 12px 12px;
  opacity: 0.85;
}

/* Metade sobre o canvas claro e metade sobre a foto, como na referência */
.hero__dot-grid--tr {
  top: clamp(38px, 5.4vw, 58px);
  right: clamp(-18px, -1.8vw, -8px);
}

.hero__dot-grid--br {
  bottom: clamp(68px, 9vw, 118px);
  right: clamp(-14px, -1.6vw, -6px);
}

.hero__media-slot {
  position: absolute;
  inset: 0 0 auto auto;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 653 / 565;
  overflow: visible;
  border-radius: 0;
  transform: none;
  background-color: transparent;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  box-shadow: none;
}

@media (min-width: 981px) {
  .hero__media-slot {
    background-image: url("https://50186173.fs1.hubspotusercontent-na1.net/hubfs/50186173/Miami%202026/img_topo_1.webp");
  }
}

/* Faixa estilo Apple: parchment, sem sombra no chrome; tipografia caption + body */
.metrics {
  --metric-pad-x: clamp(16px, 2.5vw, 28px);
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-bottom: var(--space-xxl);
  margin-top: var(--space-md);
  padding: var(--space-xl) 0;
  border-radius: var(--radius-md);
  background: var(--wash);
  border: 1px solid var(--divider-soft);
  box-shadow: none;
}

.metric-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  min-height: 0;
  padding: var(--space-sm) var(--metric-pad-x) var(--space-md);
  color: var(--ink);
}

.metric-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: var(--hairline);
}

.metric-item__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 2px;
  color: var(--blue);
  opacity: 0.95;
}

.metric-item__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.metric-item__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  max-width: 11.5rem;
}

.metric-item__figure {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.metric-item__title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.022em;
  color: var(--ink);
}

.metric-item__caption {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.016em;
  color: var(--muted);
}

.metric-item:first-child .metric-item__title {
  letter-spacing: -0.024em;
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 62px);
  margin-bottom: 54px;
  padding: clamp(30px, 5vw, 56px);
  overflow: hidden;
  border: 1px solid var(--divider-soft);
  border-radius: var(--radius-lg);
  background: var(--wash);
}

.section-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding-right: clamp(28px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.section-heading h2 {
  margin: 0;
  max-width: 11.5em;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.052em;
}

.about__dek {
  max-width: 29rem;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: -0.022em;
}

.about__panel {
  display: grid;
  align-content: center;
  min-width: 0;
  gap: 14px;
}

.about__panel-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin: 0;
  padding: 8px 13px 8px 11px;
  border: 1px solid rgba(0, 102, 204, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.012em;
}

.about__panel-label-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--ink);
}

.about__panel-label-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}

.checks {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  list-style: none;
}

.checks li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 17px 20px;
  border-top: 1px solid var(--divider-soft);
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.024em;
}

.checks li:first-child {
  border-top: 0;
}

.checks__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 102, 204, 0.18);
  border-radius: 999px;
  background: var(--blue-ice);
  color: var(--blue);
}

.checks__mark--positive {
  background: var(--blue);
  color: #fff;
}

.checks__mark svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.value-section {
  display: grid;
  gap: 24px;
  margin-bottom: 54px;
}

.value-section__heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.value-section__heading h2,
.section-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.052em;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  overflow: visible;
  border: 1px solid var(--divider-soft);
  border-radius: var(--radius-lg);
  background: var(--wash);
  padding: 12px;
}

.value-card {
  min-height: 248px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--divider-soft);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: none;
  cursor: default;
  transition: background 180ms ease, border-color 180ms ease;
}

.value-card:hover {
  background: var(--surface-pearl);
  border-color: var(--hairline);
}

.value-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(0, 102, 204, 0.14);
  border-radius: 999px;
  background: var(--blue-ice);
  color: var(--blue);
}

.value-card__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3,
.speaker-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.022em;
}

.value-card p {
  max-width: 19rem;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.022em;
}

.value-card::after {
  content: none;
}

.section-title {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 24px;
}

.section-title > p:last-child {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.47;
  letter-spacing: -0.022em;
}

.speakers {
  margin-bottom: 54px;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--divider-soft);
  border-radius: var(--radius-lg);
  background: var(--wash);
  color: var(--ink);
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.speaker-card {
  display: grid;
  grid-template-rows: 220px auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--divider-soft);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  box-shadow: none;
  cursor: default;
  transition: background 180ms ease, border-color 180ms ease;
}

.speaker-card:hover {
  background: var(--surface-pearl);
  border-color: var(--hairline);
}

.speaker-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  filter: saturate(0.96) contrast(1.02);
}

.speaker-card div {
  padding: 18px 18px 20px;
}

.speaker-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: -0.014em;
}

.investment {
  --investment-tone-a: rgb(24, 25, 28);
  --investment-tone-b: rgb(14, 15, 17);
  --investment-tone-c: rgb(8, 9, 10);
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 54px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    98deg,
    var(--investment-tone-a) 0%,
    var(--investment-tone-b) 46%,
    var(--investment-tone-c) 92%
  );
  color: #fff;
  box-shadow: none;
}

.investment__content {
  box-sizing: border-box;
  min-width: 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, min(22rem, 100%)) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(28px, 4.8vw, 52px);
  padding: clamp(28px, 3.8vw, 44px) clamp(24px, 3.2vw, 44px);
  isolation: isolate;
  overflow: hidden;
  border-radius: inherit;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(
      188deg,
      rgba(6, 6, 8, 0.52) 0%,
      rgba(6, 6, 8, 0) 42%,
      rgba(6, 6, 8, 0.35) 100%
    ),
    radial-gradient(
      118% 88% at 6% -8%,
      rgba(41, 151, 255, 0.1) 0%,
      rgba(41, 151, 255, 0.03) 40%,
      transparent 62%
    ),
    radial-gradient(
      108% 78% at 104% 102%,
      rgba(0, 102, 204, 0.065) 0%,
      rgba(0, 102, 204, 0.018) 48%,
      transparent 74%
    ),
    linear-gradient(
      148deg,
      rgba(26, 28, 31, 0.38) 0%,
      rgba(18, 19, 22, 0.18) 48%,
      rgba(255, 255, 255, 0) 74%
    );
}

/* Textura técnica sutil sem verticais concorrendo com as divisórias dos benefícios. */
.investment__content::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.045) 0.85px,
      transparent 1px
    );
  background-size: 31px 31px, 31px 31px;
  mix-blend-mode: overlay;
}

.investment__content > .investment__panel {
  position: relative;
  z-index: 1;
}

.investment__panel {
  display: flex;
  min-width: 0;
}

.investment__panel--pricing {
  align-self: center;
}

.investment__panel--benefits {
  align-self: center;
  container-type: inline-size;
  container-name: inv-benefits;
}

.investment__inner {
  display: flex;
  max-width: 28rem;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(14px, 2vw, 18px);
}

.investment__heading {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(10px, 1.4vw, 16px);
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
}

.investment__kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.investment__price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(6px, 1vw, 10px);
  margin: 0;
}

.investment__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.32em 0.52em;
  margin: 0;
}

.investment__price-line-main {
  font-size: clamp(2.1rem, 3.65vw, 3.05rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.056em;
  color: #fff;
}

.investment__price-suffix {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(16px, 1.42vw, 19px);
  font-weight: 400;
  line-height: 1.26;
  letter-spacing: -0.018em;
}

.investment__installments {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.42vw, 19px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.028em;
}

.investment__note {
  margin: 2px 0 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.47;
  font-weight: 400;
  letter-spacing: -0.016em;
}

.investment__fallback {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.42;
  letter-spacing: -0.014em;
}

.investment__fallback a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.investment__fallback a:focus-visible {
  outline-offset: 3px;
}

.investment__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 9px;
  min-height: 48px;
  margin-top: clamp(8px, 1.15vw, 12px);
  padding: 0 22px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.22px;
  transition: background 140ms ease, transform 140ms ease;
}

.investment__cta:focus-visible {
  outline-offset: 3px;
}

.investment__cta:hover {
  background: var(--blue-focus);
}

.investment__cta:active {
  transform: scale(0.97);
}

.investment__cta svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.9;
}

.investment__benefits {
  --investment-divider: rgba(255, 255, 255, 0.07);
  list-style: none;
  margin: 0;
  padding: 4px 0;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: stretch;
  align-items: start;
  background: linear-gradient(
    90deg,
    transparent calc(33.333333% - 0.5px),
    var(--investment-divider) calc(33.333333% - 0.5px),
    var(--investment-divider) calc(33.333333% + 0.5px),
    transparent calc(33.333333% + 0.5px),
    transparent calc(66.666667% - 0.5px),
    var(--investment-divider) calc(66.666667% - 0.5px),
    var(--investment-divider) calc(66.666667% + 0.5px),
    transparent calc(66.666667% + 0.5px)
  );
}

.investment__benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: clamp(14px, 2.2vw, 22px) clamp(12px, 2.6vw, 26px);
  text-align: center;
}

.investment__benefit + .investment__benefit {
  margin: 0;
  padding-inline: clamp(12px, 2.6vw, 26px);
}

.investment__benefit-icon {
  display: flex;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  margin: 0 0 14px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.investment__benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.investment__benefit-title {
  margin: 0;
  width: 100%;
  max-width: 15rem;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  text-wrap: balance;
  color: rgba(255, 255, 255, 0.95);
}

.investment__benefit-desc {
  margin: 8px 0 0;
  width: 100%;
  max-width: 17rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.016em;
  text-align: center;
  text-wrap: balance;
}

@media (min-width: 901px) {
  @container inv-benefits (min-width: 720px) {
    .investment__benefit-desc {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      line-clamp: 3;
      overflow: hidden;
    }
  }
}

@media (max-width: 900px) {
  .investment__content {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: clamp(24px, 5vw, 36px);
  }

  /* Bloco pricing + CTA usa toda a largura; texto mantém âncora à esquerda (ritmo editorial). */
  .investment__panel--pricing {
    width: 100%;
    justify-content: center;
  }

  .investment__inner {
    width: 100%;
    max-width: none;
    align-items: stretch;
  }

  .investment__cta {
    align-self: center;
    width: fit-content;
    max-width: 100%;
  }

  .investment__panel--benefits {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: clamp(22px, 4.5vw, 32px);
  }

  .investment__benefits {
    grid-template-columns: 1fr;
    padding: 0;
    background: none;
  }

  .investment__benefit {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 4px;
    padding: 0;
    text-align: start;
  }

  .investment__benefit + .investment__benefit {
    margin-top: clamp(18px, 3.5vw, 24px);
    padding-inline-start: 0;
    padding-top: clamp(18px, 3.5vw, 24px);
    border-inline-start: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .investment__benefit-icon {
    grid-row: 1 / span 2;
    grid-column: 1;
    margin: 0;
  }

  .investment__benefit-title {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    text-align: start;
    text-wrap: balance;
  }

  .investment__benefit-desc {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin: 0;
    max-width: none;
    text-align: start;
    text-wrap: balance;
  }
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 2.1fr);
  align-items: center;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--wash);
  backdrop-filter: none;
}

.footer-brand {
  display: grid;
  grid-template-columns: 126px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  min-width: 0;
}

.footer-brand p,
.site-footer address {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-style: normal;
  letter-spacing: -0.08px;
  min-width: 0;
}

.site-footer address {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.site-footer address > span {
  position: relative;
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.35;
}

.site-footer address > span:last-child {
  border-right: 0;
}

.footer-contact-card a {
  color: inherit;
}

.footer-contact-card a:not(.button) {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 140ms ease;
}

.footer-contact-card a:not(.button):hover {
  text-decoration-color: currentColor;
}

.footer-contact-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.7;
}

.footer-addresses {
  display: grid;
  gap: 2px;
}

.footer-socials {
  display: grid;
  gap: 6px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  line-height: 1.2;
}

.footer-socials svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    margin-bottom: var(--space-xl);
  }

  .hero__copy {
    padding-bottom: var(--space-lg);
  }

  .hero__visual {
    display: none;
    min-height: 0;
    transform: none;
  }

  .hero__accents {
    display: none;
  }

  .value-grid,
  .speaker-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer: proporção semelhante ao desktop + colunas alinhadas ao topo (stretch gerava espaço morto dentro do address empilhado). */
  .site-footer {
    grid-template-columns: minmax(200px, 0.94fr) minmax(248px, 2.06fr);
    align-items: start;
  }

  .footer-brand {
    grid-template-columns: 1fr;
    gap: 13px;
    align-items: start;
    justify-items: start;
    min-height: 0;
    padding: clamp(18px, 3vw, 24px);
  }

  .footer-brand img {
    width: 132px;
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    padding: var(--space-lg) 0;
  }

  .metric-item::before {
    display: none;
  }

  .metric-item {
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid var(--hairline);
  }

  .metric-item:nth-child(-n + 2) {
    border-top: none;
  }

  .metric-item:nth-child(odd) {
    border-right: 1px solid var(--hairline);
  }

  .metric-item:nth-child(5) {
    grid-column: 1 / -1;
    border-right: none;
  }

  .investment {
    border-radius: var(--radius-panel-tight);
  }

  .investment__content {
    padding: 34px 28px;
  }

  .investment__cta {
    border-radius: 999px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px;
  }

  .section-heading {
    padding-right: 0;
    border-right: 0;
  }

  .site-footer address {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-content: start;
    min-height: 0;
  }

  .site-footer address > span {
    min-height: 0;
    align-items: flex-start;
    padding-block: clamp(13px, 2.4vw, 19px);
    padding-inline: clamp(18px, 3vw, 26px);
    border-right: 0;
  }

  /* Hero empilhado: H1 fluído (sem blocos nowrap fixos como no desktop lado a lado). */
  .hero__title {
    text-wrap: pretty;
  }

  .hero__title-line {
    display: inline;
    white-space: normal;
    overflow-wrap: break-word;
    vertical-align: baseline;
  }

  .hero__title-line + .hero__title-line {
    margin-top: 0;
  }
}

@media (max-width: 980px) and (min-width: 641px) {
  .site-footer address > span:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .footer-brand p {
    text-wrap: balance;
    max-width: min(42ch, 100%);
  }
}

@media (max-width: 640px) {
  .page-shell {
    --mobile-pad: clamp(14px, 4vw, 18px);
    padding: 16px max(var(--mobile-pad), env(safe-area-inset-right)) 30px max(var(--mobile-pad), env(safe-area-inset-left));
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(112px, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 42px;
    margin-bottom: 30px;
    padding: 8px 0 12px;
  }

  .site-header .brand {
    width: min(48vw, 174px);
    overflow: hidden;
  }

  .site-nav {
    justify-self: end;
  }

  .site-header .brand img {
    height: 28px;
    width: auto;
    max-width: 100%;
  }

  .site-header .button--nav {
    justify-self: end;
    flex: 0 1 auto;
    max-width: min(46vw, 164px);
    min-height: 34px;
    padding: 8px 12px;
    font-size: 12px;
    letter-spacing: -0.02em;
    overflow: hidden;
  }

  .site-header .button__chevron {
    flex: 0 0 auto;
  }

  .hero__title {
    font-size: clamp(1.56rem, 8.15vw, 2.55rem);
    line-height: 1.07;
    max-width: 100%;
  }

  .hero__title-line {
    white-space: normal;
    text-wrap: inherit;
  }

  .hero__prose {
    gap: 16px;
    margin-top: 20px;
    padding-bottom: calc(16px + (clamp(15px, 4.05vw, 17px) * 1.48 * 2));
  }

  .hero__lead {
    font-size: clamp(15px, 4.05vw, 17px);
    line-height: 1.48;
    letter-spacing: -0.026em;
  }

  .hero__lead {
    text-wrap: pretty;
  }

  .hero__rule {
    max-width: 100%;
  }

  /* Primário + play-link na mesma linha (audiência maior no mobile) */
  .hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(8px, 2.6vw, 12px);
    width: 100%;
    margin-top: 22px;
  }

  .hero__actions > .button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 10px clamp(12px, 3.4vw, 18px);
    gap: 8px;
    font-size: clamp(13px, 3.55vw, 15px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .hero__actions .play-link {
    min-width: 0;
    align-items: center;
    gap: 8px;
    font-size: clamp(11px, 3vw, 12px);
    line-height: 1.2;
    letter-spacing: -0.024em;
  }

  .hero__actions .play-link__icon {
    width: 40px;
    height: 40px;
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.09);
  }

  .hero__actions .play-link__icon svg {
    width: 15px;
    height: 15px;
    margin-left: 1px;
  }

  .hero__actions .play-link__text {
    gap: 0;
  }

  .hero__actions .play-link__text span {
    line-height: 1.18;
  }

  .about {
    gap: 24px;
    margin-bottom: 36px;
    padding: 28px 18px 18px;
    border-radius: var(--radius-panel-tight);
  }

  .section-heading h2 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.06;
    letter-spacing: -0.05em;
  }

  .about__dek {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.42;
  }

  .about__panel {
    gap: 12px;
  }

  .about__panel-label {
    gap: 6px;
    padding: 7px 12px 7px 10px;
    font-size: 12px;
  }

  .about__panel-label-icon svg {
    width: 13px;
    height: 13px;
  }

  .checks {
    border-radius: 16px;
  }

  .checks li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 13px;
    min-height: 64px;
    padding: 15px 15px;
    font-size: 15.5px;
    line-height: 1.34;
  }

  .checks__mark {
    width: 30px;
    height: 30px;
  }

  .checks__mark svg {
    width: 14px;
    height: 14px;
  }

  .metrics,
  .value-grid,
  .speaker-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .metrics {
    padding: var(--space-md) 0;
  }

  .value-grid {
    border-radius: var(--radius-panel-tight);
    padding: 10px;
  }

  .value-section {
    gap: 18px;
    margin-bottom: 36px;
  }

  .value-card {
    min-height: auto;
    padding: 26px 20px;
  }

  .value-card__icon {
    margin-bottom: 22px;
  }

  .speakers {
    padding: 24px 18px;
    border-radius: var(--radius-panel-tight);
    margin-bottom: 36px;
  }

  .section-title {
    gap: 12px;
    margin-bottom: 18px;
  }

  .speaker-grid {
    border-radius: 16px;
  }

  .metric-item {
    border-right: none;
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid var(--hairline);
  }

  .metric-item:nth-child(odd) {
    border-right: none;
  }

  /* 1 col.: repõe linha entre 1.º e 2.º item (≤980px usava primeira fila sem border-top). */
  .metric-item:nth-child(-n + 2) {
    border-top: 1px solid var(--hairline);
  }

  .metric-item:first-child {
    border-top: none;
  }

  .metric-item:nth-child(5) {
    grid-column: auto;
  }

  .investment {
    margin-bottom: 36px;
    border-radius: var(--radius-panel-tight);
  }

  .investment__content {
    padding: 26px 18px;
  }

  .investment__inner {
    max-width: none;
    gap: 12px;
  }

  .investment__price-line-main {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .investment__price-suffix,
  .investment__installments {
    font-size: 15px;
  }

  .investment__note {
    font-size: 13px;
    line-height: 1.42;
  }

  .investment__fallback {
    margin-top: 0;
    text-align: center;
  }

  .investment__cta {
    align-self: center;
    width: fit-content;
    max-width: 100%;
    min-height: 48px;
    margin-top: 8px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 16px;
  }

  .footer-brand {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    border-right: 0;
    border-bottom: 0;
    padding: 22px 22px 8px;
  }

  .footer-brand img {
    width: 132px;
  }

  .footer-brand p,
  .site-footer address {
    font-size: 15px;
    line-height: 1.42;
    letter-spacing: -0.2px;
  }

  .site-footer address > span {
    min-height: auto;
    gap: 11px;
    padding: 7px 22px;
    border-right: 0;
    border-top: 0;
  }

  .site-footer address > span:first-child {
    border-top: 0;
  }

  .site-footer address > span:last-child {
    padding-bottom: 22px;
  }

  .footer-contact-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .footer-contact-icon svg {
    width: 17px;
    height: 17px;
  }

  .footer-contact-card--social {
    min-height: auto;
    padding-top: 8px;
  }

  .footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .footer-socials a {
    min-height: 32px;
    gap: 8px;
  }

  .speaker-card {
    grid-template-columns: none;
    grid-template-rows: 220px auto;
  }

  .speaker-card img {
    width: 100%;
    height: 220px;
  }
}

@media (max-width: 430px) {
  .site-header .button__label--full {
    display: none;
  }

  .site-header .button__label--short {
    display: inline;
  }

  .site-header {
    grid-template-columns: minmax(96px, 1fr) auto;
    gap: 10px;
  }

  .site-header .brand {
    width: min(42vw, 154px);
  }

  .site-header .button--nav {
    max-width: 118px;
    padding-inline: 13px;
  }

  .hero__actions > .button {
    padding-inline: 16px;
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .site-header .brand {
    width: min(40vw, 138px);
  }

  .hero__actions {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(6px, 2vw, 10px);
  }

  .hero__actions .play-link {
    gap: 8px;
    min-width: 0;
  }

  .hero__actions .play-link__text {
    min-width: 0;
  }

  .hero__actions .play-link__text span {
    overflow-wrap: break-word;
    hyphens: manual;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-target {
    transition-duration: 1ms;
    transition-delay: 0ms;
  }
}

/* —— Modal formulário HubSpot (candidatura) ——————————————————————————— */
.apply-modal-dialog {
  box-sizing: border-box;
  max-width: min(calc(100vw - var(--space-lg) * 2), var(--max));
  width: min(44rem, 94vw);
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.apply-modal-dialog::backdrop {
  background: rgba(20, 21, 23, 0.52);
  backdrop-filter: blur(6px);
}

@media (prefers-reduced-motion: reduce) {
  .apply-modal-dialog::backdrop {
    backdrop-filter: none;
  }
}

.apply-modal-dialog__surface {
  max-height: min(88vh, 860px);
  overflow: auto;
  padding: clamp(22px, 4vw, 30px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--divider-soft);
  background: var(--paper);
  box-shadow: var(--shadow);
  font-family: "Instrument Sans", system-ui, -apple-system, sans-serif;
}

.apply-modal-dialog__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  margin: 0 0 12px;
}

.apply-modal-dialog__title {
  margin: 0;
  font-size: clamp(1.25rem, 2.8vw, 1.45rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.apply-modal-dialog__close {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin: -8px -8px 0 0;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}

.apply-modal-dialog__close svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.apply-modal-dialog__close:hover {
  background: var(--wash);
  color: var(--ink);
}

.apply-modal-dialog__close:focus-visible {
  outline: 2px solid var(--blue-focus);
  outline-offset: 2px;
}

.apply-modal-dialog__dek {
  margin: 0 0 clamp(14px, 2.8vw, 20px);
  max-width: none;
  font-size: 14px;
  line-height: 1.46;
  letter-spacing: -0.015em;
  color: var(--muted);
}

.apply-modal-dialog__hs {
  min-height: 6rem;
  margin: 0 -4px;
  padding-bottom: clamp(12px, 2vw, 18px);
}

.apply-modal-dialog__hs .hs-form-field label,
.apply-modal-dialog__hs .hs-field-desc {
  font-family: inherit;
}

.apply-modal-dialog__footnote {
  margin: clamp(14px, 2.5vw, 20px) 0 0;
  padding-top: clamp(12px, 2vw, 16px);
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: -0.014em;
  color: var(--muted);
}

.apply-modal-dialog__footnote a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.apply-modal-dialog__footnote a:hover {
  color: var(--blue-focus);
}

.apply-modal-dialog__error {
  margin: 0;
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  background: var(--wash);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.apply-modal-dialog__error a {
  color: var(--blue);
}

@media (max-width: 480px) {
  .apply-modal-dialog {
    width: min(100vw - 24px, 94vw);
  }

  .apply-modal-dialog__close {
    width: 36px;
    height: 36px;
    margin: -10px -10px 0 0;
  }
}
