@font-face {
  font-family: "Baskervville";
  src: url("../fonts/Baskervville-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Baskervville";
  src: url("../fonts/Baskervville-Italic.ttf") format("truetype");
  font-display: swap;
  font-style: italic;
  font-weight: 400;
}

@font-face {
  font-family: "Biko";
  src: url("../fonts/Biko_Regular.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Biko";
  src: url("../fonts/Biko_Bold.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Biko";
  src: url("../fonts/Biko_Black.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

@font-face {
  font-family: "Biko";
  src: url("../fonts/Biko_Black.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 900;
}

:root {
  --paper: #f5eadf;
  --paper-deep: #ead8c6;
  --blush: #e7c9b4;
  --sand: #d7bda5;
  --sage: #a79b88;
  --rose: #8d6149;
  --gold: #b4864f;
  --cocoa: #35261e;
  --taupe: #755f50;
  --moss: #6f6252;
  --line: #dfcab9;
  --white: #fffaf4;
  --shadow: 0 22px 55px rgba(52, 37, 29, 0.11);
  --container: 1240px;
  --header-height: 88px;
  --serif: "Baskervville", Georgia, "Times New Roman", serif;
  --sans: "Biko", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 6%, rgba(255, 250, 244, 0.84) 0 18rem, rgba(255, 250, 244, 0) 34rem),
    radial-gradient(rgba(87, 62, 45, 0.04) 0.8px, transparent 0.8px),
    linear-gradient(180deg, #fbf5ee 0%, var(--paper) 100%);
  background-size: auto, 18px 18px, auto;
  color: var(--cocoa);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3 {
  color: var(--cocoa);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 4.15rem;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.6rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

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

.skip-link {
  position: absolute;
  left: 18px;
  top: 14px;
  z-index: 30;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--cocoa);
  color: var(--white);
  padding: 10px 14px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.72), rgba(255, 250, 244, 0));
  backdrop-filter: none;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  width: min(calc(100% - 104px), 1370px);
  min-height: var(--header-height);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-width: 150px;
}

.brand-logo {
  width: auto;
  height: clamp(74px, 6vw, 84px);
  max-width: 190px;
  opacity: 1;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 46px;
  color: var(--cocoa);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--rose);
}

.site-nav a {
  position: relative;
  padding: 8px 0 18px;
}

.site-nav a.is-active {
  color: var(--gold);
}

.site-nav a.is-active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 25px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 500ms ease;
}

.header-cta {
  gap: 12px;
  min-width: 228px;
  min-height: 52px;
  box-shadow: 0 16px 30px rgba(104, 72, 45, 0.14);
}

.header-cta svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.header-cta,
.button.primary {
  border-color: rgba(224, 192, 154, 0.3);
  background: linear-gradient(135deg, #b4864f, #76513b);
  box-shadow: 0 12px 26px rgba(104, 72, 45, 0.14);
  color: var(--white);
}

.header-cta:hover,
.button.primary:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 192, 154, 0.56);
  background: linear-gradient(135deg, #a87945, #684432);
  box-shadow:
    0 0 0 1px rgba(224, 192, 154, 0.18),
    0 0 6px rgba(180, 134, 79, 0.18),
    0 0 18px rgba(180, 134, 79, 0.16),
    0 12px 30px rgba(104, 72, 45, 0.2);
}

.button.secondary {
  border-color: rgba(117, 95, 80, 0.3);
  background: rgba(255, 250, 244, 0.72);
  color: var(--cocoa);
}

.button.secondary:hover {
  transform: translateY(-2px);
  border-color: var(--rose);
  background: rgba(255, 250, 244, 0.88);
  box-shadow:
    0 0 0 1px rgba(180, 134, 79, 0.08),
    0 0 14px rgba(180, 134, 79, 0.12);
}

.panel-cta .button,
.support-cta .button,
.process-cta .button,
.specialties-copy .button,
.authority-actions .button,
.final-cta .button {
  --button-icon-bg: var(--rose);
  --button-icon-color: var(--white);
  --button-hover-color: var(--white);
  position: relative;
  isolation: isolate;
  justify-content: flex-start;
  min-width: min(100%, 340px);
  min-height: 64px;
  overflow: hidden;
  padding: 20px 72px 20px 34px;
  text-align: left;
  transition: color 500ms ease, transform 180ms ease, background 500ms ease, border-color 500ms ease;
}

.support-cta .button.primary,
.authority-actions .button.primary,
.final-cta .button.primary {
  --button-icon-bg: var(--white);
  --button-icon-color: var(--rose);
  --button-hover-color: var(--cocoa);
}

.button-label {
  position: relative;
  z-index: 1;
}

.panel-cta .button::before,
.support-cta .button::before,
.process-cta .button::before,
.specialties-copy .button::before,
.authority-actions .button::before,
.final-cta .button::before {
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--button-icon-bg);
  transform: translateY(-50%);
  transition: width 500ms ease, right 500ms ease, background 500ms ease;
  content: "";
}

.panel-cta .button::after,
.support-cta .button::after,
.process-cta .button::after,
.specialties-copy .button::after,
.authority-actions .button::after,
.final-cta .button::after {
  position: absolute;
  right: 30px;
  top: 50%;
  z-index: 2;
  color: var(--button-icon-color);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
  transition: color 500ms ease, right 500ms ease;
  content: "\2192";
}

.panel-cta .button:hover,
.support-cta .button:hover,
.process-cta .button:hover,
.specialties-copy .button:hover,
.authority-actions .button:hover,
.final-cta .button:hover {
  color: var(--button-hover-color);
}

.panel-cta .button:hover::before,
.support-cta .button:hover::before,
.process-cta .button:hover::before,
.specialties-copy .button:hover::before,
.authority-actions .button:hover::before,
.final-cta .button:hover::before {
  right: 20px;
  width: calc(100% - 40px);
}

.menu-toggle {
  display: none;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--cocoa);
  font: inherit;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  align-items: start;
  min-height: 100vh;
  overflow: hidden;
  padding: calc(var(--header-height) + 45px) 0 96px;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.97) 0%, rgba(246, 235, 224, 0.92) 44%, rgba(219, 190, 166, 0.9) 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 250, 244, 0.98) 0%, rgba(255, 250, 244, 0.91) 37%, rgba(255, 250, 244, 0.18) 50%, rgba(255, 250, 244, 0) 60%);
  content: "";
}

