:root {
  --paper: #f7f3ec;
  --paper-strong: #eee5d7;
  --surface: #fffdfa;
  --surface-soft: #f1eadf;
  --text: #303b3e;
  --text-soft: #647075;
  --slate: #405157;
  --slate-deep: #344348;
  --gold: #a87d32;
  --gold-dark: #7b591f;
  --gold-soft: #d8c39a;
  --sage: #73837d;
  --line: #ddd3c4;
  --white: #ffffff;
  --shadow-sm: 0 12px 32px rgba(52, 67, 72, .07);
  --shadow-md: 0 22px 52px rgba(52, 67, 72, .11);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 86px;
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

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

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

/* Textos explicativos usam centralização natural para evitar lacunas entre palavras. */


/* Evita separação automática de sílabas em qualquer dispositivo. */
h1,
h2,
h3,
p,
li,
a,
button,
small,
strong,
span {
  -webkit-hyphens: none;
  hyphens: none;
  word-break: normal;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

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

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

.section-narrow {
  max-width: 1050px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--slate-deep);
  color: var(--white);
  text-decoration: none;
  translate: 0 -180%;
  transition: translate .2s ease;
}

.skip-link:focus {
  translate: 0 0;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--slate);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.eyebrow--gold {
  color: var(--gold-dark);
}

.eyebrow--light {
  color: var(--gold-soft);
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 20px;
  color: var(--slate-deep);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

.section-heading > p:last-of-type {
  max-width: 750px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1.02rem;
  text-align: center;
  text-align-last: auto;
  hyphens: none;
}

/* Cabeçalho */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(247, 243, 236, .98);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.site-header.is-scrolled {
  border-color: rgba(168, 125, 50, .18);
  background: var(--surface);
  box-shadow: 0 8px 26px rgba(52, 67, 72, .06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 292px;
  flex: 0 0 auto;
  text-decoration: none;
  cursor: default;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.7vw, 26px);
}

.main-nav > a,
.nav-dropdown > button {
  position: relative;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: var(--slate);
  font-family: var(--font-body);
  font-size: .86rem;
  font-weight: 650;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.main-nav > a::after,
.nav-dropdown > button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--gold);
  scale: 0 1;
  transform-origin: center;
  transition: scale .2s ease;
}

.main-nav > a:hover,
.main-nav > a:focus-visible,
.nav-dropdown > button:hover,
.nav-dropdown > button:focus-visible {
  color: var(--gold-dark);
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.nav-dropdown > button:hover::after,
.nav-dropdown > button:focus-visible::after {
  scale: 1 1;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-dropdown > button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: rotate .2s ease;
}

.nav-dropdown.is-open > button svg {
  rotate: 180deg;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 40;
  min-width: 172px;
  display: none;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  translate: -50% 0;
}

.nav-dropdown.is-open .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown:hover .nav-dropdown__menu {
  display: block;
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--slate);
  font-size: .86rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  background: var(--surface-soft);
  color: var(--gold-dark);
}

.menu-toggle {
  display: none;
  min-width: 92px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--slate-deep);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle__lines {
  width: 19px;
  display: grid;
  gap: 4px;
}

.menu-toggle__lines > span {
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: rotate .2s ease, translate .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines > span:nth-child(1) {
  translate: 0 6px;
  rotate: 45deg;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines > span:nth-child(3) {
  translate: 0 -6px;
  rotate: -45deg;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 94px 0 64px;
  background:
    radial-gradient(circle at 18% 22%, rgba(216, 195, 154, .34), transparent 31%),
    radial-gradient(circle at 84% 72%, rgba(115, 131, 125, .16), transparent 34%),
    linear-gradient(145deg, #fbf8f2 0%, #f2ebdf 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(168, 125, 50, .16);
  border-radius: 30px;
  pointer-events: none;
}

.hero-decoration {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(168, 125, 50, .2);
  border-radius: 50%;
}

.hero-decoration::before,
.hero-decoration::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(168, 125, 50, .11);
  border-radius: inherit;
}

.hero-decoration::after {
  inset: 48px;
}

.hero-decoration--left {
  top: 80px;
  left: -150px;
}

.hero-decoration--right {
  right: -170px;
  bottom: 20px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  text-align: center;
}

.hero h1 span {
  display: block;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--slate-deep);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.55rem);
  font-weight: 600;
  letter-spacing: -.022em;
  line-height: 1.02;
  text-align: center;
}

.hero-lead {
  max-width: 730px;
  margin: 0 auto 32px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
  margin-bottom: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.button--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(168, 125, 50, .2);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--gold-dark);
  box-shadow: 0 15px 32px rgba(123, 89, 31, .23);
}

