:root {
  --color-primary: #111111;
  --color-secondary: #77552d;
  --color-accent: #b28a53;
  --color-background: #f8f5f1;
  --color-text: #111111;
  --off-white: #f8f5f1;
  --white-soft: #fcfbf9;
  --gold: #b28a53;
  --gold-text: #77552d;
  --gold-light: #c9a06a;
  --black: #111111;
  --gray: #5c5c5c;
  --border: #e8e1d8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 90px;
}

body {
  overflow-x: hidden;
  background-color: var(--color-background);
  color: var(--color-text);
}

.bg-paper { background-color: var(--color-background) !important; }
.bg-ink { background-color: var(--color-primary) !important; }
.text-ink { color: var(--color-text) !important; }
.text-gold { color: var(--color-accent) !important; }

::selection {
  color: var(--white-soft);
  background: var(--gold);
}

a,
button {
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, transform 200ms ease, opacity 200ms ease;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--black);
  transform: translateY(-150%);
}

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

.site-header {
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--color-background) 72%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: rgba(232, 225, 216, 0.9);
  background: color-mix(in srgb, var(--color-background) 92%, transparent);
}

.brand {
  display: flex;
  flex-direction: column;
  width: max-content;
}

.brand-logo {
  display: block;
  object-fit: contain;
  object-position: left center;
}

.brand-logo-header {
  width: min(220px, 42vw);
  height: 54px;
}

.brand-logo-footer {
  width: min(240px, 70vw);
  height: 80px;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.brand-tagline {
  margin-top: 2px;
  color: var(--gray);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-link {
  position: relative;
  padding: 34px 0;
  font-size: 0.76rem;
  font-weight: 500;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.is-active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  padding: 0 25px;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button:hover {
  border-color: var(--gold);
  background: var(--gold);
  transform: translateY(-2px);
}

.button-small {
  min-height: 43px;
  padding-inline: 19px;
  font-size: 0.68rem;
}

.site-header .button.hidden {
  display: none;
}

.button-secondary {
  border-color: var(--border);
  background: transparent;
  color: var(--black);
}

.menu-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-content: center;
  gap: 5px;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--black);
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

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

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  border-bottom: 1px solid transparent;
  background: rgba(248, 245, 241, 0.98);
  transition: max-height 350ms ease, border-color 350ms ease;
}

.mobile-menu.is-open {
  max-height: 640px;
  border-color: var(--border);
}

.mobile-menu a:not(.button) {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.hero {
  min-height: 100svh;
}

.hero-glow {
  position: absolute;
  top: 6%;
  left: -14%;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(178, 138, 83, 0.12), transparent 70%);
  pointer-events: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-text);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

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

.hero h1 em {
  font-style: italic;
}

.proof {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--gray);
  font-size: 0.72rem;
}

.proof strong {
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 600;
}

.stars {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
}

.hero-banner {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: 1px 80px 1px 1px;
  background: var(--border);
  box-shadow: 0 32px 80px rgba(52, 42, 30, 0.13);
}

.hero-banner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.36), transparent 42%);
  content: "";
  pointer-events: none;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-banner:hover img {
  transform: scale(1.025);
}

.image-caption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  line-height: 1.35;
}