.hero-assets {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: auto;
  max-width: none;
  height: 100%;
  pointer-events: none;
}

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 55.8%;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  filter: brightness(1.02) contrast(0.98) saturate(0.98);
  object-fit: cover;
  object-position: center center;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 250, 244, 0.55) 0%, rgba(255, 250, 244, 0.12) 18%, rgba(255, 250, 244, 0) 34%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(calc(100% - 240px), var(--container));
  max-width: var(--container);
  margin-right: auto;
  margin-left: auto;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-kicker span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--cocoa);
  font-size: 4.12rem;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.eyebrow,
.section-kicker {
  margin-bottom: 12px;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 34px;
  color: var(--taupe);
  font-size: 1.12rem;
  line-height: 1.72;
}

.hero-copy strong {
  color: var(--gold);
  font-weight: 800;
}

.hero-rule {
  width: 70px;
  height: 1px;
  margin-bottom: 36px;
  background: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 0;
}

.hero .button.primary {
  min-width: 248px;
  min-height: 58px;
  gap: 16px;
  padding: 15px 26px;
  box-shadow:
    0 14px 30px rgba(104, 72, 45, 0.16),
    0 0 0 1px rgba(224, 192, 154, 0.12);
}

.hero .button.primary:hover {
  box-shadow:
    0 0 0 1px rgba(224, 192, 154, 0.24),
    0 0 5px rgba(180, 134, 79, 0.26),
    0 0 18px rgba(180, 134, 79, 0.2),
    0 0 38px rgba(180, 134, 79, 0.12),
    0 18px 38px rgba(104, 72, 45, 0.22);
}

.hero .button.primary span {
  font-size: 1.4rem;
  line-height: 1;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
  color: var(--taupe);
  font-size: 0.88rem;
  line-height: 1.35;
}