.button--secondary,
.button--outline {
  border-color: rgba(64, 81, 87, .3);
  background: rgba(255, 255, 255, .38);
  color: var(--slate-deep);
}

.button--secondary:hover,
.button--secondary:focus-visible,
.button--outline:hover,
.button--outline:focus-visible {
  border-color: var(--gold);
  background: var(--surface);
  color: var(--gold-dark);
}

.button--light {
  border-color: rgba(255, 255, 255, .45);
  background: var(--surface);
  color: var(--slate-deep);
}

.button--disabled,
.button:disabled {
  border-color: rgba(100, 112, 117, .22);
  background: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .68);
  box-shadow: none;
  cursor: not-allowed;
  opacity: .72;
}

.section-heading .button--disabled,
.section-heading .button:disabled {
  border-color: var(--line);
  background: rgba(255, 253, 250, .58);
  color: var(--text-soft);
}

.section-action {
  margin-top: 26px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 15px;
  color: var(--slate);
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .045em;
  text-align: center;
  text-transform: uppercase;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-signature {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.hero-signature span {
  width: 64px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-soft));
}

.hero-signature span:last-child {
  background: linear-gradient(to left, transparent, var(--gold-soft));
}

.hero-signature img {
  width: 38px;
  height: 38px;
  opacity: .74;
}

/* Cards */
.value-grid,
.practice-grid,
.structure-grid,
.partner-categories,
.content-grid {
  display: grid;
  gap: 22px;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
  min-width: 0;
  padding: 32px 28px;
  border-top: 2px solid var(--gold-soft);
  background: transparent;
  text-align: center;
}

.value-card h3,
.practice-card h3,
.structure-card h3,
.partner-categories h3,
.content-card h3,
.journey-grid h3 {
  color: var(--slate-deep);
  font-family: var(--font-display);
  font-weight: 600;
  text-align: center;
}

.value-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.value-card p,
.practice-card p,
.structure-card p,
.partner-categories p,
.content-card p,
.journey-grid p {
  margin-bottom: 0;
  color: var(--text-soft);
  text-align: center;
  text-align-last: auto;
  hyphens: none;
}

.practice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.practice-card {
  min-width: 0;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.practice-card__icon,
.partner-icon {
  display: grid;
  place-items: center;
  border: 1px solid rgba(168, 125, 50, .28);
  background: rgba(216, 195, 154, .16);
  color: var(--gold-dark);
}

.practice-card__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 16px;
}

.practice-card__icon svg,
.partner-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.practice-card__icon svg {
  width: 26px;
  height: 26px;
}

.practice-card h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.structure-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.structure-card {
  min-width: 0;
  min-height: 218px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.structure-card__tag,
.content-card > span {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.structure-card h3,
.content-card h3 {
  margin-bottom: 12px;
  font-size: 1.43rem;
  line-height: 1.22;
}

/* Área do Cliente */
.section--client {
  overflow: hidden;
  background: var(--slate-deep);
  color: var(--white);
}

.section--client::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(216, 195, 154, .15);
  border-radius: 50%;
}

.client-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
}

.client-copy {
  min-width: 0;
  text-align: center;
}

.client-copy h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

.client-copy > p:not(.eyebrow) {
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, .76);
  text-align: center;
  text-align-last: auto;
  hyphens: none;
}

.feature-list {
  max-width: 560px;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 auto 30px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 12px 44px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
  color: rgba(255, 255, 255, .88);
  text-align: center;
  hyphens: none;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 16px;
  color: var(--gold-soft);
  font-weight: 700;
  translate: 0 -50%;
}

.portal-preview {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 30px 70px rgba(15, 25, 28, .28);
  color: var(--text);
}

.portal-preview__topbar {
  min-height: 50px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.portal-preview__dots {
  display: flex;
  gap: 6px;
}

.portal-preview__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
}