.caption-index {
  font-family: Inter, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.section {
  padding-block: 96px;
}

.section-title {
  max-width: 980px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.concept-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 25px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.concept-card > span,
.difference-number {
  color: var(--gold);
  font-size: 0.63rem;
  letter-spacing: 0.15em;
}

.concept-card h3,
.difference-card h3 {
  margin-top: auto;
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
}

.concept-card p,
.difference-card p {
  margin-top: 12px;
  color: var(--gray);
  font-size: 0.86rem;
  line-height: 1.75;
}

.concept-icon {
  position: relative;
  width: 82px;
  height: 82px;
  margin: 45px auto 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.body-symbol::before,
.body-symbol::after {
  position: absolute;
  left: 50%;
  border: 1px solid var(--gold);
  content: "";
  transform: translateX(-50%);
}

.body-symbol::before {
  top: 18px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.body-symbol::after {
  top: 34px;
  width: 25px;
  height: 30px;
  border-radius: 50% 50% 35% 35%;
}

.rings::before,
.rings::after,
.focus::before,
.focus::after {
  position: absolute;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.rings::before {
  inset: 17px;
}

.rings::after {
  inset: 29px;
  background: var(--gold);
}

.focus::before {
  inset: 15px 26px;
  border-radius: 50%;
}

.focus::after {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.path::before {
  position: absolute;
  inset: 21px;
  border-bottom: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  content: "";
  transform: rotate(-45deg);
}

.result::before {
  position: absolute;
  inset: 24px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  content: "";
  transform: rotate(-45deg);
}

.result::after {
  position: absolute;
  top: 38px;
  left: 24px;
  width: 32px;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: rotate(-45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--black);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link:hover {
  gap: 36px;
  color: var(--gold);
  border-color: var(--gold);
}

.biology-graphic {
  position: relative;
  width: min(100%, 590px);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 160, 106, 0.15), rgba(252, 251, 249, 0) 62%);
}

.orbit {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.orbit-one {
  inset: 11%;
}

.orbit-two {
  inset: 26%;
}

.orbit-three {
  top: 50%;
  left: 5%;
  width: 90%;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--border);
}

.graphic-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 38%;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  background: rgba(248, 245, 241, 0.85);
  text-align: center;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(6px);
}

.graphic-core span {
  color: var(--gold);
  font-size: clamp(0.5rem, 1vw, 0.7rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.graphic-core strong {
  margin-block: 8px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1rem, 2.3vw, 1.8rem);
  font-weight: 500;
}

.node {
  position: absolute;
  z-index: 2;
  width: 11px;
  height: 11px;
  border: 3px solid var(--off-white);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.node-one {
  top: 20%;
  left: 27%;
}

.node-two {
  top: 50%;
  right: 10%;
}

.node-three {
  bottom: 15%;
  left: 43%;
}

.graphic-label {
  position: absolute;
  color: var(--gray);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.label-one {
  top: 16%;
  left: 17%;
}

.label-two {
  top: 47%;
  right: 3%;
}

.label-three {
  bottom: 9%;
  left: 40%;
}

.difference-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.difference-card h3 {
  color: var(--white-soft);
}

.difference-card p {
  color: rgba(255, 255, 255, 0.58);
}

.cta-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(248, 245, 241, 0.93), rgba(248, 245, 241, 0.93)),
    repeating-radial-gradient(circle at center, transparent 0 79px, rgba(178, 138, 83, 0.23) 80px 81px);
}

/* Página Método */
.method-hero {
  min-height: 92svh;
}

.method-visual {
  position: relative;
  width: min(100%, 650px);
  aspect-ratio: 1;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 50% 50% 4px 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(178, 138, 83, 0.2), transparent 31%),
    linear-gradient(135deg, rgba(252, 251, 249, 0.2), rgba(232, 225, 216, 0.45));
}

.method-visual::before,
.method-visual::after {
  position: absolute;
  border: 1px solid rgba(178, 138, 83, 0.35);
  border-radius: 48% 52% 58% 42%;
  content: "";
}

.method-visual::before {
  inset: 7% 18% 20% 9%;
  transform: rotate(31deg);
}

.method-visual::after {
  inset: 23% 8% 8% 26%;
  transform: rotate(-17deg);
}

.method-axis,
.method-ring,
.method-point,
.method-word {
  position: absolute;
}

.method-axis {
  z-index: 1;
  background: var(--border);
}

.axis-x {
  top: 50%;
  left: 7%;
  width: 86%;
  height: 1px;
}

.axis-y {
  top: 7%;
  left: 50%;
  width: 1px;
  height: 86%;
}

.method-ring {
  z-index: 1;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.ring-a {
  inset: 13%;
}

.ring-b {
  inset: 28%;
}

.ring-c {
  top: 14%;
  left: 42%;
  width: 16%;
  height: 72%;
  border-color: rgba(178, 138, 83, 0.5);
}

.method-center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: 34%;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(248, 245, 241, 0.92);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
}

.method-center small {
  color: var(--gold);
  font-size: clamp(0.46rem, 1vw, 0.66rem);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.method-center strong {
  margin-block: 8px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.15rem, 3vw, 2rem);
  font-weight: 500;
}

.method-point {
  z-index: 4;
  width: 10px;
  height: 10px;
  border: 3px solid var(--off-white);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.point-a {
  top: 20%;
  left: 34%;
}

.point-b {
  top: 37%;
  right: 12%;
}

.point-c {
  bottom: 18%;
  left: 28%;
}

.point-d {
  right: 30%;
  bottom: 11%;
}

.method-word {
  z-index: 3;
  color: var(--gray);
  font-size: clamp(0.46rem, 1vw, 0.65rem);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.word-a {
  top: 16%;
  left: 13%;
}

.word-b {
  top: 32%;
  right: 8%;
}

.word-c {
  bottom: 12%;
  left: 16%;
}

.origin-media {
  position: relative;
  overflow: hidden;
  border-radius: 2px 70px 2px 2px;
  background: var(--border);
  box-shadow: 0 28px 70px rgba(52, 42, 30, 0.1);
}

.origin-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 700ms ease;
}

.origin-media:hover img {
  transform: scale(1.02);
}

.origin-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 14px;
  background: rgba(17, 17, 17, 0.74);
  color: white;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}

.thesis-section {
  position: relative;
  background:
    linear-gradient(rgba(248, 245, 241, 0.96), rgba(248, 245, 241, 0.96)),
    repeating-linear-gradient(90deg, transparent 0 99px, rgba(178, 138, 83, 0.16) 100px);
}

.thesis-graphic {
  position: relative;
  width: min(100%, 900px);
  height: 280px;
  margin: 60px auto 0;
}

.thesis-line {
  position: absolute;
  top: 50%;
  width: 44%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.line-left {
  left: 0;
}

.line-right {
  right: 0;
  transform: rotate(180deg);
}

.thesis-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--border);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.circle-one {
  width: 270px;
  height: 270px;
}

.circle-two {
  width: 190px;
  height: 190px;
}

.circle-three {
  width: 110px;
  height: 110px;
  border-color: var(--gold-light);
}

.thesis-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  transform: translate(-50%, -50%);
}

.thesis-seed {
  position: absolute;
  z-index: 3;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.seed-one {
  top: 21%;
  left: 43%;
}

.seed-two {
  top: 53%;
  right: 35%;
}

.seed-three {
  bottom: 9%;
  left: 49.5%;
}

.method-timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 32px;
}

.method-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  width: 1px;
  background: var(--gold-light);
  content: "";
}

.timeline-step {
  position: relative;
  min-height: 240px;
  padding: 0 0 42px 25px;
}

.timeline-step::before {
  position: absolute;
  top: 4px;
  left: -31px;
  width: 11px;
  height: 11px;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
  content: "";
}

.timeline-number,
.pillar-card > span,
.application-card > span {
  color: var(--gold);
  font-size: 0.63rem;
  letter-spacing: 0.15em;
}

.timeline-icon {
  position: relative;
  width: 58px;
  height: 58px;
  margin-block: 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.timeline-icon::before,
.timeline-icon::after {
  position: absolute;
  content: "";
}

.icon-observe::before {
  inset: 17px 11px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.icon-observe::after {
  top: 25px;
  left: 25px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.icon-map::before {
  inset: 15px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: rotate(45deg);
}

.icon-connect::before {
  top: 28px;
  left: 12px;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.icon-connect::after {
  inset: 18px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.icon-understand::before {
  inset: 14px 20px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.icon-apply::before {
  top: 18px;
  left: 16px;
  width: 26px;
  height: 15px;
  border-bottom: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  transform: rotate(-45deg);
}

.timeline-step h3,
.pillar-card h3,
.application-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.timeline-step p,
.pillar-card p,
.application-card p {
  margin-top: 12px;
  color: var(--gray);
  font-size: 0.86rem;
  line-height: 1.75;
}

.pillar-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pillar-mark {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 45px auto;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.pillar-mark::before,
.pillar-mark::after {
  position: absolute;
  content: "";
}

.mark-one::before {
  inset: 19px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.mark-one::after {
  top: 37px;
  left: 15px;
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.mark-two::before {
  inset: 20px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  transform: rotate(45deg);
}

.mark-three::before {
  top: 18px;
  left: 39px;
  width: 1px;
  height: 44px;
  background: var(--gold);
}

.mark-three::after {
  top: 39px;
  left: 18px;
  width: 44px;
  height: 1px;
  background: var(--gold);
}

.mark-four::before {
  inset: 16px 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.pillar-card h3 {
  margin-top: auto;
}

.application-grid {
  display: grid;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.application-card {
  position: relative;
  min-height: 220px;
  padding: 25px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background-color 250ms ease, transform 250ms ease;
}

.application-card::after {
  position: absolute;
  right: 25px;
  bottom: 24px;
  width: 20px;
  height: 20px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  content: "";
}

.application-card:hover {
  z-index: 2;
  background: var(--off-white);
  transform: translateY(-4px);
}

.application-card h3 {
  margin-top: 58px;
}

.accordion {
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-item button {
  display: flex;
  width: 100%;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  text-align: left;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.accordion-item button span {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.accordion-item button span::before,
.accordion-item button span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: translate(-50%, -50%);
}

.accordion-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 200ms ease;
}

.accordion-item button[aria-expanded="true"] {
  color: var(--gold);
}

.accordion-item button[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion-panel {
  padding: 0 50px 28px 0;
  color: var(--gray);
  font-size: 0.94rem;
  line-height: 1.8;
}

.accordion-panel[hidden] {
  display: none;
}

/* Página Servico Principal */
.analysis-hero {
  min-height: 100svh;
}

.analysis-banner {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 2px 80px 2px 2px;
  background: var(--border);
  box-shadow: 0 32px 80px rgba(52, 42, 30, 0.13);
}

.analysis-banner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.42), transparent 42%);
  content: "";
}

.analysis-banner img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 800ms ease;
}

.analysis-banner:hover img {
  transform: scale(1.025);
}

.analysis-banner figcaption {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 24px;
  left: 25px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: white;
  font-size: 0.61rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.body-map {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(178, 138, 83, 0.15), transparent 65%);
}

.body-line,
.body-head,
.body-torso,
.map-orbit,
.map-dot,
.map-label {
  position: absolute;
}

.body-line {
  top: 18%;
  bottom: 12%;
  left: 50%;
  width: 1px;
  background: var(--gold-light);
}

.body-head {
  top: 20%;
  left: 50%;
  width: 13%;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
}

.body-torso {
  top: 34%;
  left: 50%;
  width: 27%;
  height: 40%;
  border: 1px solid var(--gold);
  border-radius: 46% 46% 35% 35%;
  transform: translateX(-50%);
}

.map-orbit {
  border: 1px solid var(--border);
  border-radius: 50%;
}

.map-one {
  inset: 10%;
}

.map-two {
  inset: 27%;
}

.map-dot {
  width: 9px;
  height: 9px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.dot-one { top: 20%; left: 29%; }
.dot-two { top: 47%; right: 10%; }
.dot-three { bottom: 16%; left: 31%; }

.map-label {
  color: var(--gray);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.label-body { top: 13%; left: 47%; }
.label-awareness { top: 43%; right: 3%; }
.label-pattern { bottom: 10%; left: 23%; }
.label-behavior { top: 23%; left: 9%; }

.discovery-grid {
  display: grid;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.discovery-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 25px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.discovery-card > span {
  color: var(--gold);
  font-size: 0.63rem;
  letter-spacing: 0.15em;
}

.discovery-icon,
.receive-icon {
  position: relative;
  display: block;
  width: 68px;
  height: 68px;
  margin: 38px auto;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.discovery-icon::before,
.discovery-icon::after,
.receive-icon::before,
.receive-icon::after {
  position: absolute;
  content: "";
}

.icon-a::before, .receive-a::before { inset: 18px; border: 1px solid var(--gold); border-radius: 50%; }
.icon-b::before, .receive-b::before { top: 33px; left: 14px; width: 38px; height: 1px; background: var(--gold); transform: rotate(-35deg); }
.icon-c::before, .receive-c::before { inset: 18px 26px; border: 1px solid var(--gold); border-radius: 50%; }
.icon-d::before, .receive-d::before { inset: 20px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); transform: rotate(45deg); }
.icon-e::before { top: 17px; left: 33px; width: 1px; height: 34px; background: var(--gold); }
.icon-e::after { top: 33px; left: 17px; width: 34px; height: 1px; background: var(--gold); }
.icon-f::before { inset: 16px; border: 1px solid var(--gold); border-radius: 50% 50% 20% 50%; transform: rotate(35deg); }

.discovery-card h3 {
  margin-top: auto;
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
}

.discovery-card p {
  margin-top: 12px;
  color: var(--gray);
  font-size: 0.86rem;
  line-height: 1.75;
}

.audience-compare {
  display: grid;
  border: 1px solid var(--border);
}

.audience-panel {
  position: relative;
  padding: 35px 28px 40px;
}

.audience-panel + .audience-panel {
  border-top: 1px solid var(--border);
}

.audience-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
}

.audience-panel h3 {
  margin-top: 35px;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 500;
}

.audience-panel li {
  position: relative;
  margin-top: 20px;
  padding: 18px 0 0 25px;
  border-top: 1px solid var(--border);
  color: var(--gray);
  font-size: 0.9rem;
}

.audience-panel li::before {
  position: absolute;
  top: 25px;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.receive-icon {
  margin: 55px auto 35px;
  border-color: rgba(255,255,255,.22);
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 18px;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.testimonial-card {
  flex: 0 0 88%;
  min-height: 390px;
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--cream);
}

.testimonial-photo {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: var(--border);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: .12em;
}

.testimonial-card > span {
  display: block;
  margin-top: 25px;
  color: var(--gold);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  margin-top: 28px;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1.45;
}

.testimonial-card h3 {
  margin-top: 36px;
  color: var(--gray);
  font-size: .78rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.slider-controls button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.slider-controls span {
  min-width: 50px;
  color: var(--gray);
  font-size: .68rem;
  letter-spacing: .1em;
}

/* Página Especialista */
.especialista-hero {
  min-height: 100svh;
}

.especialista-photo,
.history-photo {
  position: relative;
  overflow: hidden;
  background: var(--border);
  box-shadow: 0 32px 80px rgba(52, 42, 30, 0.13);
}

.especialista-photo {
  min-height: 520px;
  border-radius: 2px 80px 2px 2px;
}

.especialista-photo::after,
.history-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.4), transparent 42%);
  content: "";
}

.especialista-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.especialista-photo figcaption,
.history-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: white;
  font-size: .61rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.especialista-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.history-photo {
  border-radius: 60px 2px 2px 2px;
}

.history-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 700ms ease;
}

.especialista-photo img,
.history-photo img {
  transition: transform 800ms ease;
}

.especialista-photo:hover img,
.history-photo:hover img {
  transform: scale(1.025);
}

.mission-graphic {
  position: relative;
  display: flex;
  width: min(100%, 480px);
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(178,138,83,.16), transparent 62%);
}

.mission-ring,
.mission-path,
.mission-dot {
  position: absolute;
}

.mission-ring {
  border: 1px solid var(--border);
  border-radius: 50%;
}

.ring-outer { inset: 10%; }
.ring-inner { inset: 29%; border-color: var(--gold-light); }

.mission-path {
  top: 50%;
  left: 5%;
  width: 90%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: rotate(-28deg);
}

.mission-dot {
  top: 24%;
  right: 20%;
  width: 11px;
  height: 11px;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.mission-graphic strong {
  z-index: 2;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem,4vw,3.2rem);
  font-weight: 500;
}

.mission-graphic small {
  z-index: 2;
  margin-top: 12px;
  color: var(--gold);
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

.behind-placeholder {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, transparent 49.8%, rgba(178,138,83,.18) 50%, transparent 50.2%),
    linear-gradient(45deg, transparent 49.8%, rgba(178,138,83,.18) 50%, transparent 50.2%),
    var(--off-white);
  transition: background-color 250ms ease, transform 250ms ease;
}

.behind-placeholder:hover {
  background-color: var(--white-soft);
  transform: translateY(-4px);
}

.behind-placeholder > span,
.behind-placeholder figcaption {
  color: var(--gold);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.placeholder-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  border: 1px solid var(--border);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

.placeholder-cross::before,
.placeholder-cross::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
  content: "";
  transform: translate(-50%,-50%);
}

.placeholder-cross::before { width: 18px; height: 1px; }
.placeholder-cross::after { width: 1px; height: 18px; }

/* Página Palestras */
.speaking-hero {
  min-height: 100svh;
}

.speaking-photo {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 2px 80px 2px 2px;
  background: var(--border);
  box-shadow: 0 32px 80px rgba(52,42,30,.13);
}

.speaking-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(17,17,17,.44),transparent 42%);
  content: "";
}

.speaking-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 800ms ease;
}

.speaking-photo:hover img {
  transform: scale(1.025);
}

.speaking-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: white;
  font-size: .61rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.speaking-grid {
  display: grid;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.speaking-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 25px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.speaking-card > span,
.format-item > span,
.event-placeholder > span {
  color: var(--gold);
  font-size: .63rem;
  letter-spacing: .15em;
}

.speaker-mark {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 38px auto;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.speaker-mark::before,
.speaker-mark::after {
  position: absolute;
  content: "";
}

.mark-a::before { inset: 18px; border: 1px solid var(--gold); border-radius: 50%; }
.mark-b::before { top: 35px; left: 15px; width: 40px; height: 1px; background: var(--gold); }
.mark-b::after { top: 22px; left: 27px; width: 15px; height: 15px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); transform: rotate(45deg); }
.mark-c::before { inset: 17px 25px; border: 1px solid var(--gold); border-radius: 50%; }
.mark-d::before { inset: 18px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); transform: rotate(45deg); }
.mark-e::before { top: 18px; left: 35px; width: 1px; height: 34px; background: var(--gold); }
.mark-e::after { top: 35px; left: 18px; width: 34px; height: 1px; background: var(--gold); }
.mark-f::before { inset: 17px; border: 1px solid var(--gold); border-radius: 50% 50% 20% 50%; transform: rotate(35deg); }

.speaking-card h3,
.format-item h3 {
  margin-top: auto;
  font-family: "Playfair Display",serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.speaking-card p,
.format-item p {
  margin-top: 12px;
  color: var(--gray);
  font-size: .86rem;
  line-height: 1.75;
}

.format-list {
  border-top: 1px solid var(--border);
}

.format-item {
  display: grid;
  min-height: 150px;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
  transition: padding 220ms ease,color 220ms ease;
}

.format-item:hover {
  padding-inline: 15px;
  color: var(--gold);
}

.format-item h3 {
  margin: 0;
}

.format-item p {
  margin: 0;
}

.event-gallery {
  display: grid;
  gap: 12px;
}

.event-placeholder {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at center,transparent 0 59px,rgba(178,138,83,.2) 60px 61px,transparent 62px),
    linear-gradient(135deg,transparent 49.8%,rgba(178,138,83,.17) 50%,transparent 50.2%),
    var(--off-white);
  transition: transform 250ms ease,background-color 250ms ease;
}

.event-placeholder:hover {
  background-color: var(--white-soft);
  transform: translateY(-4px);
}

.event-placeholder div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  border: 1px solid var(--border);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

.event-placeholder div::before,
.event-placeholder div::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
  content: "";
  transform: translate(-50%,-50%);
}

.event-placeholder div::before { width: 16px; height: 1px; }
.event-placeholder div::after { width: 1px; height: 16px; }

.event-placeholder figcaption {
  color: var(--gold);
  font-size: .62rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

/* Infraestrutura, formulários e consentimento */
.utility-hero {
  border-bottom: 1px solid var(--border);
}

.contact-form {
  padding: clamp(24px,4vw,48px);
  border: 1px solid var(--border);
  background: var(--white-soft);
}

.form-grid {
  display: grid;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-field > span {
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  padding: 14px 2px;
  color: var(--black);
  outline: none;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.form-field [aria-invalid="true"] {
  border-color: #9c3e32;
}

.form-field small {
  min-height: 16px;
  color: #9c3e32;
  font-size: .7rem;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gray);
  font-size: .8rem;
  line-height: 1.6;
}

.form-consent input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.form-consent a,
.legal-page a {
  color: var(--gold-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
}

.form-status {
  color: var(--gray);
  font-size: .8rem;
}

.contact-channels {
  border-top: 1px solid var(--border);
}

.contact-channels article {
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.contact-channels article > span {
  color: var(--gold);
  font-size: .62rem;
  letter-spacing: .14em;
}

.contact-channels h2 {
  margin-top: 22px;
  font-family: "Playfair Display",serif;
  font-size: 1.7rem;
}

.contact-channels p {
  margin-top: 8px;
  color: var(--gray);
  font-size: .86rem;
}

.contact-channels a {
  display: inline-block;
  margin-top: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.status-page {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.status-page .brand {
  position: absolute;
  top: 28px;
  left: 28px;
}

.status-symbol {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 35px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.7rem;
}

.error-number {
  color: rgba(178,138,83,.16);
  font-family: "Playfair Display",serif;
  font-size: clamp(7rem,23vw,15rem);
  line-height: .8;
}

.status-page h1 {
  max-width: 800px;
  margin-top: 24px;
  font-family: "Playfair Display",serif;
  font-size: clamp(2.6rem,7vw,5rem);
  font-weight: 500;
  line-height: 1.05;
}

.status-page > p:not(.eyebrow) {
  max-width: 620px;
  margin: 25px auto 35px;
  color: var(--gray);
  line-height: 1.8;
}

.legal-header,
.legal-footer {
  display: flex;
  max-width: 1100px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
  padding: 28px 20px;
}

.legal-header {
  border-bottom: 1px solid var(--border);
}

.legal-header > a:last-child,
.legal-footer {
  color: var(--gray);
  font-size: .8rem;
}

.legal-page {
  max-width: 860px;
  margin-inline: auto;
  padding: 90px 20px 120px;
}

.legal-page h1 {
  margin-top: 25px;
  font-family: "Playfair Display",serif;
  font-size: clamp(3rem,8vw,5.5rem);
  font-weight: 500;
  line-height: 1.05;
}

.legal-updated {
  margin-top: 24px;
  color: var(--gray);
  font-size: .78rem;
}

.legal-notice {
  margin: 45px 0;
  padding: 24px;
  border-left: 2px solid var(--gold);
  background: var(--white-soft);
  color: var(--gray);
  line-height: 1.75;
}

.legal-page section {
  padding: 34px 0;
  border-top: 1px solid var(--border);
}

.legal-page h2 {
  font-family: "Playfair Display",serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.legal-page section p {
  margin-top: 15px;
  color: var(--gray);
  line-height: 1.85;
}

.legal-footer {
  flex-wrap: wrap;
  justify-content: flex-start;
  border-top: 1px solid var(--border);
}

.consent-banner {
  position: fixed;
  z-index: 90;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  max-width: 1180px;
  gap: 24px;
  margin-inline: auto;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(17,17,17,.97);
  color: white;
  box-shadow: 0 20px 70px rgba(0,0,0,.25);
  backdrop-filter: blur(16px);
}

.consent-banner[hidden],
.consent-modal[hidden] {
  display: none;
}

.consent-kicker {
  color: var(--gold-light);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.consent-banner h2,
.consent-dialog h2 {
  margin-top: 8px;
  font-family: "Playfair Display",serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.consent-banner p:not(.consent-kicker) {
  margin-top: 9px;
  color: rgba(255,255,255,.68);
  font-size: .8rem;
  line-height: 1.6;
}

.consent-banner a {
  color: var(--gold-light);
  text-decoration: underline;
}

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

.consent-actions .button {
  min-height: 44px;
  border-color: rgba(255,255,255,.24);
  font-size: .62rem;
}

.consent-actions .button-secondary {
  color: white;
}

.consent-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(17,17,17,.68);
}

.consent-dialog {
  width: min(100%,620px);
  max-height: 90svh;
  overflow-y: auto;
  padding: clamp(24px,5vw,42px);
  background: var(--white-soft);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}

.consent-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border);
}

.consent-dialog-head > button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  font-size: 1.5rem;
}

.consent-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
}

.consent-option strong {
  font-family: "Playfair Display",serif;
  font-size: 1.15rem;
  font-weight: 500;
}

.consent-option p {
  margin-top: 6px;
  color: var(--gray);
  font-size: .78rem;
  line-height: 1.55;
}

.consent-option input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  accent-color: var(--gold);
}

.consent-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
  padding-top: 28px;
}

body.consent-open {
  overflow: hidden;
}

.global-legal-links {
  display: flex;
  max-width: 1344px;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 auto;
  padding: 0 20px 28px;
  color: var(--gray);
  font-size: .72rem;
}

.global-legal-links a:hover,
.global-legal-links button:hover {
  color: var(--gold);
}

button:disabled {
  cursor: not-allowed;
  opacity: .42;
}

@media (min-width: 640px) {
  .analysis-banner,
  .analysis-banner img { min-height: 650px; }
  .discovery-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .testimonial-card { flex-basis: 48%; }
  .especialista-photo,
  .especialista-photo img { min-height: 650px; }
  .behind-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .behind-placeholder:nth-child(1),
  .behind-placeholder:nth-child(4) { min-height: 410px; }
  .speaking-photo,
  .speaking-photo img { min-height: 650px; }
  .speaking-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .format-item { grid-template-columns: 60px minmax(160px,.5fr) 1fr; }
  .event-gallery { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .form-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .form-field-full { grid-column: 1 / -1; }
}

@media (min-width: 1024px) {
  .analysis-banner,
  .analysis-banner img { min-height: 690px; }
  .discovery-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .audience-compare { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .audience-panel + .audience-panel { border-top: 0; border-left: 1px solid var(--border); }
  .testimonial-card { flex-basis: calc((100% - 36px) / 3); }
  .especialista-photo,
  .especialista-photo img { min-height: 690px; }
  .behind-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .behind-placeholder:nth-child(1) { grid-row: span 2; min-height: 620px; }
  .behind-placeholder:nth-child(4) { grid-column: span 2; min-height: 300px; }
  .speaking-photo,
  .speaking-photo img { min-height: 690px; }
  .speaking-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .event-gallery { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .event-placeholder:nth-child(1),
  .event-placeholder:nth-child(6) { grid-row: span 2; min-height: 552px; }
  .event-placeholder:nth-child(4) { grid-column: span 2; }
  .consent-banner { grid-template-columns: 1fr auto; align-items: center; padding: 28px 32px; }
}

footer a:hover {
  color: var(--gold);
}

.footer-title {
  color: var(--gold-text);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .site-header .button.hidden {
    display: inline-flex;
  }

  .hero-banner,
  .hero-banner img {
    min-height: 650px;
  }

  .image-caption {
    right: 34px;
    bottom: 32px;
    left: 34px;
  }

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

@media (min-width: 1024px) {
  .section {
    padding-block: 140px;
  }

  .hero-banner,
  .hero-banner img {
    min-height: 680px;
  }

  .method-timeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 0;
  }

  .method-timeline::before {
    top: 6px;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
  }

  .timeline-step {
    min-height: 325px;
    padding: 38px 28px 0 0;
  }

  .timeline-step::before {
    top: 1px;
    left: 0;
  }

  .timeline-step:not(:last-child) {
    border-right: 1px solid var(--border);
  }

  .timeline-step:not(:first-child) {
    padding-left: 28px;
  }

  .timeline-step:not(:first-child)::before {
    left: 28px;
  }

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

@media (min-width: 1280px) {
  .site-header .menu-button {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