.proof-mark {
  display: grid;
  place-items: center;
  min-width: 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(180, 134, 79, 0.42);
  border-radius: 50%;
  background: rgba(255, 250, 244, 0.72);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 24px rgba(49, 36, 29, 0.12);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.82rem;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: relative;
  width: 30px;
  height: 52px;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
}

.scroll-cue span::after {
  position: absolute;
  left: 50%;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  content: "";
}

.care-panel-section {
  background:
    linear-gradient(180deg, #fffaf4 0%, #f7ede3 100%);
  padding: 92px 0;
}

.care-panel {
  position: relative;
  width: min(calc(100% - 120px), 1420px);
  max-width: none;
  overflow: hidden;
  border: 1px solid rgba(117, 95, 80, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 250, 244, 0.98) 0%, rgba(255, 250, 244, 0) 34%),
    linear-gradient(135deg, rgba(255, 250, 244, 0.94), rgba(241, 224, 209, 0.7));
  box-shadow: 0 26px 80px rgba(82, 56, 38, 0.07);
  padding: 88px 70px 80px;
}

.care-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 120px minmax(420px, 1.05fr) minmax(340px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.care-symbol {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(180, 134, 79, 0.28);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 250, 244, 0.64);
}

.care-symbol svg,
.pillar-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.care-heading {
  border-left: 1px solid rgba(180, 134, 79, 0.34);
  padding-left: 38px;
}

.care-heading .section-kicker {
  margin-bottom: 22px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.care-heading h2 {
  max-width: 620px;
  margin: 0;
  color: var(--cocoa);
  font-size: 2.65rem;
  line-height: 1.18;
}

.care-heading h2 em {
  color: var(--gold);
  font-style: italic;
}

.care-copy {
  border-left: 1px solid rgba(180, 134, 79, 0.34);
  padding-left: 44px;
}

.care-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--taupe);
  font-size: 1.02rem;
  line-height: 1.85;
}

.care-copy p + p {
  margin-top: 28px;
}

.care-copy strong {
  color: var(--gold);
}

.care-pillars {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  max-width: 1040px;
  margin: 92px auto 0;
}

.care-pillar {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  align-items: start;
}

.care-pillar + .care-pillar {
  border-left: 1px solid rgba(180, 134, 79, 0.25);
  padding-left: 46px;
}

.pillar-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(180, 134, 79, 0.18);
  border-radius: 50%;
  background: rgba(255, 250, 244, 0.58);
  color: var(--gold);
}

.care-pillar h3 {
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.care-pillar span {
  display: block;
  width: 38px;
  height: 1px;
  margin-bottom: 24px;
  background: var(--gold);
}

.care-pillar p {
  max-width: 260px;
  margin: 0;
  color: var(--taupe);
  line-height: 1.75;
}

.care-leaf {
  position: absolute;
  right: 16px;
  top: 32px;
  width: 166px;
  height: 330px;
  opacity: 0.16;
}

.care-leaf::before {
  position: absolute;
  left: 78px;
  top: 0;
  width: 1px;
  height: 300px;
  background: var(--gold);
  transform: rotate(8deg);
  content: "";
}

.care-leaf::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 12%, transparent 0 36%, var(--gold) 37% 38%, transparent 39%),
    radial-gradient(ellipse at 32% 22%, transparent 0 35%, var(--gold) 36% 37%, transparent 38%),
    radial-gradient(ellipse at 72% 30%, transparent 0 35%, var(--gold) 36% 37%, transparent 38%),
    radial-gradient(ellipse at 30% 46%, transparent 0 35%, var(--gold) 36% 37%, transparent 38%),
    radial-gradient(ellipse at 72% 58%, transparent 0 35%, var(--gold) 36% 37%, transparent 38%);
  transform: rotate(-8deg);
  content: "";
}

.panel-cta,
.support-cta,
.process-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(117, 95, 80, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.72);
  box-shadow: 0 18px 45px rgba(82, 56, 38, 0.045);
  padding: 24px 28px;
}

.panel-cta {
  max-width: 900px;
  margin: 56px auto 0;
}