.portal-preview__topbar small {
  grid-column: 3;
  color: var(--text-soft);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.portal-preview__body {
  padding: 28px;
}

.portal-preview__welcome {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.portal-preview__welcome small,
.portal-preview__welcome strong,
.portal-preview__stats strong,
.portal-preview__stats span,
.timeline-item strong,
.timeline-item small {
  display: block;
}

.portal-preview__welcome small {
  margin-bottom: 4px;
  color: var(--text-soft);
  font-size: .72rem;
  text-transform: uppercase;
}

.portal-preview__welcome strong {
  color: var(--slate-deep);
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.2;
}

.portal-preview__status {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(168, 125, 50, .24);
  border-radius: 999px;
  background: rgba(216, 195, 154, .16);
  color: var(--gold-dark);
  font-size: .68rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.portal-preview__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.portal-preview__stats > div {
  min-width: 0;
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  text-align: center;
}

.portal-preview__stats strong {
  margin-bottom: 4px;
  color: var(--slate-deep);
  font-size: .82rem;
}

.portal-preview__stats span {
  color: var(--text-soft);
  font-size: .68rem;
  line-height: 1.35;
}

.portal-preview__timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border-left: 2px solid var(--gold-soft);
  background: var(--paper);
}

.timeline-item > span {
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline-item strong {
  margin-bottom: 3px;
  color: var(--slate-deep);
  font-size: .82rem;
  text-align: center;
}

.timeline-item small {
  color: var(--text-soft);
  font-size: .72rem;
  line-height: 1.5;
  text-align: center;
  text-align-last: auto;
}

.timeline-item--muted {
  opacity: .7;
}

/* Parceiros e Conteúdo */
.partner-categories {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-categories article {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  text-align: center;
}

.partner-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 13px;
}

.partner-icon svg {
  width: 22px;
  height: 22px;
}

.partner-categories h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.content-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-card {
  min-width: 0;
  min-height: 242px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

/* Jornada */
.section--journey {
  background: linear-gradient(180deg, var(--surface) 0%, var(--paper) 100%);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.journey-grid li {
  position: relative;
  min-width: 0;
  padding: 0 24px;
  text-align: center;
}

.journey-grid li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  right: -16px;
  width: 32px;
  height: 1px;
  background: var(--gold-soft);
}

.journey-grid > li > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: .76rem;
  font-weight: 700;
}

.journey-grid h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.22;
}

/* Contato */
.section--contact {
  padding: 94px 0;
  background: var(--paper-strong);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(350px, .96fr);
  align-items: center;
  gap: clamp(34px, 6vw, 70px);
  padding: 52px;
  border-radius: var(--radius-lg);
  background: var(--slate-deep);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.contact-intro {
  min-width: 0;
  text-align: center;
}

.contact-card h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

.contact-card p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
  text-align: center;
  text-align-last: auto;
}

.contact-actions {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.contact-link {
  min-width: 0;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .055);
  color: var(--white);
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: rgba(216, 195, 154, .58);
  background: rgba(255, 255, 255, .09);
}

.contact-link--disabled {
  cursor: not-allowed;
  opacity: .58;
  pointer-events: none;
}

.contact-link__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(216, 195, 154, .14);
  color: var(--gold-soft);
}

.contact-link__icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.contact-link small,
.contact-link strong {
  display: block;
  text-align: center;
}

.contact-link small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .62);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-link strong {
  color: var(--white);
  font-size: .96rem;
  overflow-wrap: anywhere;
}

/* Rodapé */
.site-footer {
  padding: 26px 0;
  background: #29373b;
  color: rgba(255, 255, 255, .7);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .76rem;
}

.footer-bottom p {
  margin-bottom: 0;
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 900;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: #237d55;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(35, 125, 85, .27);
  transition: background-color .2s ease, box-shadow .2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #196b47;
  box-shadow: 0 17px 34px rgba(35, 125, 85, .33);
}

.floating-whatsapp svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