.panel-cta p,
.support-cta p,
.process-cta p {
  max-width: 620px;
  color: var(--taupe);
  font-weight: 700;
  line-height: 1.48;
}

.specialties-section {
  background:
    linear-gradient(180deg, #f7ede3 0%, #fffaf4 100%);
  padding: 78px 0 88px;
}

.specialties-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 70px;
  align-items: center;
}

.specialties-photo {
  position: relative;
}

.specialties-photo::before {
  position: absolute;
  inset: 22px -22px -22px 22px;
  z-index: 0;
  border: 1px solid rgba(180, 134, 79, 0.24);
  background: rgba(231, 201, 180, 0.42);
  content: "";
}

.specialties-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: 0 24px 50px rgba(52, 37, 29, 0.12);
  object-fit: cover;
  object-position: center;
}

.specialties-copy {
  max-width: 820px;
}

.specialties-copy h2 {
  max-width: 760px;
  font-size: 2.9rem;
}

.specialties-copy > p {
  max-width: 690px;
  color: var(--taupe);
  font-size: 1.04rem;
  line-height: 1.78;
}

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 30px;
}

.specialty-tags span {
  border: 1px solid rgba(117, 95, 80, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.76);
  color: var(--taupe);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 16px;
}

.section {
  padding: 96px 0;
}

.soft-section {
  background:
    linear-gradient(180deg, #ead8c6 0%, #f2e5d8 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 520px;
  margin-bottom: 0;
}

.section-heading p:last-child,
.about-copy p,
.faq-grid p {
  color: var(--taupe);
}

.audience-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(234, 216, 198, 0.92) 0%, rgba(234, 216, 198, 0.78) 34%, rgba(234, 216, 198, 0.28) 61%, rgba(234, 216, 198, 0.06) 100%),
    url("../images/fundo-fases.png");
  background-position: center, center;
  background-size: cover, cover;
  padding: 88px 0 96px;
}

.audience-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 14% 30%, rgba(255, 250, 244, 0.34), rgba(255, 250, 244, 0) 28rem),
    linear-gradient(180deg, rgba(255, 250, 244, 0.08), rgba(53, 38, 30, 0.02));
  content: "";
}

.support-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(231, 201, 180, 0.34), rgba(255, 250, 244, 0) 22rem),
    #fffaf4;
  padding: 92px 0 104px;
}

.support-inner {
  position: relative;
}

.support-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 150px;
  margin: 0 auto 28px;
  color: var(--gold);
}

.support-ornament span {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.support-ornament svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.support-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.support-heading .eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.support-heading h2 {
  max-width: 920px;
  margin-bottom: 22px;
  color: var(--cocoa);
  font-size: 4.35rem;
  line-height: 1.05;
}

.support-heading h2 em {
  color: var(--gold);
  font-style: italic;
}

.support-heading > p:last-child {
  max-width: 640px;
  color: var(--taupe);
  font-size: 1.08rem;
  line-height: 1.62;
}

.support-leaf {
  position: absolute;
  right: 90px;
  top: 8px;
  width: 230px;
  height: 260px;
  opacity: 0.42;
}

.support-leaf::before {
  position: absolute;
  left: 112px;
  top: 0;
  width: 1.5px;
  height: 245px;
  background: rgba(180, 134, 79, 0.45);
  transform: rotate(34deg);
  content: "";
}

.support-leaf::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 8%, transparent 0 34%, rgba(180, 134, 79, 0.46) 35% 36%, transparent 37%),
    radial-gradient(ellipse at 54% 28%, transparent 0 34%, rgba(180, 134, 79, 0.46) 35% 36%, transparent 37%),
    radial-gradient(ellipse at 86% 36%, transparent 0 34%, rgba(180, 134, 79, 0.46) 35% 36%, transparent 37%),
    radial-gradient(ellipse at 34% 55%, transparent 0 34%, rgba(180, 134, 79, 0.46) 35% 36%, transparent 37%),
    radial-gradient(ellipse at 70% 70%, transparent 0 34%, rgba(180, 134, 79, 0.46) 35% 36%, transparent 37%);
  transform: rotate(-15deg);
  content: "";
}

.support-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.support-card {
  position: relative;
  overflow: hidden;
  min-height: 392px;
  border: 1px solid rgba(117, 95, 80, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.9), rgba(246, 235, 224, 0.66));
  box-shadow: none;
  padding: 28px 26px 26px;
}

.support-card:focus {
  outline: 2px solid rgba(180, 134, 79, 0.28);
  outline-offset: 4px;
}

.support-card .card-prev {
  position: relative;
  z-index: 1;
  transition: opacity 360ms ease, transform 360ms ease;
}

.support-card .card.hover {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 52px);
  min-height: calc(100% - 52px);
  opacity: 0;
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53, 38, 30, 0.96), rgba(117, 81, 59, 0.92));
  color: var(--white);
  padding: 28px;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.96);
  transition: opacity 360ms ease, transform 360ms ease, z-index 0ms linear 360ms;
}

.support-card:hover .card.hover,
.support-card:focus .card.hover {
  z-index: 2;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 360ms ease, transform 360ms ease, z-index 0ms;
}

.support-card:hover .card-prev,
.support-card:focus .card-prev {
  opacity: 0;
  transform: translateY(8px) scale(0.98);
}

.support-card .card.hover span {
  margin-bottom: 20px;
  color: #e0c09a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.support-card .card.hover h3 {
  max-width: none;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1.65rem;
}

.support-card .card.hover p {
  color: rgba(255, 250, 244, 0.78);
  font-size: 0.98rem;
  line-height: 1.7;
}

.support-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.support-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(180, 134, 79, 0.16);
  border-radius: 50%;
  background: rgba(255, 250, 244, 0.64);
  color: var(--gold);
}

.support-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.support-card .number {
  color: var(--sage);
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 700;
}

.support-card h3 {
  max-width: 230px;
  margin-bottom: 22px;
  color: var(--cocoa);
  font-size: 1.55rem;
  line-height: 1.05;
}

.support-line {
  display: block;
  width: 38px;
  height: 1px;
  margin-bottom: 24px;
  background: var(--gold);
}

.support-card .card-prev > p {
  min-height: 92px;
  color: var(--taupe);
  font-size: 0.98rem;
  line-height: 1.62;
}

.support-note {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 66px;
  margin-top: 24px;
  border: 1px solid rgba(117, 95, 80, 0.13);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.62);
  color: var(--taupe);
  font-size: 0.9rem;
  line-height: 1.35;
  padding: 12px 16px;
}

.support-note span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.support-cta {
  max-width: 980px;
  margin: 42px auto 0;
}

.authority-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(53, 38, 30, 0.9) 0%, rgba(53, 38, 30, 0.78) 33%, rgba(88, 59, 43, 0.54) 62%, rgba(88, 59, 43, 0.18) 100%),
    linear-gradient(180deg, rgba(53, 38, 30, 0.2), rgba(53, 38, 30, 0.34)),
    url("../images/fundo-autoridade.png");
  background-position: center, center, center;
  background-size: cover, cover, cover;
  color: var(--white);
  padding: 96px 0;
}

.authority-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 250, 244, 0.1), rgba(255, 250, 244, 0) 20rem),
    radial-gradient(rgba(255, 250, 244, 0.045) 0.8px, transparent 0.8px);
  background-size: auto, 18px 18px;
  content: "";
}

.authority-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 58px;
  align-items: center;
  width: min(calc(100% - 72px), 1120px);
}

.authority-copy h2 {
  max-width: 560px;
  font-size: 2.85rem;
}

.authority-copy h2,
.authority-copy .eyebrow {
  color: var(--white);
}

.authority-copy > p {
  max-width: 560px;
  color: rgba(255, 250, 244, 0.78);
  font-size: 0.98rem;
  line-height: 1.72;
}

.authority-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.authority-list li {
  position: relative;
  border-top: 1px solid rgba(255, 250, 244, 0.15);
  color: rgba(255, 250, 244, 0.88);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.55;
  padding: 12px 0 0 30px;
}