/* Tablet e menu compacto */
@media (max-width: 1080px) {
  :root {
    --header-height: 78px;
  }

  .brand {
    width: 260px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    max-height: calc(100dvh - var(--header-height));
    display: none;
    overflow-y: auto;
    padding: 16px 20px 28px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    box-shadow: 0 18px 34px rgba(52, 67, 72, .1);
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav > a,
  .nav-dropdown > button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
    color: var(--slate-deep);
    font-family: var(--font-display);
    font-size: 1.08rem;
    text-align: center;
    white-space: normal;
  }

  .main-nav > a::after,
  .nav-dropdown > button::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown > button {
    gap: 8px;
  }

  .nav-dropdown__menu {
    position: static;
    min-width: 0;
    display: none;
    padding: 6px 0 8px;
    border: 0;
    border-radius: 0;
    background: var(--paper);
    box-shadow: none;
    translate: none;
  }

  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: block;
  }

  .nav-dropdown__menu a {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(221, 211, 196, .7);
    border-radius: 0;
    font-size: .94rem;
    text-align: center;
  }

  .client-layout {
    grid-template-columns: 1fr;
  }

  .client-copy {
    max-width: 760px;
    margin-inline: auto;
  }

  .portal-preview {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .partner-categories,
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 0;
  }

  .journey-grid li:nth-child(2)::after,
  .journey-grid li:last-child::after {
    display: none;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    width: min(100%, 650px);
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  body {
    font-size: 15.5px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .brand {
    width: min(235px, calc(100vw - 130px));
  }

  .menu-toggle {
    min-width: 84px;
    height: 40px;
    padding-inline: 11px;
    border-radius: 9px;
  }

  .hero {
    min-height: auto;
    padding: 82px 0 76px;
  }

  .hero::before {
    inset: 10px;
    border-radius: 22px;
  }

  .hero-decoration {
    width: 210px;
    height: 210px;
  }

  .hero-decoration--left {
    top: 55px;
    left: -150px;
  }

  .hero-decoration--right {
    right: -145px;
    bottom: 0;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9.8vw, 3.35rem);
    line-height: 1.06;
  }

  .hero h1 span {
    display: inline;
  }

  .hero h1 span + span::before {
    content: " ";
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-signature {
    bottom: 22px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .client-copy h2,
  .contact-card h2 {
    font-size: clamp(1.9rem, 8vw, 2.55rem);
    line-height: 1.13;
  }

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

  .value-card {
    padding: 26px 18px;
  }

  .practice-card,
  .structure-card,
  .content-card {
    min-height: auto;
  }

  .portal-preview__body {
    padding: 22px;
  }

  .portal-preview__welcome {
    align-items: center;
  }

  .contact-card {
    padding: 38px 26px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .brand {
    width: min(205px, calc(100vw - 120px));
  }

  .menu-toggle {
    min-width: 76px;
    height: 38px;
    gap: 7px;
    padding-inline: 9px;
    font-size: .76rem;
  }

  .menu-toggle__lines,
  .menu-toggle__lines > span {
    width: 17px;
  }

  .main-nav {
    padding: 10px 14px 22px;
  }

  .main-nav > a,
  .nav-dropdown > button {
    min-height: 49px;
    font-size: 1rem;
  }

  .hero {
    padding: 70px 0 70px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10.5vw, 2.8rem);
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 49px;
    padding-inline: 18px;
  }

  .hero-points {
    display: grid;
    justify-content: center;
    gap: 8px;
  }

  .hero-points li {
    width: fit-content;
    margin-inline: auto;
  }

  .partner-categories,
  .content-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .partner-categories article,
  .practice-card,
  .structure-card,
  .content-card {
    padding: 26px 22px;
  }

  .journey-grid {
    gap: 30px;
  }

  .journey-grid li {
    padding: 0 8px;
  }

  .journey-grid li::after {
    display: none !important;
  }

  .portal-preview__topbar {
    grid-template-columns: auto minmax(0, 1fr);
    padding-inline: 14px;
  }

  .portal-preview__topbar small {
    grid-column: 2;
    min-width: 0;
    text-align: right;
  }

  .portal-preview__body {
    padding: 18px;
  }

  .portal-preview__welcome {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .portal-preview__status {
    white-space: normal;
  }

  .portal-preview__stats {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 8px minmax(0, 1fr);
    padding: 12px;
  }

  .feature-list li {
    padding: 12px 12px 12px 40px;
  }

  .contact-card {
    padding: 32px 18px;
    border-radius: 24px;
  }

  .contact-link {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding: 13px;
  }

  .contact-link__icon {
    width: 42px;
    height: 42px;
  }

  .section-heading > p:last-of-type,
  .value-card p,
  .practice-card p,
  .structure-card p,
  .partner-categories p,
  .content-card p,
  .journey-grid p,
  .client-copy > p:not(.eyebrow),
  .feature-list li,
  .contact-card p:last-child {
    text-align: center;
    text-align-last: auto;
  }

  .hero .eyebrow {
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    letter-spacing: .12em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .floating-whatsapp {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 380px) {
  .brand {
    width: min(185px, calc(100vw - 112px));
  }

  .menu-toggle {
    min-width: 67px;
    padding-inline: 8px;
  }

  .menu-toggle__text {
    font-size: .7rem;
  }

  .hero h1 {
    font-size: 1.95rem;
  }

  .section-heading h2,
  .client-copy h2,
  .contact-card h2 {
    font-size: 1.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