.authority-list li::before {
  position: absolute;
  left: 0;
  top: 17px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 250, 244, 0.54);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 14px;
  text-align: center;
  content: "✓";
}

.authority-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.authority-card-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.authority-card {
  min-height: 205px;
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: 8px;
  background: rgba(53, 38, 30, 0.28);
  box-shadow: 0 18px 42px rgba(24, 15, 11, 0.12);
  backdrop-filter: blur(5px);
  padding: 26px;
}

.authority-card.featured {
  background: rgba(255, 250, 244, 0.14);
  color: var(--white);
}

.authority-card span {
  display: inline-block;
  margin-bottom: 24px;
  color: #e0c09a;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
}

.authority-card.featured span,
.authority-card.featured p,
.authority-card.featured strong,
.authority-card h3 {
  color: var(--white);
}

.authority-card strong {
  display: block;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}

.authority-card h3 {
  margin-bottom: 16px;
  font-size: 1.28rem;
}

.authority-card p {
  color: rgba(255, 250, 244, 0.74);
  font-size: 0.9rem;
  line-height: 1.62;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.step,
.audience-list article {
  border: 1px solid rgba(117, 95, 80, 0.15);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.68);
  box-shadow: none;
  padding: 24px;
}

.step {
  position: relative;
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.step::before {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(180, 134, 79, 0.18);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 260ms ease, transform 260ms ease;
  content: "";
}

.step:hover {
  border-color: rgba(180, 134, 79, 0.34);
  background: rgba(255, 250, 244, 0.9);
  box-shadow:
    0 0 0 1px rgba(180, 134, 79, 0.06),
    0 18px 36px rgba(52, 37, 29, 0.08);
  transform: translateY(-6px);
}

.step:hover::before {
  opacity: 1;
  transform: scale(1);
}

.service-card p,
.step p,
.audience-list p {
  margin-bottom: 0;
  color: var(--taupe);
}

.audience-layout,
.about-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 64px;
  align-items: start;
}

.audience-section .audience-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 78px;
  align-items: start;
}

.audience-section .section-heading.compact {
  max-width: 600px;
  margin-bottom: 0;
}

.audience-section .section-heading h2 {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--cocoa);
  font-size: 3.45rem;
}

.audience-section .section-heading p:last-child {
  max-width: 640px;
  color: #6c5748;
  font-size: 1.03rem;
  line-height: 1.75;
}

.audience-list {
  display: grid;
  gap: 16px;
}

.audience-list article {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 18px;
  align-items: start;
}

.audience-section .audience-list {
  gap: 18px;
}

.audience-section .audience-list article {
  min-height: 112px;
  border: 1px solid rgba(117, 95, 80, 0.18);
  background: rgba(255, 250, 244, 0.74);
  backdrop-filter: blur(5px);
  box-shadow: 0 18px 42px rgba(52, 37, 29, 0.08);
  padding: 28px 30px;
}

.audience-list h3 {
  margin-bottom: 0;
}

.audience-section .audience-list h3 {
  color: var(--cocoa);
  font-size: 1.55rem;
}

.audience-section .audience-list p {
  color: #6c5748;
  font-size: 1.02rem;
  line-height: 1.68;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  font-weight: 800;
}

.process-cta {
  margin-top: 38px;
  background: rgba(255, 250, 244, 0.82);
}

.quote-section {
  background:
    linear-gradient(135deg, #35261e, #6f4a36);
  color: var(--white);
  padding: 78px 0;
}

.quote-inner p {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1.18;
}

.about-section {
  background:
    linear-gradient(90deg, rgba(231, 201, 180, 0.44) 0 34%, rgba(255, 250, 244, 0) 34%),
    var(--white);
}

.about-image img {
  width: 100%;
  max-height: 680px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center top;
}

.about-copy {
  padding-top: 18px;
}

.credential-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.credential-list li {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--moss);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(117, 95, 80, 0.15);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.72);
  padding: 0 20px;
}

summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--cocoa);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 0 20px;
}

.final-cta {
  background:
    linear-gradient(135deg, #8d6149 0%, #35261e 100%);
  color: var(--white);
  padding: 86px 0;
}

.final-cta h2,
.final-cta .eyebrow {
  color: var(--white);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.final-cta-inner h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.site-footer {
  background: #2f241e;
  color: rgba(255, 253, 250, 0.82);
  padding: 34px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid p {
  margin: 4px 0 0;
}

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

@media (max-width: 980px) {
  :root {
    --header-height: 88px;
  }

  h1 {
    max-width: 720px;
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .header-inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    width: min(calc(100% - 40px), 1360px);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    display: none;
    width: 100%;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    padding: 18px 20px 22px;
  }

  .site-nav a {
    padding: 6px 0;
  }

  .site-nav a.is-active::after {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    justify-items: start;
    gap: 16px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 100vh;
    padding: calc(var(--header-height) + 72px) 0 70px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(255, 250, 244, 0.97) 0%, rgba(255, 250, 244, 0.92) 58%, rgba(255, 250, 244, 0.42) 100%);
  }

  .hero-visual {
    width: 62%;
    opacity: 0.7;
  }

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

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

  .scroll-cue {
    display: none;
  }

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

  .panel-cta,
  .support-cta,
  .process-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .authority-section {
    background-position: center, center, 58% center;
    padding: 78px 0;
  }

  .authority-grid {
    grid-template-columns: 1fr;
    gap: 46px;
    width: min(calc(100% - 40px), var(--container));
  }

  .authority-copy h2 {
    max-width: 760px;
    font-size: 2.55rem;
  }

  .specialties-grid {
    grid-template-columns: 260px 1fr;
    gap: 46px;
  }

  .specialties-copy h2 {
    font-size: 2.35rem;
  }

  .support-section {
    padding: 76px 0;
  }

  .support-heading h2 {
    font-size: 3.1rem;
  }

  .support-leaf {
    right: -26px;
    opacity: 0.18;
  }

  .service-grid,
  .audience-layout,
  .about-grid,
  .faq-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .audience-section {
    background-position: center, 62% center;
    padding: 76px 0;
  }

  .audience-section .audience-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .audience-section .section-heading h2 {
    max-width: 680px;
    font-size: 2.55rem;
  }

  .care-panel-section {
    padding: 70px 0;
  }

  .care-panel {
    width: min(calc(100% - 40px), var(--container));
    padding: 58px 34px;
  }

  .care-top {
    grid-template-columns: 86px 1fr;
    gap: 28px;
  }

  .care-copy {
    grid-column: 2;
    border-left: 1px solid rgba(180, 134, 79, 0.38);
    padding-left: 38px;
  }

  .care-heading h2 {
    font-size: 2.05rem;
  }

  .care-pillars {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 62px;
  }

  .care-pillar + .care-pillar {
    border-left: 0;
    border-top: 1px solid rgba(180, 134, 79, 0.2);
    padding-top: 30px;
    padding-left: 0;
  }

  .care-pillar p {
    max-width: 520px;
  }

  .section-heading.compact {
    max-width: 760px;
    margin-bottom: 30px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 74px;
  }

  body {
    font-size: 16px;
  }

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

  .brand {
    width: auto;
    min-width: 116px;
  }

  .brand-logo {
    height: 58px;
    max-width: 128px;
  }

  h1 {
    font-size: 2.42rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  h3 {
    font-size: 1.18rem;
  }

  .hero {
    min-height: 100vh;
    padding: calc(var(--header-height) + 44px) 0 76px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(246, 232, 221, 0.98) 0%, rgba(246, 232, 221, 0.94) 48%, rgba(246, 232, 221, 0.72) 100%),
      linear-gradient(90deg, rgba(246, 232, 221, 1) 0%, rgba(246, 232, 221, 0.58) 100%);
  }

  .hero-visual {
    width: 100%;
    opacity: 0.22;
  }

  .hero-visual img {
    object-position: center center;
  }

  .hero-assets {
    opacity: 0.75;
  }

  .hero-kicker {
    gap: 9px;
    max-width: 320px;
    margin-bottom: 18px;
    font-size: 0.72rem;
    line-height: 1.7;
  }

  .hero-content {
    width: calc(100% - 44px);
    max-width: 520px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero h1 {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-bottom: 18px;
    font-size: 2rem;
    line-height: 1.02;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-copy {
    max-width: 100%;
    margin-bottom: 26px;
    font-size: 0.96rem;
    line-height: 1.62;
    overflow-wrap: anywhere;
  }

  .hero-rule {
    margin-bottom: 26px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero .button.primary,
  .button {
    width: 100%;
  }

  .hero-proof {
    max-width: none;
  }

  .care-panel-section {
    padding: 48px 0;
  }

  .care-panel {
    width: min(calc(100% - 28px), var(--container));
    padding: 42px 22px;
  }

  .care-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .care-symbol {
    width: 68px;
    height: 68px;
  }

  .care-heading,
  .care-copy {
    grid-column: auto;
    border-left: 0;
    padding-left: 0;
  }

  .care-heading h2 {
    font-size: 1.78rem;
  }

  .care-copy p {
    font-size: 0.98rem;
  }

  .care-pillars {
    gap: 26px;
    margin-top: 44px;
  }

  .care-pillar {
    grid-template-columns: 64px 1fr;
    gap: 18px;
  }

  .pillar-icon {
    width: 58px;
    height: 58px;
  }

  .pillar-icon svg {
    width: 34px;
    height: 34px;
  }

  .care-leaf {
    right: -48px;
    opacity: 0.1;
  }

  .section {
    padding: 68px 0;
  }

  .support-grid,
  .steps,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .specialties-section {
    padding: 56px 0 62px;
  }

  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .specialties-photo {
    max-width: 320px;
  }

  .specialties-photo::before {
    inset: 16px -14px -14px 16px;
  }

  .specialties-copy h2 {
    font-size: 2rem;
  }

  .support-card {
    min-height: 360px;
  }

  .support-section {
    padding: 58px 0;
  }

  .support-ornament {
    margin-bottom: 22px;
  }

  .support-heading {
    margin-bottom: 34px;
  }

  .support-heading .eyebrow {
    font-size: 0.82rem;
  }

  .support-heading h2 {
    font-size: 2.32rem;
  }

  .support-heading > p:last-child {
    font-size: 1rem;
  }

  .support-leaf {
    display: none;
  }

  .support-card {
    padding: 24px 22px;
  }

  .support-card .card.hover {
    width: calc(100% - 44px);
    min-height: calc(100% - 44px);
    padding: 24px 22px;
  }

  .support-icon {
    width: 64px;
    height: 64px;
  }

  .support-icon svg {
    width: 36px;
    height: 36px;
  }

  .support-card h3 {
    font-size: 1.35rem;
  }

  .support-card .card-prev > p {
    min-height: auto;
  }

  .support-note {
    min-height: auto;
  }

  .panel-cta,
  .support-cta,
  .process-cta {
    gap: 20px;
    padding: 22px;
  }

  .panel-cta {
    margin-top: 36px;
  }

  .support-cta {
    margin-top: 30px;
  }

  .authority-section {
    background-position: center, center, 58% center;
    padding: 62px 0;
  }

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

  .authority-copy h2 {
    font-size: 2rem;
  }

  .authority-actions,
  .authority-card-stack {
    grid-template-columns: 1fr;
  }

  .authority-actions {
    display: grid;
  }

  .authority-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .authority-card strong {
    font-size: 2rem;
  }

  .audience-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .audience-section {
    background:
      linear-gradient(180deg, rgba(234, 216, 198, 0.92) 0%, rgba(234, 216, 198, 0.76) 48%, rgba(234, 216, 198, 0.42) 100%),
      url("../images/fundo-fases.png");
    background-position: center, 58% center;
    background-size: cover, cover;
    padding: 62px 0;
  }

  .audience-section .section-heading h2 {
    font-size: 2.15rem;
  }

  .audience-section .audience-list article {
    padding: 24px 22px;
  }

  .audience-section .audience-list h3 {
    font-size: 1.34rem;
  }

  .quote-section,
  .final-cta {
    padding: 58px 0;
  }

  .quote-inner p {
    font-size: 1.75rem;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}
