@font-face {
  font-family: "Cormorant Garamond";
  src: url("./assets/fonts/cormorant-garamond-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("./assets/fonts/cormorant-garamond-400-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("./assets/fonts/cormorant-garamond-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Allura";
  src: url("./assets/fonts/allura-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --brown-1000: #090503;
  --brown-975: #100805;
  --brown-950: #160c08;
  --brown-900: #20120c;
  --brown-850: #2c1a12;
  --brown-800: #3c281d;
  --gold-700: #74562f;
  --gold-600: #937044;
  --gold-500: #b08f5d;
  --gold-400: #c7ab7a;
  --gold-300: #dac7a3;
  --gold-200: #eee3cf;
  --cream-100: #f3ece3;
  --cream-200: #d9cfc2;
  --cream-300: #ad9f91;
  --ink: #24160e;
  --gold-metal: linear-gradient(108deg, #b8753e 0%, #d09b65 24%, #bc8048 48%, #d9aa73 72%, #a86332 100%);
  --serif: "Cormorant Garamond", "Iowan Old Style", Baskerville, Georgia, serif;
  --sans: "Manrope", "Segoe UI", Arial, Helvetica, sans-serif;
  --script: "Allura", "Segoe Script", cursive;
  --header-height: 4.8rem;
  --site-width: 96rem;
  --gutter: clamp(2rem, 4.4vw, 5rem);

  /*
    IMAGENS DO SITE
    Troque "none" por url("./assets/images/nome-do-arquivo.png").
    As áreas de orientação desaparecem automaticamente quando uma URL é inserida.
  */
  --image-hero-01: url("./assets/images/01-hero-frontal.png");
  --image-hero-02: url("./assets/images/02-hero-perfil.png");
  --image-programa-01: url("./assets/images/04-programa-pele.png");
  --image-programa-02: url("./assets/images/05-programa-estrutura.png");
  --image-programa-03: url("./assets/images/06-programa-processo.png");
  --image-queixa-01: url("./assets/images/07-queixa-cicatrizes.png");
  --image-queixa-02: url("./assets/images/08-queixa-melasma.png");
  --image-queixa-03: url("./assets/images/09-queixa-rugas.png");
  --image-queixa-04: url("./assets/images/10-queixa-papada.png");
  --image-sobre: url("./assets/images/11-sobre-dra-danielle.png");
  --image-localizacoes: url("./assets/images/13-localizacoes-dra.png");
  --image-final: url("./assets/images/14-chamada-final-dra.png");

  color-scheme: dark;
  font-synthesis: none;
}

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

html {
  background: var(--brown-1000);
  scroll-behavior: smooth;
  scrollbar-color: var(--gold-600) var(--brown-1000);
  scrollbar-width: thin;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--brown-975);
  color: var(--cream-100);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 999;
  inset: 0;
  content: "";
  opacity: 0.035;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 14% 27%, #fff 0 0.025rem, transparent 0.04rem),
    radial-gradient(circle at 71% 64%, #fff 0 0.02rem, transparent 0.035rem);
  background-size: 8px 8px, 13px 13px;
  mix-blend-mode: soft-light;
}

::selection {
  background: rgba(224, 170, 98, 0.3);
  color: #fff;
}

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

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.site-shell {
  width: min(100%, var(--site-width));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.skip-link {
  position: fixed;
  z-index: 1001;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  border: 1px solid var(--gold-400);
  border-radius: 0.4rem;
  background: var(--brown-900);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  color: var(--gold-400);
  font-size: clamp(0.68rem, 0.72vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.31em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 2.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}

.centered .eyebrow {
  justify-content: center;
}

.centered .eyebrow > span:last-child {
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.button {
  display: inline-flex;
  min-height: 3.9rem;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 0.95rem 1.65rem;
  border-radius: 0.55rem;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.08vw, 1.28rem);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.045);
}

.button-primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid #d8b17d;
  background:
    linear-gradient(108deg, rgba(244, 210, 163, 0.28), transparent 28%),
    linear-gradient(112deg, transparent 40%, rgba(245, 211, 163, 0.28) 52%, transparent 64%),
    var(--gold-metal);
  box-shadow:
    0 0 0 2px rgba(69, 39, 21, 0.92),
    0 0 0 3px rgba(201, 157, 96, 0.66),
    0 0 1.75rem rgba(207, 145, 70, 0.32),
    inset 0 1px rgba(255, 225, 181, 0.64),
    inset 0 -1px rgba(92, 47, 22, 0.42);
  color: #29170d;
  font-weight: 500;
}

.button-primary::before {
  position: absolute;
  z-index: 0;
  inset: 3px;
  border: 1px solid rgba(248, 220, 177, 0.58);
  border-radius: calc(0.55rem - 3px);
  content: "";
  pointer-events: none;
}

.button-primary:hover {
  filter: saturate(1.06) brightness(1.025);
  box-shadow:
    0 0 0 2px rgba(76, 42, 22, 0.95),
    0 0 0 3px rgba(215, 172, 110, 0.78),
    0 0.9rem 2.5rem rgba(205, 137, 60, 0.38),
    inset 0 1px rgba(255, 228, 187, 0.72),
    inset 0 -1px rgba(92, 47, 22, 0.38);
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px rgba(17, 6, 4, 0.9);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(176, 143, 93, 0.18);
  background: rgba(13, 8, 5, 0.76);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(13, 8, 5, 0.96);
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.2);
}

.header-shell {
  display: grid;
  width: min(100%, 100rem);
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(224, 170, 98, 0.68);
  border-radius: 50%;
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--gold-400);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2.15rem);
}

.main-nav a {
  position: relative;
  color: var(--cream-300);
  font-size: 0.73rem;
  transition: color 160ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.62rem;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  background: var(--gold-400);
  transition: transform 160ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--cream-100);
}

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

.header-cta {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1.05rem;
  border: 1px solid rgba(222, 155, 72, 0.64);
  border-radius: 0.38rem;
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 0.82rem;
}

.mobile-program-brand,
.mobile-menu-toggle,
.hero-mobile {
  display: none;
}

/* Image slots */
.media-slot {
  position: relative;
  isolation: isolate;
  margin: 0;
  overflow: hidden;
  background-image:
    var(--slot-image),
    radial-gradient(circle at 50% 48%, rgba(87, 55, 35, 0.42), transparent 42%),
    linear-gradient(145deg, rgba(66, 42, 27, 0.22), rgba(10, 6, 4, 0.16));
  background-repeat: no-repeat;
  background-position: var(--slot-position, center bottom), center, center;
  background-size: var(--slot-size, contain), cover, cover;
}

.slot-guide {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: grid;
  min-width: 14rem;
  padding: 1.4rem 1.7rem;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(226, 162, 80, 0.42);
  border-radius: 0.85rem;
  background: rgba(15, 6, 3, 0.58);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.14);
  text-align: center;
  transition: opacity 180ms ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.slot-guide::before,
.slot-guide::after {
  position: absolute;
  top: 50%;
  width: 4rem;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(224, 170, 98, 0.55));
}

.slot-guide::before {
  right: calc(100% + 0.8rem);
}

.slot-guide::after {
  left: calc(100% + 0.8rem);
  transform: rotate(180deg);
}

.slot-guide strong {
  margin-bottom: 0.45rem;
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.slot-guide span {
  color: var(--cream-100);
  font-family: var(--serif);
  font-size: 1rem;
}

.slot-guide small {
  margin-top: 0.35rem;
  color: var(--cream-300);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.slot-guide.compact {
  min-width: 12rem;
  padding: 0.8rem 1rem;
}

.slot-guide.compact strong {
  font-size: 1.35rem;
}

.slot-guide.compact span {
  font-size: 0.8rem;
}

.media-slot.has-image .slot-guide {
  visibility: hidden;
  opacity: 0;
}

/* Hero */
.hero-story {
  position: relative;
  height: 200vh;
  min-height: 100rem;
  background: var(--brown-975);
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 42rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 5, 3, 0.3) 0%, rgba(9, 5, 3, 0.04) 55%, rgba(9, 5, 3, 0.18) 100%),
    url("./assets/images/fundo-editorial-marrom-dourado.png") center center / cover no-repeat,
    #130b07;
}

.hero-sticky::before,
.hero-sticky::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-sticky::before {
  top: -29rem;
  right: -5rem;
  width: 62rem;
  height: 62rem;
  border: 1px solid rgba(176, 143, 93, 0.3);
  border-radius: 49% 51% 46% 54%;
  box-shadow: inset 0 0 8rem rgba(141, 67, 27, 0.08);
  transform: rotate(12deg);
}

.hero-sticky::after {
  right: 2rem;
  bottom: -26rem;
  width: 48rem;
  height: 42rem;
  border: 1px solid rgba(176, 143, 93, 0.18);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.hero-state {
  position: absolute;
  z-index: 1;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 380ms ease, visibility 380ms ease;
}

.hero-state::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at 14% 46%, rgba(157, 91, 51, 0.34), transparent 48%),
    url("./assets/images/fundo-editorial-marrom-dourado.png") 58% center / 135% 100% no-repeat;
  opacity: 0.3;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.92) 24%, transparent 62%);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.92) 24%, transparent 62%);
}

.hero-state.is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}

.hero-layout {
  display: grid;
  width: min(100%, 120rem);
  height: 100%;
  padding-top: calc(var(--header-height) + 2.8rem);
  padding-bottom: 2.4rem;
  align-items: center;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 49rem;
  padding-right: clamp(1.5rem, 3.6vw, 4rem);
}

.hero-copy h1,
.hero-copy h2 {
  margin-bottom: 1.6rem;
  font-size: clamp(3.15rem, 3.78vw, 4.9rem);
  letter-spacing: -0.032em;
  line-height: 0.94;
}

.hero-copy h1 > span,
.hero-copy h2 > span,
.hero-copy h1 em,
.hero-copy h2 em {
  display: block;
}

.hero-copy h1 em,
.hero-copy h2 em {
  margin-top: 0.16em;
  color: var(--cream-100);
  font-weight: 400;
  font-style: italic;
}

.hero-lead {
  max-width: 40rem;
  margin-bottom: 1.8rem;
  color: var(--cream-200);
  font-size: clamp(0.95rem, 1.16vw, 1.18rem);
  line-height: 1.68;
}

.hero-cta {
  width: min(100%, 39rem);
}

.signature {
  margin: 1.4rem 0 0 0.5rem;
  color: var(--gold-400);
  font-family: var(--script);
  font-size: clamp(2.8rem, 3.3vw, 4.15rem);
  font-style: normal;
  letter-spacing: 0.01em;
  line-height: 0.95;
  transform: none;
}

.media-slot-hero {
  align-self: stretch;
  margin: calc(var(--header-height) * -0.2) calc(var(--gutter) * -1) -2.4rem 0;
  background-image: var(--slot-image);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: var(--slot-position, center bottom);
  background-size: var(--slot-size, contain);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 100%);
}

.hero-state-reverse .hero-layout {
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
}

.hero-state-reverse {
  background:
    linear-gradient(90deg, rgba(10, 5, 3, 0.1), rgba(10, 5, 3, 0.02) 54%, rgba(10, 5, 3, 0.16)),
    url("./assets/images/fundo-hero-perfil-premium-v2.png") center center / cover no-repeat,
    #1a0e09;
}

.hero-state-reverse::before {
  display: none;
}

.hero-state-reverse .hero-copy {
  padding-right: 0;
  padding-left: clamp(2rem, 4vw, 5rem);
}

@media (min-width: 1024px) {
  .hero-state-reverse .hero-copy h2 {
    font-size: clamp(3.35rem, 4vw, 5.25rem);
  }

  .hero-state-reverse .hero-lead {
    max-width: 44rem;
    font-size: clamp(1rem, 1.18vw, 1.22rem);
  }

  .hero-state-reverse .hero-cta {
    font-size: clamp(1.15rem, 1.16vw, 1.32rem);
  }
}

.hero-profile {
  margin: calc(var(--header-height) * -0.2) 0 -2.4rem calc(var(--gutter) * -1);
  -webkit-mask-image: linear-gradient(270deg, transparent 0%, #000 5%, #000 100%);
  mask-image: linear-gradient(270deg, transparent 0%, #000 5%, #000 100%);
}

.story-progress {
  position: absolute;
  z-index: 8;
  right: var(--gutter);
  bottom: 1.7rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(232, 210, 183, 0.4);
  font-size: 0.68rem;
}

.story-progress span.is-active {
  color: var(--gold-300);
}

.story-progress i {
  width: 4.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-400), rgba(224, 170, 98, 0.2));
}

.scroll-cue {
  position: absolute;
  z-index: 8;
  bottom: 1.3rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  transform: translateX(-50%);
  color: rgba(232, 214, 193, 0.44);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 1px;
  height: 1.7rem;
  background: linear-gradient(var(--gold-400), transparent);
}

/* Approach */
.approach-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: calc(var(--header-height) + 4.3rem) 0 6rem;
  background:
    radial-gradient(ellipse at 50% 52%, rgba(104, 75, 49, 0.15), transparent 38rem),
    linear-gradient(180deg, #0e0805, #1a0f0a 52%, #0d0704);
}

.section-curve {
  position: absolute;
  border: 1px solid rgba(176, 143, 93, 0.26);
  pointer-events: none;
}

.curve-left {
  top: -24rem;
  left: -20rem;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
}

.curve-right {
  right: -14rem;
  bottom: -29rem;
  width: 38rem;
  height: 50rem;
  border-radius: 48% 52% 44% 56%;
  transform: rotate(16deg);
}

.section-heading {
  max-width: 84rem;
  margin-inline: auto;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 4.35vw, 5.25rem);
  letter-spacing: -0.027em;
  line-height: 0.98;
}

.section-heading h2 em {
  color: var(--gold-200);
  font-weight: 400;
  font-style: italic;
}

.section-heading > p:last-child {
  max-width: 64rem;
  margin: 0 auto;
  color: var(--cream-200);
  font-size: clamp(0.95rem, 1.16vw, 1.16rem);
  line-height: 1.72;
}

.pillar-grid {
  display: grid;
  margin-top: clamp(3rem, 5vw, 5.2rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.pillar-carousel {
  position: relative;
}

.pillar-carousel-controls {
  display: none;
}

.pillar-card {
  position: relative;
  min-height: 22rem;
  padding: 2.25rem 1.6rem 2rem;
  overflow: hidden;
  border: 1px solid rgba(176, 143, 93, 0.58);
  border-radius: 1.15rem;
  background:
    linear-gradient(150deg, rgba(101, 76, 48, 0.14), transparent 46%),
    rgba(15, 9, 6, 0.66);
  box-shadow: inset 0 1px rgba(255, 223, 173, 0.05);
}

.card-glow {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 42%;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #e6d3ad, transparent);
  box-shadow: 0 0 1rem rgba(218, 195, 153, 0.62);
}

.pillar-number {
  position: absolute;
  top: 1.5rem;
  right: 1.45rem;
  color: rgba(176, 143, 93, 0.42);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.pillar-symbol {
  display: grid;
  width: 3.6rem;
  height: 3.6rem;
  margin-bottom: 2.15rem;
  place-items: center;
  border: 1px solid rgba(176, 143, 93, 0.6);
  border-radius: 50%;
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 1.32rem;
}

.pillar-card h3 {
  min-height: 4.8rem;
  margin-bottom: 1.2rem;
  color: var(--gold-300);
  font-size: clamp(1.4rem, 1.52vw, 1.7rem);
  line-height: 1.17;
}

.pillar-card p {
  margin-bottom: 0;
  color: var(--cream-200);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Program */
.program-story {
  position: relative;
  height: 205vh;
  min-height: 78rem;
  background: var(--brown-1000);
}

.program-sticky {
  position: sticky;
  isolation: isolate;
  top: 0;
  height: 100vh;
  min-height: 42rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 9% 28%, rgba(123, 70, 35, 0.24), transparent 34%),
    radial-gradient(ellipse at 73% 48%, rgba(121, 72, 37, 0.32), transparent 38%),
    radial-gradient(ellipse at 92% 12%, rgba(76, 41, 22, 0.24), transparent 29%),
    linear-gradient(112deg, #0b0604 0%, #1c100a 48%, #120906 76%, #0a0503 100%);
}

.program-sticky::before,
.program-sticky::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.program-sticky::before {
  inset: 0;
  opacity: 0.78;
  background:
    radial-gradient(ellipse 37rem 52rem at -5% 53%, transparent 0 51%, rgba(192, 124, 59, 0.23) 51.15% 51.35%, transparent 51.5% 63%, rgba(176, 111, 52, 0.12) 63.15% 63.3%, transparent 63.45%),
    radial-gradient(ellipse 52rem 43rem at 78% 48%, transparent 0 58%, rgba(210, 145, 75, 0.14) 58.15% 58.3%, transparent 58.5%),
    linear-gradient(118deg, transparent 0 18%, rgba(183, 118, 58, 0.045) 18.1% 18.2%, transparent 18.35% 72%, rgba(216, 151, 79, 0.06) 72.1% 72.2%, transparent 72.35%);
}

.program-sticky::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(8rem, 16vw, 19rem);
  opacity: 0.42;
  background:
    linear-gradient(90deg, transparent, rgba(45, 22, 12, 0.46) 31%, rgba(16, 8, 5, 0.16)),
    repeating-linear-gradient(90deg, transparent 0 0.72rem, rgba(190, 125, 62, 0.15) 0.78rem 0.84rem, transparent 0.9rem 1.55rem);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 32%, #000);
  mask-image: linear-gradient(90deg, transparent, #000 32%, #000);
}

.program-layout {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 112rem);
  height: 100%;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 2.3rem;
  align-items: center;
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
}

.program-copy {
  position: relative;
  z-index: 6;
  display: flex;
  align-self: stretch;
  max-width: 39rem;
  flex-direction: column;
  justify-content: center;
  padding-right: 2rem;
}

.program-copy::before {
  position: absolute;
  z-index: -1;
  inset: -8rem -5rem -8rem -14rem;
  content: "";
  opacity: 0.68;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(75, 38, 19, 0.3), transparent 61%),
    linear-gradient(90deg, rgba(9, 5, 3, 0.44), transparent 78%);
}

.program-copy > h2 {
  margin-bottom: 1rem;
  font-size: clamp(3.5rem, 5vw, 6.1rem);
  letter-spacing: -0.035em;
  line-height: 0.88;
}

.program-intro {
  max-width: 34rem;
  margin-bottom: 2.4rem;
  color: var(--cream-200);
  font-size: clamp(0.92rem, 1.04vw, 1.06rem);
  line-height: 1.7;
}

.program-stages {
  position: relative;
  min-height: 18rem;
}

.program-stage {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(0.65rem);
  transition:
    opacity 300ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 330ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 330ms;
  will-change: opacity, transform;
}

.program-stage.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 45ms, 45ms, 0s;
}

.stage-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.stage-meta strong {
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.stage-meta i {
  width: 3.6rem;
  height: 1px;
  background: var(--gold-500);
}

.stage-meta span {
  color: var(--gold-300);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.program-stage h3 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 3.9vw, 4.65rem);
  letter-spacing: -0.028em;
  line-height: 0.94;
}

.program-stage p {
  max-width: 35rem;
  margin-bottom: 0;
  color: var(--cream-200);
  font-size: clamp(0.88rem, 0.98vw, 1rem);
  line-height: 1.72;
}

.program-pagination {
  position: absolute;
  right: 0;
  bottom: 0.4rem;
  left: 0;
  display: flex;
  align-items: center;
}

.program-pagination button {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid rgba(176, 143, 93, 0.4);
  border-radius: 50%;
  background: rgba(15, 5, 3, 0.82);
  color: rgba(232, 209, 181, 0.52);
  font-family: var(--serif);
}

.program-pagination button.is-active {
  border-color: var(--gold-300);
  color: var(--cream-100);
  box-shadow: 0 0 1.25rem rgba(224, 149, 59, 0.34);
}

.program-pagination i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(176, 143, 93, 0.56), rgba(176, 143, 93, 0.14));
}

.program-media {
  position: relative;
  isolation: isolate;
  align-self: stretch;
  margin: 1rem calc(var(--gutter) * -1) -2.3rem -3rem;
}

.program-media::before {
  position: absolute;
  z-index: -1;
  inset: 3% -6% 0 -4%;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at 47% 47%, rgba(91, 46, 21, 0.54), rgba(63, 31, 16, 0.22) 39%, transparent 72%);
  filter: blur(1.1rem);
}

.program-media::after {
  position: absolute;
  z-index: 8;
  top: 7%;
  bottom: 5%;
  left: -18%;
  width: 17%;
  content: "";
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(244, 192, 119, 0.1), rgba(255, 215, 153, 0.62), rgba(236, 166, 81, 0.08), transparent);
  filter: blur(0.28rem);
  transform: skewX(-9deg);
}

.program-sticky.is-transitioning .program-media::after {
  animation: program-gold-sweep 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.program-sticky[data-program-direction="back"].is-transitioning .program-media::after {
  animation-direction: reverse;
}

@keyframes program-gold-sweep {
  0% {
    left: -17%;
    opacity: 0;
  }
  22% {
    opacity: 0.72;
  }
  72% {
    opacity: 0.32;
  }
  100% {
    left: 105%;
    opacity: 0;
  }
}

.program-visual {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  filter: brightness(0.88) saturate(0.92);
  transform: scale(0.992);
  transition:
    opacity 320ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 360ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 360ms;
  will-change: opacity, filter, transform;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 100%);
}

.program-visual.is-active {
  visibility: visible;
  opacity: 1;
  filter: brightness(1) saturate(1);
  transform: scale(1);
  transition-delay: 35ms, 35ms, 35ms, 0s;
}

.program-visual.has-image {
  background-position: center center;
  background-size: contain;
  -webkit-mask-image: none;
  mask-image: none;
}

.program-visual.has-image .program-rings {
  display: none;
}

.program-rings {
  position: absolute;
  z-index: -1;
  top: 9%;
  left: 14%;
  width: 76%;
  aspect-ratio: 1;
  border: 1px solid rgba(221, 145, 59, 0.52);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(119, 55, 22, 0.08),
    0 0 0 8rem rgba(119, 55, 22, 0.05),
    inset 0 0 6rem rgba(117, 52, 19, 0.16);
}

.program-rings::before,
.program-rings::after {
  position: absolute;
  border: 1px solid rgba(220, 143, 56, 0.28);
  border-radius: 50%;
  content: "";
}

.program-rings::before {
  inset: 9%;
}

.program-rings::after {
  inset: 21%;
}

/* Complaints */
.complaints-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: calc(var(--header-height) + 3.4rem) 0 4rem;
  background:
    radial-gradient(circle at 74% 38%, rgba(100, 72, 44, 0.19), transparent 34rem),
    linear-gradient(135deg, #0d0704, #1b100a 58%, #0b0604);
}

.complaints-layout {
  display: grid;
  min-height: calc(100vh - var(--header-height) - 7.4rem);
  align-items: center;
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
  gap: clamp(2rem, 4vw, 5rem);
}

.complaints-copy h2 {
  max-width: 40rem;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 4.1vw, 4.9rem);
  letter-spacing: -0.028em;
  line-height: 1.03;
}

.complaints-copy h2 em {
  display: block;
  color: var(--gold-200);
  font-weight: 400;
  font-style: italic;
}

.complaints-lead {
  max-width: 36rem;
  margin-bottom: 1.55rem;
  color: var(--cream-200);
  font-size: 0.91rem;
  line-height: 1.66;
}

.complaint-tabs {
  display: grid;
  max-width: 38.5rem;
  gap: 0.52rem;
}

.complaint-tabs button {
  position: relative;
  display: grid;
  min-height: 4.75rem;
  padding: 0.65rem 1.05rem;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(176, 143, 93, 0.5);
  border-radius: 0.82rem;
  background: linear-gradient(100deg, rgba(26, 14, 9, 0.58), rgba(8, 3, 2, 0.42));
  color: var(--cream-300);
  grid-template-columns: 3.25rem 1fr auto;
  gap: 0.95rem;
  text-align: left;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.complaint-tab-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(207, 150, 72, 0.62);
  border-radius: 50%;
  color: var(--gold-400);
  background: rgba(20, 10, 6, 0.62);
  box-shadow: inset 0 0 1rem rgba(214, 142, 56, 0.05);
  transition: color 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.complaint-tab-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.complaint-tabs button b {
  font-family: var(--serif);
  font-size: clamp(1.27rem, 1.32vw, 1.48rem);
  font-weight: 400;
  letter-spacing: 0.005em;
}

.complaint-tabs button i {
  color: var(--gold-300);
  font-size: 1.15rem;
  font-style: normal;
  transition: transform 200ms ease, color 200ms ease;
}

.complaint-tabs button:hover:not(.is-active) {
  border-color: rgba(218, 177, 112, 0.75);
  color: var(--cream-100);
}

.complaint-tabs button:hover i {
  transform: translateX(0.18rem);
}

.complaint-tabs button.is-active {
  border-color: #efd39e;
  background:
    linear-gradient(90deg, rgba(118, 77, 43, 0.7), rgba(68, 39, 23, 0.46) 72%, rgba(39, 20, 12, 0.5));
  box-shadow:
    0 0 0 1px rgba(239, 198, 130, 0.12),
    0 0 0.65rem rgba(235, 178, 95, 0.36),
    0 0 1.8rem rgba(211, 135, 51, 0.36),
    inset 0 1px rgba(255, 239, 211, 0.22),
    inset 0 0 1.4rem rgba(208, 132, 47, 0.12);
  color: #f0bd6e;
}

.complaint-tabs button.is-active .complaint-tab-icon {
  border-color: #efb75f;
  color: #f5bd65;
  background: rgba(67, 36, 19, 0.72);
  box-shadow: 0 0 0.8rem rgba(235, 169, 76, 0.34), inset 0 0 1rem rgba(229, 151, 61, 0.13);
}

.complaints-cta {
  width: min(100%, 38.5rem);
  margin-top: 1.05rem;
}

.complaint-display {
  position: relative;
  min-height: min(76vh, 49rem);
}

.complaint-panel {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  visibility: hidden;
  border: 1px solid rgba(176, 143, 93, 0.64);
  border-radius: 1.35rem 1.35rem 5.2rem 1.35rem;
  background: rgba(24, 15, 10, 0.72);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(0.7rem);
  transition: opacity 300ms ease, transform 300ms ease, visibility 300ms ease;
}

.complaint-panel.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.complaint-photo {
  position: absolute;
  inset: 0;
  border: 0;
  background-color: #0d0805;
  background-image: var(--slot-image);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
}

.complaint-photo::after {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 44%;
  content: "";
  background: linear-gradient(180deg, transparent 0%, rgba(17, 9, 5, 0.7) 46%, rgba(14, 7, 4, 0.98) 100%);
  pointer-events: none;
}

.complaint-text {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(1.4rem, 2.5vw, 2.25rem) clamp(1.6rem, 3vw, 3rem);
  text-shadow: 0 0.12rem 1.15rem rgba(0, 0, 0, 0.88);
}

.complaint-text p {
  margin-bottom: 0.55rem;
  color: var(--gold-400);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.complaint-text h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 3vw, 3.5rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.complaint-text > span {
  display: block;
  max-width: 42rem;
  color: var(--cream-200);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Portrait sections */
.portrait-slot {
  border: 1px solid rgba(176, 143, 93, 0.58);
  border-radius: 12rem 12rem 1.4rem 1.4rem;
  box-shadow: inset 0 1px rgba(255, 225, 180, 0.05), 0 2rem 5rem rgba(0, 0, 0, 0.16);
}

.portrait-arch {
  position: absolute;
  z-index: -1;
  top: 7%;
  left: 12%;
  width: 76%;
  aspect-ratio: 1;
  border: 1px solid rgba(224, 151, 66, 0.56);
  border-radius: 50%;
  box-shadow: inset 0 0 5rem rgba(119, 53, 20, 0.12);
}

.about-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: calc(var(--header-height) + 2.8rem) 0 3.2rem;
  background:
    linear-gradient(90deg, rgba(13, 8, 5, 0.5), rgba(13, 8, 5, 0.82)),
    url("./assets/images/fundo-editorial-marrom-dourado.png") center center / cover no-repeat,
    #140c08;
}

.about-layout {
  display: grid;
  min-height: calc(100vh - var(--header-height) - 6rem);
  align-items: center;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  gap: clamp(2.5rem, 5vw, 5.5rem);
}

.about-media {
  height: min(78vh, 48rem);
}

.about-media.has-image {
  border-radius: 1.5rem 1.5rem 5rem 1.5rem;
  background-position: center center;
  background-size: cover;
}

.about-media.has-image .portrait-arch {
  display: none;
}

.portrait-label {
  position: absolute;
  z-index: 6;
  right: 1.4rem;
  bottom: 1.4rem;
  left: 1.4rem;
  display: grid;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(221, 151, 68, 0.56);
  border-radius: 0.7rem;
  background: rgba(19, 7, 4, 0.76);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.portrait-label strong {
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
}

.portrait-label span,
.portrait-label small {
  color: var(--cream-300);
  font-size: 0.68rem;
}

.about-copy {
  max-width: 44rem;
}

.about-copy h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(3rem, 4.05vw, 4.9rem);
  letter-spacing: -0.027em;
  line-height: 0.97;
}

.about-copy h2 em {
  color: var(--gold-200);
  font-weight: 400;
  font-style: italic;
}

.about-copy > p {
  margin-bottom: 0.85rem;
  color: var(--cream-200);
  font-size: clamp(0.84rem, 0.9vw, 0.94rem);
  line-height: 1.62;
}

.about-copy blockquote {
  display: grid;
  margin: 1.1rem 0 1rem;
  padding: 0.85rem 0;
  align-items: center;
  border-top: 1px solid rgba(176, 143, 93, 0.36);
  border-bottom: 1px solid rgba(176, 143, 93, 0.36);
  grid-template-columns: auto 1fr;
  gap: 1rem;
}

.about-copy blockquote > span {
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 0.8;
}

.about-copy blockquote p {
  margin: 0;
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.65vw, 1.75rem);
  font-style: italic;
  line-height: 1.2;
}

.about-mobile-continuation,
.about-mobile-credentials,
.about-mobile-eyebrow,
.about-mobile-button-icon {
  display: none;
}

/* Reviews */
.reviews-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: calc(var(--header-height) + 2.25rem) 0 3rem;
  background:
    linear-gradient(90deg, rgba(8, 4, 2, 0.74) 0%, rgba(11, 6, 3, 0.48) 48%, rgba(7, 3, 2, 0.64) 100%),
    url("./assets/images/12-reviews-background.png") center center / cover no-repeat,
    #140c08;
}

.reviews-section::before,
.reviews-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.reviews-section::before {
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(ellipse at 16% 48%, rgba(85, 46, 26, 0.22), transparent 40%),
    linear-gradient(115deg, rgba(5, 2, 1, 0.28), transparent 46%, rgba(5, 2, 1, 0.18));
}

.reviews-section::after {
  z-index: 0;
  right: -19rem;
  bottom: -27rem;
  width: 49rem;
  height: 49rem;
  border: 1px solid rgba(218, 169, 106, 0.23);
  border-radius: 50%;
}

.reviews-layout {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(92vw, 105rem);
  min-height: calc(100vh - var(--header-height) - 5.25rem);
  align-items: center;
  grid-template-columns: minmax(0, 36%) minmax(0, 64%);
  gap: clamp(2.5rem, 4.2vw, 4.8rem);
}

.reviews-intro h2 {
  max-width: 34rem;
  margin-bottom: 1.1rem;
  font-size: clamp(3.15rem, 3.75vw, 4.55rem);
  letter-spacing: -0.028em;
  line-height: 0.95;
}

.reviews-intro h2 em {
  display: block;
  color: var(--gold-200);
  font-weight: 400;
  font-style: italic;
}

.reviews-intro > p:not(.eyebrow):not(.public-note) {
  max-width: 29rem;
  color: var(--cream-200);
  font-size: 0.9rem;
  line-height: 1.65;
}

.reviews-meta {
  display: flex;
  margin: 1.35rem 0 1.25rem;
  align-items: flex-end;
  gap: clamp(1rem, 2vw, 1.8rem);
}

.google-rating {
  display: grid;
  width: max-content;
  flex: 0 0 auto;
  margin: 0;
}

.google-rating strong {
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: clamp(4rem, 5vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.google-rating span {
  margin-top: 0.35rem;
  color: var(--gold-400);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
}

.google-rating small {
  margin-top: 0.3rem;
  color: var(--cream-300);
}

.public-note {
  max-width: 13.5rem;
  margin: 0 0 0.15rem;
  padding: 0.55rem 0 0.55rem 1rem;
  border-left: 1px solid rgba(218, 199, 163, 0.34);
  color: var(--cream-300);
  font-size: 0.68rem;
  line-height: 1.55;
}

.public-note-icon,
.review-summary {
  display: none;
}

.reviews-carousel {
  min-width: 0;
  min-height: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.carousel-themes {
  position: relative;
  display: grid;
  min-height: 6.85rem;
  padding: 0 0 1.15rem;
  align-items: center;
  border-bottom: 1px solid rgba(218, 199, 163, 0.29);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.carousel-themes span {
  position: relative;
  display: grid;
  place-items: center;
  color: rgba(238, 227, 207, 0.62);
  font-size: 0.68rem;
  line-height: 1.35;
  text-align: center;
}

.carousel-themes span::after {
  position: absolute;
  right: 18%;
  bottom: -1.2rem;
  left: 18%;
  height: 2px;
  content: "";
  transform: scaleX(0);
  background: var(--gold-300);
  transition: transform 180ms ease;
}

.carousel-themes i {
  display: grid;
  width: 3.15rem;
  height: 3.15rem;
  margin-bottom: 0.5rem;
  place-items: center;
  border: 1px solid rgba(218, 169, 106, 0.46);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(96, 57, 35, 0.35), rgba(27, 13, 8, 0.52));
  color: var(--gold-400);
  font-style: normal;
  box-shadow: inset 0 1px rgba(255, 230, 194, 0.06);
}

.carousel-themes i svg {
  width: 1.55rem;
  height: 1.55rem;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-themes span.is-active {
  color: var(--gold-300);
}

.carousel-themes span.is-active::after {
  transform: scaleX(1);
}

.review-theme-short,
.review-theme-long {
  font: inherit;
}

.review-theme-long {
  display: none;
}

.review-track {
  position: relative;
  min-height: min(50vh, 25rem);
  margin-top: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(199, 171, 122, 0.58);
  border-radius: 1.15rem 1.15rem 4.7rem 1.15rem;
  background:
    linear-gradient(135deg, rgba(98, 63, 39, 0.2), transparent 44%),
    rgba(20, 10, 6, 0.72);
  box-shadow: inset 0 1px rgba(255, 231, 197, 0.07), 0 1.8rem 4.5rem rgba(0, 0, 0, 0.2);
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.review-track::before {
  position: absolute;
  right: -10rem;
  bottom: -15rem;
  width: 29rem;
  height: 29rem;
  border: 1px solid rgba(218, 169, 106, 0.22);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 4rem rgba(177, 111, 61, 0.08);
  pointer-events: none;
}

.review-track.is-dragging {
  cursor: grabbing;
}

.review-slide {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  padding: clamp(2rem, 3.2vw, 3.25rem);
  align-items: center;
  visibility: hidden;
  opacity: 0;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 2.8rem);
  transform: translateX(1rem);
  transition: opacity 300ms ease, transform 300ms ease, visibility 300ms ease;
}

.review-slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.quote-icon {
  display: grid;
  width: 5.5rem;
  height: 5.5rem;
  place-items: center;
  border: 1px solid rgba(218, 169, 106, 0.16);
  border-radius: 50%;
  background: rgba(9, 3, 2, 0.48);
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.5;
}

.slide-label {
  margin-bottom: 0.8rem;
  color: var(--gold-400);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.review-slide h3 {
  max-width: 38rem;
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 3.2vw, 3.85rem);
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.review-slide div > p:last-child {
  max-width: 39rem;
  margin-bottom: 0;
  color: var(--cream-200);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.23vw, 1.28rem);
  line-height: 1.62;
}

.carousel-footer {
  display: grid;
  min-height: 4.8rem;
  padding: 1.1rem 0 0;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
}

.carousel-arrows {
  display: flex;
  gap: 0.45rem;
}

.carousel-arrows button {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid rgba(224, 154, 68, 0.68);
  border-radius: 50%;
  background: rgba(17, 6, 4, 0.72);
  color: var(--gold-300);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.carousel-dots button {
  min-width: 2.6rem;
  padding: 0.5rem 0.4rem;
  border: 0;
  border-bottom: 1px solid rgba(176, 143, 93, 0.27);
  background: transparent;
  color: rgba(229, 215, 195, 0.55);
  font-size: 0.68rem;
}

.carousel-dots button.is-active {
  border-bottom: 2px solid var(--gold-300);
  color: var(--gold-300);
}

.google-link {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(176, 143, 93, 0.64);
  border-radius: 0.5rem;
  background: rgba(14, 7, 4, 0.42);
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 0.8rem;
  white-space: nowrap;
}

/* Locations */
.locations-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: calc(var(--header-height) + 2.5rem) 0 3rem;
  background:
    linear-gradient(90deg, rgba(15, 9, 6, 0.36), rgba(15, 9, 6, 0.76)),
    url("./assets/images/fundo-editorial-marrom-dourado.png") center center / cover no-repeat,
    #160d09;
}

.locations-section::before,
.locations-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.locations-section::before {
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 42%, rgba(156, 87, 47, 0.32), transparent 48%),
    url("./assets/images/fundo-editorial-marrom-dourado.png") 58% center / 135% 100% no-repeat;
  opacity: 0.28;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.88) 26%, transparent 62%);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.88) 26%, transparent 62%);
}

.locations-section::after {
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 60vw;
  height: clamp(6rem, 14vh, 10rem);
  background:
    linear-gradient(180deg, transparent 0%, rgba(10, 6, 4, 0.38) 52%, rgba(8, 4, 3, 0.88) 100%),
    radial-gradient(ellipse at 28% 100%, rgba(4, 2, 1, 0.86), transparent 70%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
}

.locations-layout {
  display: grid;
  min-height: calc(100vh - var(--header-height) - 5.5rem);
  align-items: center;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  gap: clamp(2.25rem, 4.5vw, 5rem);
}

.locations-media {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 56vw;
  height: auto;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-image: var(--slot-image);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: auto 98%;
  box-shadow: none;
  pointer-events: none;
}

.locations-media .portrait-arch {
  display: none;
}

.locations-copy {
  position: relative;
  z-index: 3;
  grid-column: 2;
}

.locations-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(3.1rem, 4.4vw, 5.3rem);
  letter-spacing: -0.028em;
  line-height: 0.95;
}

.locations-copy h2 em {
  display: block;
  color: var(--gold-200);
  font-weight: 400;
  font-style: italic;
}

.locations-copy > p:not(.eyebrow):not(.agenda-note) {
  max-width: 42rem;
  margin-bottom: 1.4rem;
  color: var(--cream-200);
  font-size: 0.9rem;
  line-height: 1.65;
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.location-cards article {
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  padding: 1.4rem;
  border: 1px solid rgba(176, 143, 93, 0.5);
  border-radius: 1rem;
  background: rgba(18, 11, 7, 0.68);
  box-shadow: inset 0 1px rgba(255, 247, 231, 0.05), 0 1.4rem 3.5rem rgba(0, 0, 0, 0.12);
}

.city-icon {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1.1rem;
  place-items: center;
  border: 1px solid rgba(222, 150, 64, 0.66);
  border-radius: 50%;
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.city-icon svg {
  width: 1.85rem;
  height: 1.85rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-cards h3 {
  margin-bottom: 0.75rem;
  color: var(--gold-300);
  font-size: clamp(1.5rem, 1.85vw, 1.95rem);
}

.location-cards h3 small {
  color: var(--gold-200);
  font-size: 0.72em;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.location-cards p {
  margin-bottom: 1rem;
  color: var(--cream-200);
  font-size: 0.82rem;
  line-height: 1.62;
}

.location-cards a {
  display: flex;
  margin-top: auto;
  padding-top: 0.85rem;
  justify-content: space-between;
  border-top: 1px solid rgba(176, 143, 93, 0.3);
  color: var(--gold-300);
  font-size: 0.74rem;
}

.agenda-note {
  margin: 1rem 0 0.9rem;
  color: var(--cream-200);
  font-size: 0.82rem;
}

.location-main-cta {
  position: relative;
  width: 100%;
  padding-right: 3.75rem;
}

/* O CTA principal de localizações mantém o acabamento aprovado no desktop:
   texto centralizado e uma seta discreta à direita, sem ícone ampliado. */
.location-main-cta::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 1.65rem;
  content: "→";
  transform: translateY(-52%);
  font-family: var(--sans);
  font-size: 1.05em;
  font-weight: 400;
  line-height: 1;
}

.location-whatsapp-icon {
  display: none;
}

/* Final */
.final-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: calc(var(--header-height) + 2rem) 0 0;
  background: #140c08;
}

.final-section::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 7, 4, 0.12), rgba(12, 7, 4, 0.56)),
    url("./assets/images/fundo-editorial-marrom-dourado.png") center center / cover no-repeat;
  transform: scaleX(-1);
  opacity: 0.82;
}

.final-section::after {
  z-index: 1;
  position: absolute;
  right: -15rem;
  bottom: -27rem;
  width: 46rem;
  height: 46rem;
  border: 1px solid rgba(222, 155, 77, 0.38);
  border-radius: 50%;
  content: "";
}

.final-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100vh - var(--header-height) - 2rem);
  align-items: center;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  gap: clamp(2.5rem, 5vw, 6rem);
}

.final-media {
  align-self: end;
  width: 118%;
  height: min(88vh, 56rem);
  margin-left: -12%;
  border: 0;
  border-radius: 0;
  background-position: center bottom, center, center;
  box-shadow: none;
}

.final-media.has-image {
  overflow: visible;
  background-color: transparent;
  background-image: var(--slot-image);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 82%, rgba(0, 0, 0, 0.78) 91%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 82%, rgba(0, 0, 0, 0.78) 91%, transparent 100%);
}

.final-media.has-image .portrait-arch {
  display: none;
}

.final-copy {
  position: relative;
  z-index: 3;
  max-width: 52rem;
}

.final-copy h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(3.4rem, 4.9vw, 6rem);
  letter-spacing: -0.032em;
  line-height: 0.94;
}

.final-copy h2 em {
  display: block;
  color: var(--gold-200);
  font-weight: 400;
  font-style: italic;
}

.final-copy > p:not(.eyebrow) {
  max-width: 46rem;
  margin-bottom: 2rem;
  color: var(--cream-200);
  font-size: clamp(0.98rem, 1.14vw, 1.14rem);
  line-height: 1.65;
}

.button-large {
  width: min(100%, 43rem);
  min-height: 4.5rem;
  font-size: clamp(1.05rem, 1.32vw, 1.32rem);
}


.final-chat-invite {
  position: absolute;
  z-index: 4;
  /* Encosta o convite na lateral esquerda da viewport, mesmo quando o
     conteúdo desktop está centralizado dentro do site-shell. */
  left: calc(50% - 50vw + clamp(0.75rem, 1.25vw, 1.5rem));
  bottom: clamp(1rem, 2vw, 1.6rem);
  display: inline-flex;
  align-items: flex-end;
  gap: 0.8rem;
  max-width: min(94vw, 26rem);
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease;
}

.final-chat-invite:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 0.8rem 1.2rem rgba(0, 0, 0, 0.18));
}

.final-chat-invite:focus-visible {
  outline: 2px solid rgba(235, 196, 135, 0.92);
  outline-offset: 6px;
  border-radius: 999px;
}

.final-chat-avatar-wrap {
  position: relative;
  flex: 0 0 auto;
  width: clamp(3.4rem, 4.2vw, 4.15rem);
  height: clamp(3.4rem, 4.2vw, 4.15rem);
  border-radius: 50%;
  box-shadow: 0 1rem 2.2rem rgba(0, 0, 0, 0.26);
}

.final-chat-avatar {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(123, 75, 41, 0.35);
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.final-chat-status {
  position: absolute;
  right: 0.05rem;
  bottom: 0.1rem;
  width: 0.9rem;
  height: 0.9rem;
  border: 2px solid #f4efe8;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 0.2rem rgba(21, 12, 7, 0.16);
}

.final-chat-bubble {
  position: relative;
  min-height: clamp(3.3rem, 4vw, 3.95rem);
  padding: 0.96rem 1.45rem;
  border: 1px solid rgba(168, 160, 149, 0.18);
  border-radius: 1rem;
  background: linear-gradient(180deg, #ffffff, #f5f2ee);
  color: #65615f;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 500;
  line-height: 1.15;
  box-shadow:
    0 1rem 2.4rem rgba(0, 0, 0, 0.24),
    inset 0 1px rgba(255, 255, 255, 0.86);
}

.final-chat-bubble::before {
  position: absolute;
  left: -0.45rem;
  bottom: 0.88rem;
  width: 1rem;
  height: 1rem;
  content: "";
  background: linear-gradient(180deg, #ffffff, #f5f2ee);
  border-left: 1px solid rgba(168, 160, 149, 0.18);
  border-bottom: 1px solid rgba(168, 160, 149, 0.18);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.final-chat-bubble strong {
  color: #494443;
  font-weight: 700;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(176, 143, 93, 0.27);
  background:
    linear-gradient(180deg, rgba(33, 17, 10, 0.2), transparent 55%),
    #0b0302;
}

.footer-layout {
  display: grid;
  min-height: 8.25rem;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-block: 1.35rem;
}

.footer-brand {
  justify-self: start;
}

.instagram-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  justify-self: center;
  padding: 0.65rem 0.15rem 0.5rem;
  border-bottom: 1px solid rgba(176, 143, 93, 0.48);
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: clamp(0.78rem, 0.92vw, 0.9rem);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.instagram-link:hover {
  border-color: rgba(229, 190, 127, 0.88);
  color: var(--gold-200);
  transform: translateY(-1px);
}

.instagram-link:focus-visible,
.site-credit a:focus-visible {
  outline: 2px solid rgba(229, 190, 127, 0.9);
  outline-offset: 5px;
  border-radius: 0.2rem;
}

.footer-meta {
  display: grid;
  justify-items: end;
  justify-self: end;
  gap: 0.45rem;
  text-align: right;
}

.site-footer p {
  margin: 0;
  color: rgba(222, 210, 194, 0.72);
  font-size: 0.68rem;
  line-height: 1.5;
}

.site-credit {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.28rem;
}

.site-credit a {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding-bottom: 0.08rem;
  border-bottom: 1px solid rgba(192, 146, 83, 0.42);
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 0.78rem;
  line-height: 1.2;
  transition: color 160ms ease, border-color 160ms ease;
}

.site-credit a:hover {
  border-color: rgba(229, 190, 127, 0.88);
  color: var(--gold-200);
}

/* 404 */
.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at 68% 35%, rgba(121, 57, 24, 0.35), transparent 30rem),
    linear-gradient(135deg, #0d0403, #1b0b06 55%, #0b0302);
}

.error-page main {
  width: min(100%, 48rem);
}

.error-card {
  position: relative;
  padding: clamp(2rem, 6vw, 5rem);
  overflow: hidden;
  border: 1px solid rgba(176, 143, 93, 0.58);
  border-radius: 1.4rem 1.4rem 5rem 1.4rem;
  background: rgba(22, 8, 5, 0.7);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.28);
}

.error-card::after {
  position: absolute;
  right: -11rem;
  bottom: -16rem;
  width: 29rem;
  height: 29rem;
  border: 1px solid rgba(224, 154, 68, 0.35);
  border-radius: 50%;
  content: "";
}

.error-card h1 {
  max-width: 36rem;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.error-card > p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: var(--cream-200);
  line-height: 1.7;
}

/* Reveal */
.will-reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (min-width: 1101px) {
  .hero-state:first-child h1 > span,
  .hero-state:first-child h1 > em {
    white-space: nowrap;
  }
}

@media (max-width: 1280px) {
  :root {
    --gutter: clamp(1.5rem, 3.2vw, 3rem);
  }

  .header-shell {
    gap: 1.5rem;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .main-nav {
    gap: 1.15rem;
  }

  .main-nav a {
    font-size: 0.68rem;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(3rem, 3.6vw, 3.55rem);
  }

  .pillar-card {
    padding-inline: 1.25rem;
  }

  .program-layout {
    grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 4.35rem;
  }

  .main-nav a:nth-last-child(-n + 2) {
    display: none;
  }

  .header-cta {
    font-size: 0.72rem;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 3rem;
  }

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

  .pillar-grid {
    gap: 0.7rem;
  }

  .pillar-card {
    min-height: 20rem;
    padding: 1.5rem 1rem;
  }

  .pillar-card h3 {
    font-size: 1.23rem;
  }

  .complaints-layout,
  .about-layout,
  .locations-layout,
  .final-layout {
    gap: 2rem;
  }

  .complaint-tabs button {
    min-height: 4.1rem;
  }

  .complaint-display {
    min-height: 38rem;
  }

  .about-copy > p {
    font-size: 0.78rem;
  }

  .reviews-layout {
    gap: 1.5rem;
  }

  .carousel-themes {
    padding-inline: 1rem;
  }

  .review-slide {
    padding: 2rem;
  }

  .quote-icon {
    width: 4.8rem;
    height: 4.8rem;
    font-size: 4rem;
  }

  .location-cards article {
    padding: 1.1rem;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .header-shell {
    grid-template-columns: 1fr auto;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  }

  .hero-state-reverse .hero-layout {
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 2.55rem;
  }

  .button {
    font-size: 0.98rem;
  }

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

  .program-layout {
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  }

  .complaints-layout {
    grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  }

  .complaints-copy h2,
  .about-copy h2,
  .locations-copy h2 {
    font-size: 2.65rem;
  }

  .complaint-tabs button {
    grid-template-columns: 2.8rem 1fr auto;
  }

  .complaint-tabs button b {
    font-size: 1.05rem;
  }

  .complaint-tab-icon {
    width: 2.55rem;
    height: 2.55rem;
  }

  .reviews-layout {
    grid-template-columns: minmax(0, 34%) minmax(0, 66%);
  }

  .reviews-intro h2 {
    font-size: 2.6rem;
  }

  .review-slide {
    grid-template-columns: 1fr;
  }

  .quote-icon {
    display: none;
  }

  .carousel-footer {
    grid-template-columns: auto 1fr;
  }

  .google-link {
    grid-column: 1 / -1;
    text-align: center;
  }

  .location-cards {
    grid-template-columns: 1fr;
  }

  .location-cards article {
    min-height: 12rem;
  }

  .final-copy h2 {
    font-size: 3.15rem;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
    justify-items: center;
    justify-self: center;
    text-align: center;
  }

  .site-credit {
    justify-content: center;
  }
}

/* Composição própria da primeira seção para celulares. O desktop acima permanece intacto. */
@media (max-width: 900px) {
  :root {
    --header-height: 5.35rem;
    --gutter: clamp(1.15rem, 5vw, 2rem);
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    height: var(--header-height);
    border-bottom: 0;
    background: linear-gradient(180deg, rgba(11, 6, 4, 0.8), rgba(11, 6, 4, 0));
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header.is-scrolled,
  .site-header.is-menu-open {
    border-bottom: 1px solid rgba(199, 171, 122, 0.2);
    background: rgba(13, 7, 4, 0.96);
    box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.28);
  }

  .header-shell {
    width: 100%;
    padding-inline: clamp(1.25rem, 5.4vw, 2.25rem);
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .brand {
    width: max-content;
  }

  .brand-mark,
  .brand-copy,
  .header-cta {
    display: none;
  }

  .mobile-program-brand {
    position: relative;
    display: grid;
    gap: 0.18rem;
    padding-bottom: 0.65rem;
    color: var(--gold-300);
    font-family: var(--sans);
    line-height: 1.08;
    text-transform: uppercase;
  }

  .mobile-program-brand::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3.8rem;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, var(--gold-400), transparent);
  }

  .mobile-program-brand small,
  .mobile-program-brand strong {
    font: inherit;
    letter-spacing: 0.22em;
  }

  .mobile-program-brand small {
    font-size: clamp(0.64rem, 2.8vw, 0.76rem);
  }

  .mobile-program-brand strong {
    font-size: clamp(0.78rem, 3.3vw, 0.94rem);
    font-weight: 500;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 3.45rem;
    height: 3.45rem;
    padding: 0;
    place-content: center;
    gap: 0.36rem;
    border: 1px solid rgba(238, 227, 207, 0.92);
    border-radius: 50%;
    background: rgba(31, 17, 10, 0.36);
    box-shadow: inset 0 0 0 1px rgba(176, 143, 93, 0.24), 0 0 1.6rem rgba(218, 154, 79, 0.12);
  }

  .mobile-menu-toggle span {
    display: block;
    width: 1.55rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #9b693d, #e0b275, #9e6637);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(0.49rem) rotate(45deg);
  }

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

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-0.49rem) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 2;
    top: calc(var(--header-height) - 0.15rem);
    right: 0.8rem;
    left: 0.8rem;
    display: grid;
    max-height: calc(100svh - var(--header-height) - 1rem);
    padding: 1rem 1.25rem 1.3rem;
    overflow-y: auto;
    border: 1px solid rgba(199, 171, 122, 0.3);
    border-radius: 0.85rem;
    visibility: hidden;
    opacity: 0;
    background:
      linear-gradient(145deg, rgba(73, 41, 24, 0.42), rgba(17, 9, 6, 0.12)),
      rgba(17, 9, 6, 0.98);
    box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.55), inset 0 1px rgba(255, 226, 181, 0.08);
    transform: translateY(-0.8rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    pointer-events: none;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a,
  .main-nav a:nth-last-child(-n + 2) {
    display: block;
    padding: 0.9rem 0.35rem;
    border-bottom: 1px solid rgba(199, 171, 122, 0.14);
    color: var(--cream-200);
    font-family: var(--serif);
    font-size: 1.25rem;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    right: auto;
    bottom: 0.48rem;
    left: 0.35rem;
    width: 3rem;
  }

  .hero-story {
    height: 125svh;
    min-height: 0;
  }

  .hero-sticky {
    height: 100svh;
    min-height: 0;
    background: #100805;
  }

  .program-story {
    height: 150svh;
    min-height: 0;
  }

  .program-sticky {
    height: 100svh;
    min-height: 0;
  }

  .hero-sticky::before,
  .hero-sticky::after,
  .hero-state::before {
    display: none;
  }

  .hero-state > .hero-layout {
    display: none;
  }

  .hero-state-reverse {
    background: #100805;
  }

  .hero-mobile {
    position: relative;
    isolation: isolate;
    display: grid;
    width: 100%;
    height: 100svh;
    padding-top: var(--header-height);
    overflow: hidden;
    grid-template-rows: minmax(0, 50.5%) minmax(0, 49.5%);
    background: #100805;
  }

  .hero-mobile::before,
  .hero-mobile::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
  }

  .hero-mobile::before {
    z-index: -2;
    bottom: 38%;
    background:
      linear-gradient(90deg, rgba(11, 6, 4, 0.22), transparent 46%, rgba(11, 6, 4, 0.08)),
      url("./assets/images/fundo-editorial-marrom-dourado.png") 82% center / auto 100% no-repeat,
      #1e110b;
  }

  .hero-mobile::after {
    z-index: -1;
    background:
      radial-gradient(ellipse at 50% 35%, transparent 0 23%, rgba(10, 5, 3, 0.06) 48%, rgba(10, 5, 3, 0.42) 69%),
      linear-gradient(180deg, transparent 36%, rgba(12, 6, 4, 0.38) 49%, #100805 61%, #0d0705 100%);
  }

  .hero-mobile-reverse::before {
    background:
      linear-gradient(90deg, rgba(11, 6, 4, 0.12), transparent 45%, rgba(11, 6, 4, 0.06)),
      url("./assets/images/fundo-hero-perfil-premium-v2.png") 75% center / auto 100% no-repeat,
      #1e110b;
  }

  .hero-mobile-scene {
    position: relative;
    z-index: 1;
    min-height: 0;
  }

  .hero-mobile-photo {
    position: absolute;
    bottom: -0.7rem;
    left: 50%;
    display: block;
    width: auto;
    height: calc(100% + 0.35rem);
    max-width: none;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 1rem 1.8rem rgba(0, 0, 0, 0.28));
    transform: translateX(-50%);
  }

  .hero-mobile-photo-profile {
    bottom: -1rem;
    left: 48%;
    height: calc(100% + 0.65rem);
  }

  .hero-mobile-copy {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: 0;
    align-items: center;
    flex-direction: column;
    padding: clamp(0.4rem, 1.4vh, 0.8rem) clamp(1.35rem, 6vw, 3rem) 0.55rem;
    text-align: center;
  }

  .hero-mobile-title {
    width: min(100%, 39rem);
    margin: 0;
    color: var(--cream-100);
    font-size: clamp(2.15rem, 9.2vw, 3.2rem);
    letter-spacing: -0.035em;
    line-height: 0.91;
  }

  .hero-mobile-title span,
  .hero-mobile-title em {
    display: block;
  }

  .hero-mobile-title em {
    margin-top: 0.12em;
    color: #d7a46d;
    font-weight: 400;
    font-style: italic;
  }

  .hero-mobile-divider {
    position: relative;
    width: min(76%, 29rem);
    height: 1px;
    margin: clamp(0.75rem, 1.8vh, 1.15rem) 0 clamp(0.7rem, 1.7vh, 1.05rem);
    background: linear-gradient(90deg, transparent, rgba(199, 171, 122, 0.75) 28%, rgba(199, 171, 122, 0.75) 72%, transparent);
  }

  .hero-mobile-divider i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: #fff2d4;
    box-shadow: 0 0 0.35rem #f5b55e, 0 0 1.1rem #ef9832;
    transform: translate(-50%, -50%);
  }

  .hero-mobile-copy > p:not(.hero-mobile-signature, .hero-mobile-eyebrow) {
    width: min(100%, 33rem);
    margin: 0;
    color: var(--cream-200);
    font-size: clamp(0.88rem, 3.65vw, 1.1rem);
    line-height: 1.52;
  }

  .hero-mobile-cta {
    width: min(100%, 34rem);
    min-height: clamp(4.15rem, 9.5vh, 5.25rem);
    margin-top: clamp(0.8rem, 2vh, 1.25rem);
    gap: clamp(0.85rem, 4vw, 1.45rem);
    padding: 0.72rem 1rem;
    border-radius: 0.65rem;
    font-family: var(--sans);
    font-size: clamp(0.95rem, 4vw, 1.18rem);
    font-weight: 600;
    line-height: 1.32;
  }

  .hero-mobile-cta::before {
    border-radius: calc(0.65rem - 3px);
  }

  .hero-mobile-cta svg {
    width: clamp(2rem, 8vw, 2.65rem);
    height: clamp(2rem, 8vw, 2.65rem);
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
  }

  .hero-mobile-signature {
    margin: clamp(0.45rem, 1.2vh, 0.8rem) 0 0;
    color: #c99254;
    font-family: var(--script);
    font-size: clamp(2rem, 8vw, 2.9rem);
    line-height: 0.9;
  }

  .hero-mobile-eyebrow {
    margin: 0 0 0.45rem;
    color: var(--gold-400);
    font-size: clamp(0.6rem, 2.7vw, 0.76rem);
    font-weight: 600;
    letter-spacing: 0.27em;
    text-transform: uppercase;
  }

  .hero-mobile-reverse {
    grid-template-rows: minmax(0, 48%) minmax(0, 52%);
  }

  .hero-mobile-reverse .hero-mobile-copy {
    padding-top: clamp(0.2rem, 0.9vh, 0.5rem);
  }

  .hero-mobile-reverse .hero-mobile-title {
    max-width: 36rem;
    font-size: clamp(2.05rem, 8.4vw, 2.9rem);
  }

  .hero-mobile-reverse .hero-mobile-copy > p:not(.hero-mobile-eyebrow) {
    font-size: clamp(0.82rem, 3.35vw, 1.02rem);
    line-height: 1.48;
  }

  .hero-mobile-cta-simple {
    min-height: clamp(3.9rem, 8.7vh, 4.8rem);
  }

  .hero-mobile-cta-simple b {
    font-size: 1.25em;
    font-weight: 400;
  }

  .story-progress,
  .scroll-cue {
    display: none;
  }
}

@media (max-width: 900px) and (max-height: 740px) and (orientation: portrait) {
  :root {
    --header-height: 4.55rem;
  }

  .mobile-menu-toggle {
    width: 3rem;
    height: 3rem;
  }

  .hero-mobile {
    grid-template-rows: minmax(0, 44%) minmax(0, 56%);
  }

  .hero-mobile-reverse {
    grid-template-rows: minmax(0, 42%) minmax(0, 58%);
  }

  .hero-mobile-copy {
    padding-top: 0.15rem;
  }

  .hero-mobile-title {
    font-size: clamp(2.05rem, 10.3vw, 2.65rem);
  }

  .hero-mobile-reverse .hero-mobile-title {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .hero-mobile-divider {
    margin-block: 0.55rem;
  }

  .hero-mobile-copy > p:not(.hero-mobile-signature, .hero-mobile-eyebrow),
  .hero-mobile-reverse .hero-mobile-copy > p:not(.hero-mobile-eyebrow) {
    font-size: clamp(0.76rem, 3.25vw, 0.9rem);
    line-height: 1.4;
  }

  .hero-mobile-cta,
  .hero-mobile-cta-simple {
    min-height: 3.65rem;
    margin-top: 0.62rem;
    font-size: clamp(0.84rem, 3.55vw, 1rem);
  }

  .hero-mobile-signature {
    margin-top: 0.36rem;
    font-size: 1.85rem;
  }
}

@media (max-width: 900px) and (orientation: landscape) and (max-height: 520px) {
  :root {
    --header-height: 4rem;
  }

  .hero-mobile,
  .hero-mobile-reverse {
    padding-top: var(--header-height);
    grid-template-columns: minmax(0, 44%) minmax(0, 56%);
    grid-template-rows: 1fr;
  }

  .hero-mobile::before {
    bottom: 0;
    background-position: 70% center;
  }

  .hero-mobile::after {
    background: linear-gradient(90deg, rgba(10, 5, 3, 0.08), rgba(10, 5, 3, 0.88) 47%, #100805 100%);
  }

  .hero-mobile-scene {
    grid-column: 1;
  }

  .hero-mobile-copy {
    grid-column: 2;
    justify-content: center;
    padding: 0.5rem 1.2rem;
  }

  .hero-mobile-title,
  .hero-mobile-reverse .hero-mobile-title {
    font-size: clamp(1.75rem, 5.3vw, 2.45rem);
  }

  .hero-mobile-divider {
    margin-block: 0.45rem;
  }

  .hero-mobile-copy > p:not(.hero-mobile-signature, .hero-mobile-eyebrow),
  .hero-mobile-reverse .hero-mobile-copy > p:not(.hero-mobile-eyebrow) {
    font-size: 0.7rem;
    line-height: 1.38;
  }

  .hero-mobile-cta,
  .hero-mobile-cta-simple {
    width: min(100%, 27rem);
    min-height: 3.3rem;
    margin-top: 0.55rem;
    font-size: 0.78rem;
  }

  .hero-mobile-signature {
    display: none;
  }
}

/* Segunda seção mobile: cards quadrados em carrossel horizontal. */
@media (max-width: 900px) {
  .approach-section {
    min-height: 100svh;
    padding: calc(var(--header-height) + 0.65rem) 0 2.25rem;
    background:
      radial-gradient(ellipse at 78% 20%, rgba(119, 72, 38, 0.22), transparent 23rem),
      radial-gradient(ellipse at 8% 72%, rgba(85, 53, 34, 0.18), transparent 22rem),
      linear-gradient(180deg, #0e0805, #1a0f0a 52%, #0d0704);
  }

  .approach-section .section-heading.centered {
    max-width: 34rem;
    margin-inline: auto;
    text-align: center;
  }

  .approach-section .section-heading .eyebrow {
    justify-content: center;
    margin-bottom: 0.9rem;
  }

  .approach-section .section-heading h2 {
    max-width: 25rem;
    margin-inline: auto;
    margin-bottom: 1.35rem;
    font-size: clamp(2.35rem, 10.4vw, 3.5rem);
    letter-spacing: -0.03em;
    line-height: 0.96;
  }

  .approach-section .section-heading h2 em {
    color: #ddb176;
  }

  .approach-section .section-heading > p:last-child {
    max-width: 31rem;
    margin: 0 auto;
    padding: 0.1rem 0 0.1rem 1rem;
    border-left: 2px solid rgba(205, 165, 103, 0.62);
    color: rgba(242, 232, 218, 0.9);
    font-size: clamp(0.92rem, 3.8vw, 1.05rem);
    line-height: 1.62;
    text-align: left;
  }

  .pillar-carousel {
    margin-top: clamp(2.15rem, 7.5vw, 3.1rem);
  }

  .pillar-grid {
    display: flex;
    margin-top: 0;
    padding: 0.3rem 0 0.45rem;
    gap: clamp(0.72rem, 3.2vw, 1rem);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .pillar-grid::-webkit-scrollbar {
    display: none;
  }

  .pillar-card {
    display: flex;
    width: auto;
    min-width: 0;
    min-height: 0;
    flex: 0 0 91%;
    flex-direction: column;
    aspect-ratio: 1;
    padding: clamp(1.35rem, 5.7vw, 1.8rem);
    border: 2px solid rgba(210, 177, 119, 0.72);
    border-radius: 1.35rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background:
      radial-gradient(circle at 16% 12%, rgba(180, 120, 69, 0.16), transparent 38%),
      linear-gradient(145deg, rgba(86, 52, 31, 0.34), rgba(16, 9, 6, 0.88) 58%),
      #130b07;
    box-shadow:
      0 1.25rem 3rem rgba(0, 0, 0, 0.3),
      inset 0 0 0 5px rgba(15, 8, 5, 0.78),
      inset 0 0 0 6px rgba(221, 185, 124, 0.3),
      inset 0 1px rgba(255, 225, 181, 0.12);
  }

  .pillar-number {
    top: 1.45rem;
    right: 1.45rem;
    color: rgba(214, 176, 111, 0.58);
    font-size: 0.76rem;
  }

  .pillar-symbol {
    width: clamp(3.25rem, 14.8vw, 3.9rem);
    height: clamp(3.25rem, 14.8vw, 3.9rem);
    margin-bottom: clamp(1rem, 4.2vw, 1.35rem);
    border-color: rgba(210, 177, 119, 0.72);
    font-size: 1.28rem;
  }

  .pillar-card h3 {
    min-height: 0;
    margin-bottom: clamp(0.8rem, 3.4vw, 1.05rem);
    padding-bottom: clamp(0.75rem, 3.1vw, 1rem);
    border-bottom: 1px solid rgba(199, 160, 96, 0.34);
    color: #e1bf88;
    font-size: clamp(1.45rem, 6.35vw, 1.86rem);
    letter-spacing: -0.018em;
    line-height: 1.07;
  }

  .pillar-card p {
    max-width: 95%;
    color: rgba(242, 232, 218, 0.92);
    font-size: clamp(0.82rem, 3.45vw, 0.98rem);
    line-height: 1.52;
  }

  .pillar-carousel-controls {
    display: none;
    width: min(100%, 20.5rem);
    min-height: 3.35rem;
    margin: 0.55rem auto 0;
    padding: 0.32rem 0.4rem;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid rgba(202, 165, 102, 0.42);
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(74, 44, 27, 0.42), rgba(18, 10, 7, 0.8)),
      rgba(18, 10, 7, 0.82);
    box-shadow:
      0 0.8rem 2.2rem rgba(0, 0, 0, 0.28),
      inset 0 1px rgba(255, 226, 181, 0.08);
  }

  .pillar-arrow {
    position: relative;
    display: grid;
    width: 2.65rem;
    height: 2.45rem;
    flex: 0 0 2.65rem;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--gold-300);
    font-size: 0;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  }

  .pillar-arrow::before {
    width: 0.5rem;
    height: 0.5rem;
    content: "";
    border-top: 1.5px solid #deb675;
    border-right: 1.5px solid #deb675;
    filter: drop-shadow(0 0 0.35rem rgba(222, 182, 117, 0.38));
  }

  .pillar-arrow[data-pillar-prev] {
    border-right: 1px solid rgba(202, 165, 102, 0.26);
    border-radius: 999px 0 0 999px;
  }

  .pillar-arrow[data-pillar-prev]::before {
    transform: translateX(0.1rem) rotate(-135deg);
  }

  .pillar-arrow[data-pillar-next] {
    border-left: 1px solid rgba(202, 165, 102, 0.26);
    border-radius: 0 999px 999px 0;
  }

  .pillar-arrow[data-pillar-next]::before {
    transform: translateX(-0.1rem) rotate(45deg);
  }

  .pillar-arrow:hover,
  .pillar-arrow:focus-visible {
    background: rgba(215, 169, 99, 0.1);
  }

  .pillar-arrow:active {
    transform: scale(0.95);
  }

  .pillar-dots {
    display: grid;
    flex: 1;
    min-width: 0;
    align-items: center;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.38rem;
  }

  .pillar-dots button {
    position: relative;
    width: 100%;
    min-width: 0;
    height: 2.3rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: transparent;
    font-size: 0;
  }

  .pillar-dots button::before {
    position: absolute;
    top: 0.55rem;
    left: 50%;
    width: 0.34rem;
    height: 0.34rem;
    content: "";
    transform: translateX(-50%) rotate(45deg);
    border: 1px solid rgba(202, 165, 102, 0.44);
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .pillar-dots button::after {
    position: absolute;
    right: 0;
    bottom: 0.5rem;
    left: 0;
    height: 2px;
    content: "";
    transform: scaleX(0.45);
    border-radius: 999px;
    background: rgba(199, 171, 122, 0.24);
    transition: transform 220ms ease, background 180ms ease, box-shadow 180ms ease;
  }

  .pillar-dots button.is-active::before {
    border-color: #edc98c;
    background: #d8a45e;
    box-shadow: 0 0 0.65rem rgba(224, 170, 98, 0.56);
  }

  .pillar-dots button.is-active::after {
    transform: scaleX(1);
    background: linear-gradient(90deg, #a76f34, #efca89, #a76f34);
    box-shadow: 0 0 0.6rem rgba(224, 170, 98, 0.36);
  }

  /* Navegação numérica limpa: 01–04, sem setas laterais. */
  .pillar-carousel-controls {
    display: grid;
    width: min(100%, 18.5rem);
    min-height: 0;
    margin: 0.95rem auto 0;
    padding: 0;
    grid-template-columns: 1fr;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .pillar-arrow {
    display: none;
  }

  .pillar-dots {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: clamp(0.48rem, 2.5vw, 0.72rem);
  }

  .pillar-dots button {
    display: grid;
    width: clamp(2.55rem, 12vw, 2.95rem);
    height: clamp(2.55rem, 12vw, 2.95rem);
    flex: 0 0 auto;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(202, 165, 102, 0.46);
    border-radius: 50%;
    background:
      radial-gradient(circle at 36% 28%, rgba(141, 88, 48, 0.22), transparent 55%),
      rgba(18, 9, 6, 0.88);
    box-shadow: inset 0 0 0 3px rgba(11, 6, 4, 0.58);
    color: rgba(225, 203, 170, 0.72);
    font-family: var(--serif);
    font-size: clamp(0.78rem, 3.5vw, 0.92rem);
    line-height: 1;
    transition:
      color 180ms ease,
      border-color 180ms ease,
      background 180ms ease,
      box-shadow 180ms ease,
      transform 180ms ease;
  }

  .pillar-dots button::before,
  .pillar-dots button::after {
    display: none;
  }

  .pillar-dots button:hover,
  .pillar-dots button:focus-visible {
    border-color: rgba(237, 201, 140, 0.9);
    color: var(--cream-100);
    transform: translateY(-0.1rem);
  }

  .pillar-dots button.is-active {
    border-color: #efc681;
    background: linear-gradient(145deg, #c78a4e 0%, #efc58a 48%, #a96835 100%);
    box-shadow:
      0 0 0 3px rgba(17, 8, 5, 0.9),
      0 0 0 4px rgba(225, 180, 110, 0.7),
      0 0 1.25rem rgba(223, 158, 77, 0.4),
      inset 0 1px rgba(255, 235, 202, 0.58);
    color: #2b170c;
    transform: translateY(-0.1rem);
  }
}

/* Programa ReNova Face no celular: composição editorial vertical em três estados. */
@media (max-width: 900px) {
  .program-story {
    height: 150svh;
    min-height: 0;
    background: #110906;
  }

  .program-sticky {
    height: 100svh;
    min-height: 0;
    background:
      radial-gradient(ellipse at 72% 32%, rgba(117, 67, 34, 0.28), transparent 45%),
      radial-gradient(ellipse at 8% 88%, rgba(82, 46, 25, 0.22), transparent 38%),
      linear-gradient(160deg, #0c0604 0%, #1b0f09 49%, #100805 100%);
  }

  .program-sticky::before {
    opacity: 0.48;
    background:
      radial-gradient(ellipse 42rem 30rem at 50% 45%, transparent 0 60%, rgba(195, 128, 61, 0.12) 60.2% 60.4%, transparent 60.7%),
      linear-gradient(128deg, transparent 0 22%, rgba(205, 139, 69, 0.055) 22.2% 22.35%, transparent 22.6% 78%, rgba(205, 139, 69, 0.05) 78.2% 78.35%, transparent 78.6%);
  }

  .program-sticky::after {
    right: -2rem;
    width: 8rem;
    opacity: 0.2;
  }

  .program-layout {
    display: grid;
    width: min(100%, 46rem);
    height: 100%;
    margin-inline: auto;
    padding: calc(var(--header-height) + 0.42rem) var(--gutter) 0.62rem;
    align-items: stretch;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto minmax(0, 1fr) minmax(8.8rem, 19svh) auto;
  }

  .program-copy {
    display: contents;
    max-width: none;
    padding: 0;
  }

  .program-copy::before {
    display: none;
  }

  .program-copy > .eyebrow {
    grid-row: 1;
    align-self: end;
    margin: 0 0 0.26rem;
    color: #d9aa70;
    font-size: clamp(0.58rem, 2.65vw, 0.72rem);
    letter-spacing: 0.25em;
  }

  .program-copy > .eyebrow span {
    width: 2.2rem;
  }

  .program-copy > h2 {
    grid-row: 2;
    margin: 0 0 0.34rem;
    color: var(--cream-100);
    font-size: clamp(2.8rem, 13vw, 4.2rem);
    letter-spacing: -0.045em;
    line-height: 0.88;
  }

  .program-intro {
    grid-row: 3;
    width: min(100%, 36rem);
    margin: 0 0 0.48rem;
    color: rgba(229, 219, 207, 0.88);
    font-size: clamp(0.78rem, 3.45vw, 1rem);
    line-height: 1.48;
  }

  .program-media {
    position: relative;
    grid-row: 4;
    width: calc(100% + (var(--gutter) * 2));
    min-height: 0;
    margin: 0 calc(var(--gutter) * -1) 0.32rem;
    align-self: stretch;
    overflow: hidden;
  }

  .program-media::before {
    display: none;
  }

  .program-media::after {
    z-index: 4;
    top: 3%;
    bottom: 3%;
  }

  .program-visual,
  .program-visual.has-image {
    background-position: center 48% !important;
    background-size: cover !important;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 4%, #000 95%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 4%, #000 95%, transparent 100%);
    filter: brightness(0.91) saturate(0.94);
    transform: scale(0.985);
  }

  .program-visual.is-active,
  .program-visual.has-image.is-active {
    filter: brightness(1) saturate(1);
    transform: scale(1);
  }

  .program-stages {
    position: relative;
    grid-row: 5;
    min-height: 0;
    margin: 0;
  }

  .program-stage {
    display: flex;
    justify-content: center;
    flex-direction: column;
    transform: translateY(0.35rem);
  }

  .program-stage.is-active {
    transform: translateY(0);
  }

  .stage-meta {
    display: grid;
    width: max-content;
    margin: 0 0 0.32rem;
    align-items: center;
    grid-template-columns: auto 3.1rem;
    gap: 0.1rem 0.72rem;
  }

  .stage-meta strong {
    font-size: clamp(1.05rem, 4.9vw, 1.35rem);
    line-height: 1;
  }

  .stage-meta i {
    width: 100%;
  }

  .stage-meta span {
    grid-column: 1 / -1;
    color: rgba(230, 218, 201, 0.85);
    font-size: 0;
    letter-spacing: 0.22em;
  }

  .stage-meta span::after {
    content: attr(data-mobile-label);
    font-size: clamp(0.58rem, 2.55vw, 0.7rem);
  }

  .program-stage h3 {
    max-width: 94%;
    margin: 0 0 0.32rem;
    font-size: clamp(2.45rem, 11.2vw, 3.7rem);
    letter-spacing: -0.04em;
    line-height: 0.88;
  }

  .program-stage p {
    max-width: 37rem;
    margin: 0;
    color: rgba(229, 219, 207, 0.88);
    font-size: clamp(0.72rem, 3.15vw, 0.94rem);
    line-height: 1.48;
  }

  .program-pagination {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-row: 6;
    min-height: 2.8rem;
    margin-top: 0.3rem;
  }

  .program-pagination button {
    width: clamp(2.6rem, 11.6vw, 3.2rem);
    height: clamp(2.6rem, 11.6vw, 3.2rem);
    flex: 0 0 auto;
    font-size: clamp(0.84rem, 3.7vw, 1rem);
    background: rgba(15, 7, 4, 0.76);
  }

  .program-pagination i {
    margin-inline: 0.5rem;
  }
}

@media (max-width: 900px) and (max-height: 700px) and (orientation: portrait) {
  .program-layout {
    padding-top: calc(var(--header-height) + 0.18rem);
    padding-bottom: 0.35rem;
    grid-template-rows: auto auto auto minmax(0, 1fr) minmax(7.6rem, 18svh) auto;
  }

  .program-copy > h2 {
    font-size: clamp(2.35rem, 11.5vw, 3.1rem);
  }

  .program-intro {
    margin-bottom: 0.28rem;
    font-size: clamp(0.7rem, 2.95vw, 0.82rem);
    line-height: 1.38;
  }

  .program-stage h3 {
    font-size: clamp(2rem, 9.9vw, 2.8rem);
  }

  .program-stage p {
    font-size: clamp(0.64rem, 2.8vw, 0.78rem);
    line-height: 1.4;
  }

  .stage-meta {
    margin-bottom: 0.2rem;
  }

  .program-pagination {
    min-height: 2.35rem;
    margin-top: 0.14rem;
  }

  .program-pagination button {
    width: 2.35rem;
    height: 2.35rem;
  }
}

/* Principais queixas no celular: leitura vertical, painel em destaque e abas abaixo. */
@media (max-width: 900px) {
  .complaints-section {
    min-height: 0;
    padding: calc(var(--header-height) + 0.9rem) 0 clamp(2.8rem, 11vw, 4.5rem);
    background:
      radial-gradient(ellipse 90% 34% at 88% 29%, rgba(111, 67, 37, 0.26), transparent 70%),
      radial-gradient(ellipse 78% 25% at 4% 76%, rgba(92, 52, 29, 0.2), transparent 72%),
      linear-gradient(158deg, #0b0604 0%, #1c100a 48%, #0d0705 100%);
  }

  .complaints-section::before,
  .complaints-section::after {
    position: absolute;
    z-index: 0;
    content: "";
    pointer-events: none;
  }

  .complaints-section::before {
    top: 1.2rem;
    right: -16rem;
    width: 31rem;
    height: 31rem;
    border: 1px solid rgba(202, 141, 74, 0.18);
    border-radius: 50%;
    box-shadow:
      0 0 0 5.5rem rgba(190, 126, 61, 0.025),
      0 0 0 10rem rgba(190, 126, 61, 0.018);
  }

  .complaints-section::after {
    bottom: 8rem;
    left: -13rem;
    width: 24rem;
    height: 24rem;
    border: 1px solid rgba(202, 141, 74, 0.13);
    border-radius: 48% 52% 44% 56%;
    transform: rotate(31deg);
  }

  .complaints-layout {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(100%, 46rem);
    min-height: 0;
    margin-inline: auto;
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .complaints-copy {
    display: contents;
  }

  /* O contêiner sem caixa não deve depender do IntersectionObserver. */
  .complaints-copy.will-reveal {
    opacity: 1;
    transform: none;
  }

  .complaints-copy > .eyebrow {
    grid-row: 1;
    margin: 0 0 clamp(0.85rem, 3.2vw, 1.2rem);
    color: #d6a767;
    font-size: clamp(0.66rem, 2.9vw, 0.8rem);
    letter-spacing: 0.25em;
  }

  .complaints-copy > .eyebrow span {
    width: clamp(2rem, 9vw, 3rem);
  }

  .complaints-copy > h2 {
    grid-row: 2;
    max-width: 100%;
    margin: 0 0 clamp(1.05rem, 4.4vw, 1.55rem);
    color: #ddd5ca;
    font-size: clamp(2.5rem, 11.7vw, 4.6rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.94;
  }

  .complaints-copy h2 em {
    display: inline;
    color: inherit;
    font-style: normal;
  }

  .complaints-lead {
    grid-row: 3;
    max-width: 100%;
    margin: 0 0 clamp(1.25rem, 5.5vw, 2rem);
    color: rgba(234, 228, 219, 0.9);
    font-size: clamp(0.9rem, 3.8vw, 1.08rem);
    line-height: 1.55;
  }

  .complaint-display {
    grid-row: 4;
    width: 100%;
    min-height: 0;
    margin: 0 0 clamp(1.05rem, 4.6vw, 1.65rem);
    aspect-ratio: 1;
  }

  .complaint-panel {
    border: 0;
    border-radius: clamp(1.25rem, 5.5vw, 2.3rem);
    background: #0d0805;
    box-shadow:
      0 1.4rem 3.5rem rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(202, 154, 88, 0.16);
  }

  .complaint-photo {
    background-position: center;
    background-size: cover;
  }

  .complaint-photo::after {
    height: 51%;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 8, 5, 0.2) 18%, rgba(14, 7, 4, 0.86) 63%, #0d0704 100%);
  }

  .complaint-text {
    padding: clamp(1.15rem, 5vw, 1.9rem) clamp(1.15rem, 5vw, 2rem) clamp(1.45rem, 6vw, 2.25rem);
  }

  .complaint-text p {
    margin-bottom: clamp(0.42rem, 2vw, 0.7rem);
    font-size: clamp(0.56rem, 2.45vw, 0.72rem);
    line-height: 1.35;
  }

  .complaint-text h3 {
    max-width: 96%;
    margin-bottom: clamp(0.55rem, 2.7vw, 0.9rem);
    font-size: clamp(2rem, 9.5vw, 3.5rem);
    line-height: 0.98;
  }

  .complaint-text > span {
    max-width: 100%;
    color: rgba(239, 232, 222, 0.92);
    font-size: clamp(0.7rem, 3.15vw, 0.94rem);
    line-height: 1.48;
  }

  .complaint-tabs {
    grid-row: 5;
    max-width: none;
    gap: clamp(0.45rem, 2.2vw, 0.72rem);
  }

  .complaint-tabs button {
    min-height: clamp(4.25rem, 18vw, 5.35rem);
    padding: 0.55rem clamp(0.78rem, 3.5vw, 1.2rem);
    border-color: rgba(190, 146, 83, 0.52);
    border-radius: clamp(0.8rem, 3.7vw, 1.15rem);
    grid-template-columns: clamp(3rem, 13vw, 3.75rem) minmax(0, 1fr) auto;
    gap: clamp(0.68rem, 3.1vw, 1.05rem);
    background: linear-gradient(105deg, rgba(28, 15, 10, 0.78), rgba(8, 4, 3, 0.68));
  }

  .complaint-tab-icon {
    width: clamp(2.9rem, 12.6vw, 3.65rem);
    height: clamp(2.9rem, 12.6vw, 3.65rem);
  }

  .complaint-tab-icon svg {
    width: clamp(1.35rem, 6vw, 1.75rem);
    height: clamp(1.35rem, 6vw, 1.75rem);
  }

  .complaint-tabs button b {
    overflow-wrap: anywhere;
    font-size: clamp(1.08rem, 4.85vw, 1.5rem);
    line-height: 1.08;
  }

  .complaint-tabs button i {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .complaint-tabs button.is-active {
    background:
      radial-gradient(circle at 12% 50%, rgba(193, 127, 58, 0.3), transparent 38%),
      linear-gradient(90deg, rgba(103, 60, 33, 0.76), rgba(51, 27, 17, 0.56));
  }

  .complaints-cta {
    grid-row: 6;
    width: 100%;
    max-width: none;
    min-height: clamp(4.7rem, 20vw, 5.8rem);
    margin-top: clamp(1.05rem, 4.8vw, 1.65rem);
    padding-inline: clamp(1rem, 5vw, 1.8rem);
    font-size: clamp(1rem, 4.55vw, 1.34rem);
    line-height: 1.18;
    text-align: center;
  }
}

/* Sobre a Dra. Danielle no celular: retrato amplo e painel editorial sobreposto. */
@media (max-width: 900px) {
  .about-section {
    min-height: 0;
    padding: 0 0 clamp(3rem, 12vw, 4.8rem);
    background:
      radial-gradient(ellipse 85% 30% at 20% 24%, rgba(104, 62, 34, 0.2), transparent 74%),
      linear-gradient(175deg, #0b0604 0%, #180e09 56%, #0c0604 100%);
  }

  .about-layout {
    position: relative;
    display: grid;
    width: min(100%, 46rem);
    min-height: 0;
    margin-inline: auto;
    padding-top: clamp(3.5rem, 14.5vw, 4.25rem);
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .about-mobile-eyebrow {
    position: absolute;
    z-index: 4;
    top: clamp(0.65rem, 2.8vw, 0.95rem);
    right: var(--gutter);
    left: var(--gutter);
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: #d7a766;
    font-size: clamp(0.7rem, 3vw, 0.86rem);
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
  }

  .about-mobile-eyebrow > span {
    display: none;
  }

  .about-mobile-eyebrow::after {
    position: absolute;
    right: auto;
    bottom: clamp(-0.65rem, -2.4vw, -0.45rem);
    left: 50%;
    width: min(82%, 20rem);
    height: 1px;
    content: "";
    transform: translateX(-50%);
    background:
      radial-gradient(circle at 48% 50%, #fff2c9 0 1px, #e8ad5c 2px, transparent 5px),
      linear-gradient(90deg, rgba(204, 146, 75, 0.58), rgba(244, 199, 127, 0.72), rgba(204, 146, 75, 0.18));
    box-shadow: 0 0 0.7rem rgba(230, 164, 77, 0.24);
  }

  .about-media,
  .about-media.has-image {
    z-index: 0;
    width: calc(100% + var(--gutter) + var(--gutter));
    height: auto;
    margin: 0 calc(0px - var(--gutter));
    aspect-ratio: 0.92 / 1;
    border: 0;
    border-radius: 0;
    background-color: #120a06;
    background-position: center top;
    background-size: cover;
    box-shadow: none;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 91%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 91%, transparent 100%);
  }

  .about-media .portrait-label {
    display: none;
  }

  .about-copy {
    z-index: 2;
    position: relative;
    width: 100%;
    max-width: none;
    margin-top: clamp(-4.6rem, -12vw, -3.35rem);
    padding: clamp(1.4rem, 6.2vw, 2.35rem) clamp(1rem, 4.5vw, 1.85rem) clamp(1.2rem, 5.5vw, 2.1rem);
    border: 1px solid rgba(250, 204, 128, 0.9);
    border-radius: clamp(1.45rem, 6.5vw, 2.35rem);
    background:
      radial-gradient(circle at 18% 0%, rgba(185, 112, 53, 0.06), transparent 38%),
      linear-gradient(145deg, rgba(48, 26, 15, 0.14), rgba(9, 5, 3, 0.26) 72%);
    box-shadow:
      0 0 0 1px rgba(112, 61, 29, 0.7),
      0 0 0.45rem rgba(255, 214, 146, 0.62),
      0 0 1.1rem rgba(239, 170, 79, 0.48),
      0 0 2.4rem rgba(206, 116, 41, 0.24),
      0 1.8rem 4.5rem rgba(0, 0, 0, 0.36),
      inset 0 0 1.2rem rgba(232, 160, 72, 0.06),
      inset 0 1px rgba(255, 239, 207, 0.38);
    -webkit-backdrop-filter: blur(2px) saturate(1.04);
    backdrop-filter: blur(2px) saturate(1.04);
  }

  .about-copy::before {
    position: absolute;
    inset: -1px;
    border: 1px solid rgba(255, 221, 161, 0.52);
    border-radius: inherit;
    content: "";
    pointer-events: none;
    box-shadow:
      0 0 0.55rem rgba(255, 208, 126, 0.38),
      inset 0 0 0.55rem rgba(255, 209, 129, 0.1);
  }

  .about-copy.will-reveal {
    opacity: 1;
    transform: none;
  }

  .about-copy > .eyebrow {
    display: none;
  }

  .about-copy > .eyebrow > span {
    display: none;
  }

  .about-copy > .eyebrow::after {
    display: block;
    width: 100%;
    height: 1px;
    margin-top: clamp(0.55rem, 2.5vw, 0.82rem);
    content: "";
    background:
      radial-gradient(circle at 48% 50%, #fff2c9 0 1px, #e8ad5c 2px, transparent 5px),
      linear-gradient(90deg, rgba(204, 146, 75, 0.66), rgba(244, 199, 127, 0.72), rgba(204, 146, 75, 0.35));
    box-shadow: 0 0 0.7rem rgba(230, 164, 77, 0.3);
  }

  .about-copy h2 {
    max-width: 100%;
    margin: 0 0 clamp(1rem, 4.6vw, 1.5rem);
    color: #ebe2d6;
    font-size: clamp(2rem, 8.4vw, 3.7rem);
    letter-spacing: -0.045em;
    line-height: 0.98;
    text-wrap: balance;
  }

  .about-copy h2::after {
    display: block;
    width: clamp(3.2rem, 16vw, 5.2rem);
    height: 1px;
    margin-top: clamp(0.8rem, 3.6vw, 1.15rem);
    content: "";
    background: linear-gradient(90deg, #d99d4c, rgba(217, 157, 76, 0.1));
  }

  .about-copy h2 em {
    color: inherit;
  }

  .about-title-line {
    display: block;
    white-space: nowrap;
  }

  .about-copy > p:not(.eyebrow) {
    max-width: 39rem;
    margin-bottom: clamp(0.9rem, 4vw, 1.3rem);
    color: rgba(239, 232, 222, 0.92);
    font-size: clamp(0.84rem, 3.5vw, 1.02rem);
    line-height: 1.58;
    text-wrap: pretty;
  }

  .about-mobile-continuation {
    display: inline;
  }

  .about-copy blockquote {
    margin: clamp(1rem, 4.5vw, 1.45rem) 0 clamp(0.9rem, 4vw, 1.25rem);
    padding: clamp(0.85rem, 4vw, 1.2rem);
    border: 1px solid rgba(199, 140, 67, 0.5);
    border-radius: clamp(0.85rem, 4vw, 1.2rem);
    background: linear-gradient(115deg, rgba(76, 43, 24, 0.38), rgba(17, 8, 5, 0.35));
    grid-template-columns: auto 1fr;
    gap: clamp(0.75rem, 3.5vw, 1.2rem);
  }

  .about-copy blockquote > span {
    padding-right: clamp(0.7rem, 3vw, 1rem);
    border-right: 1px solid rgba(215, 160, 84, 0.58);
    font-size: clamp(3.1rem, 14vw, 4.25rem);
  }

  .about-copy blockquote p {
    color: #dca45a;
    font-size: clamp(1.18rem, 5.4vw, 1.65rem);
    line-height: 1.14;
  }

  .about-mobile-credentials {
    display: grid;
    margin: 0 0 clamp(0.9rem, 4.2vw, 1.3rem);
    gap: 0.1rem;
  }

  .about-mobile-credentials strong {
    color: #dda75f;
    font-family: var(--sans);
    font-size: clamp(1.05rem, 4.8vw, 1.35rem);
    font-weight: 600;
  }

  .about-mobile-credentials span,
  .about-mobile-credentials small {
    color: rgba(239, 232, 222, 0.88);
    font-size: clamp(0.78rem, 3.35vw, 0.96rem);
    line-height: 1.42;
  }

  .about-copy > .button {
    width: min(100%, 32rem);
    min-height: clamp(3.25rem, 13.5vw, 3.75rem);
    margin-inline: auto;
    padding: clamp(0.62rem, 2.8vw, 0.78rem) clamp(0.9rem, 4vw, 1.25rem);
    gap: clamp(0.55rem, 2.5vw, 0.78rem);
    border-radius: 0.48rem;
    font-family: var(--sans);
    font-size: clamp(0.92rem, 4vw, 1.08rem);
    font-weight: 600;
    line-height: 1.12;
    text-align: center;
    white-space: nowrap;
    box-shadow:
      0 0 0 1px rgba(70, 40, 22, 0.9),
      0 0 0 2px rgba(201, 157, 96, 0.52),
      0 0 1.2rem rgba(207, 145, 70, 0.24),
      inset 0 1px rgba(255, 225, 181, 0.6),
      inset 0 -1px rgba(92, 47, 22, 0.38);
  }

  .about-copy > .button::before {
    inset: 2px;
    border-radius: calc(0.48rem - 2px);
  }

  .about-mobile-button-icon {
    display: block;
    width: clamp(1.2rem, 5.4vw, 1.48rem);
    height: clamp(1.2rem, 5.4vw, 1.48rem);
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
  }

  .about-button-arrow {
    display: none;
  }
}

/* Experiências reais no celular: leitura vertical e carrossel editorial. */
@media (max-width: 900px) {
  .reviews-section {
    min-height: 0;
    padding: calc(var(--header-height) + clamp(1.2rem, 5.5vw, 2rem)) 0 clamp(4rem, 16vw, 6rem);
    background:
      linear-gradient(180deg, rgba(7, 3, 2, 0.24) 0%, rgba(10, 5, 3, 0.44) 42%, rgba(8, 4, 2, 0.72) 100%),
      url("./assets/images/12-reviews-background.png") 76% top / auto 62rem no-repeat,
      #0d0704;
  }

  .reviews-section::before {
    background:
      radial-gradient(ellipse 95% 32% at 10% 18%, rgba(80, 44, 25, 0.22), transparent 70%),
      linear-gradient(120deg, rgba(4, 2, 1, 0.24), transparent 50%, rgba(4, 2, 1, 0.16));
  }

  .reviews-section::after {
    right: -17rem;
    bottom: -10rem;
    width: 32rem;
    height: 32rem;
    border-color: rgba(218, 169, 106, 0.2);
  }

  .reviews-layout {
    display: block;
    width: min(100%, 46rem);
    min-height: 0;
    padding-inline: var(--gutter);
  }

  .reviews-intro {
    width: 100%;
  }

  .reviews-intro > .eyebrow {
    margin-bottom: clamp(0.9rem, 4vw, 1.35rem);
    font-size: clamp(0.62rem, 2.7vw, 0.74rem);
    letter-spacing: 0.27em;
  }

  .reviews-intro h2 {
    max-width: 100%;
    margin-bottom: clamp(1rem, 4.5vw, 1.45rem);
    color: #e8dfd3;
    font-size: clamp(2.75rem, 12vw, 4rem);
    letter-spacing: -0.045em;
    line-height: 0.94;
    text-wrap: balance;
  }

  .reviews-intro h2 em {
    display: inline;
    color: #d8b980;
  }

  .reviews-intro > p:not(.eyebrow):not(.public-note) {
    max-width: 38rem;
    margin-bottom: 0;
    color: rgba(230, 220, 207, 0.88);
    font-size: clamp(0.92rem, 3.8vw, 1.08rem);
    line-height: 1.62;
  }

  .reviews-meta {
    display: grid;
    margin: clamp(1.35rem, 6vw, 2rem) 0 clamp(1rem, 4.5vw, 1.5rem);
    align-items: stretch;
    gap: clamp(1rem, 4.2vw, 1.4rem);
  }

  .google-rating {
    display: grid;
    width: 100%;
    align-items: end;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: clamp(1.1rem, 5vw, 1.8rem);
  }

  .google-rating strong {
    grid-row: 1 / 3;
    color: #e0b970;
    font-size: clamp(5.1rem, 23vw, 7rem);
    line-height: 0.78;
  }

  .google-rating span {
    margin: 0 0 clamp(0.28rem, 1.4vw, 0.45rem);
    color: #d39a43;
    font-size: clamp(1.16rem, 5.6vw, 1.55rem);
    letter-spacing: 0.14em;
    line-height: 1;
  }

  .google-rating small {
    margin: 0;
    color: rgba(230, 220, 207, 0.82);
    font-size: clamp(0.9rem, 3.8vw, 1.05rem);
    line-height: 1.3;
  }

  .public-note {
    display: grid;
    max-width: 100%;
    margin: 0;
    padding: clamp(0.8rem, 3.6vw, 1.05rem) 0 0;
    align-items: center;
    border-top: 1px solid rgba(207, 155, 87, 0.3);
    border-left: 0;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(0.8rem, 3.8vw, 1.15rem);
    color: rgba(230, 220, 207, 0.82);
    font-size: clamp(0.78rem, 3.35vw, 0.94rem);
    line-height: 1.48;
  }

  .public-note-icon {
    display: grid;
    width: clamp(2.9rem, 13vw, 3.65rem);
    height: clamp(2.9rem, 13vw, 3.65rem);
    place-items: center;
    border: 1px solid rgba(218, 169, 106, 0.62);
    border-radius: 50%;
    color: #d39a43;
    background: rgba(24, 12, 7, 0.54);
  }

  .public-note-icon svg {
    width: 58%;
    height: 58%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
  }

  .reviews-intro > .button {
    width: 100%;
    min-height: clamp(3.9rem, 16.5vw, 4.55rem);
    margin-top: clamp(1.2rem, 5.2vw, 1.7rem);
    padding-inline: clamp(1rem, 4.5vw, 1.5rem);
    gap: 1rem;
    font-size: clamp(1.02rem, 4.5vw, 1.22rem);
    text-align: center;
  }

  .reviews-carousel {
    position: relative;
    width: 100%;
    margin-top: clamp(1.35rem, 6vw, 1.9rem);
    padding: clamp(0.85rem, 4vw, 1.15rem);
    overflow: hidden;
    border: 1px solid rgba(211, 159, 91, 0.68);
    border-radius: clamp(1.25rem, 6vw, 1.8rem);
    background:
      radial-gradient(circle at 18% 2%, rgba(130, 76, 40, 0.18), transparent 35%),
      linear-gradient(145deg, rgba(45, 24, 14, 0.82), rgba(12, 6, 4, 0.9));
    box-shadow: inset 0 1px rgba(255, 225, 181, 0.08), 0 1.8rem 4rem rgba(0, 0, 0, 0.28);
  }

  .reviews-carousel.will-reveal {
    transform: none;
  }

  .carousel-themes {
    min-height: clamp(6.45rem, 28vw, 7.5rem);
    padding: 0 0 clamp(0.65rem, 3vw, 0.85rem);
    border-bottom-color: rgba(218, 199, 163, 0.24);
    gap: clamp(0.15rem, 1vw, 0.35rem);
  }

  .carousel-themes span {
    min-width: 0;
    padding-inline: 0.1rem;
    font-size: clamp(0.55rem, 2.3vw, 0.68rem);
    line-height: 1.3;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .review-theme-short {
    display: none;
  }

  .review-theme-long {
    display: block;
    font-weight: 400;
  }

  .carousel-themes span::after {
    right: 8%;
    bottom: clamp(-0.85rem, -3vw, -0.65rem);
    left: 8%;
  }

  .carousel-themes i {
    width: clamp(2.55rem, 11.5vw, 3.15rem);
    height: clamp(2.55rem, 11.5vw, 3.15rem);
    margin-bottom: clamp(0.35rem, 1.7vw, 0.5rem);
  }

  .carousel-themes i svg {
    width: 54%;
    height: 54%;
  }

  .review-track {
    min-height: clamp(16.25rem, 68vw, 18rem);
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .review-track::before {
    right: -15rem;
    bottom: -13rem;
    width: 27rem;
    height: 27rem;
  }

  .review-slide {
    padding: clamp(0.9rem, 4.2vw, 1.2rem) clamp(0.1rem, 0.6vw, 0.25rem);
    align-content: start;
    align-items: start;
    grid-template-columns: clamp(3.15rem, 14vw, 3.9rem) minmax(0, 1fr);
    gap: clamp(0.65rem, 3vw, 0.9rem);
  }

  .quote-icon {
    display: grid;
    width: clamp(3rem, 13.5vw, 3.75rem);
    height: clamp(3rem, 13.5vw, 3.75rem);
    border-color: rgba(218, 169, 106, 0.12);
    color: #d49a42;
    font-size: clamp(2.9rem, 13vw, 3.7rem);
  }

  .slide-label {
    margin-bottom: clamp(0.58rem, 2.7vw, 0.8rem);
    font-size: clamp(0.61rem, 2.7vw, 0.72rem);
    line-height: 1.45;
  }

  .review-slide h3 {
    max-width: 100%;
    margin-bottom: clamp(0.72rem, 3.3vw, 0.95rem);
    color: #eee4d8;
    font-size: clamp(1.8rem, 8.4vw, 2.35rem);
    letter-spacing: -0.035em;
    line-height: 0.98;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .review-slide div > p:last-child {
    max-width: 100%;
    color: rgba(232, 221, 207, 0.9);
    font-size: clamp(0.88rem, 3.8vw, 1rem);
    line-height: 1.47;
  }

  .carousel-footer {
    display: grid;
    min-height: 0;
    padding: clamp(0.72rem, 3.3vw, 0.95rem) 0 0;
    border-top: 1px solid rgba(218, 199, 163, 0.24);
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "arrows dots"
      "summary summary"
      "google google";
    gap: clamp(0.65rem, 3vw, 0.9rem);
  }

  .carousel-arrows {
    grid-area: arrows;
  }

  .carousel-arrows button {
    width: clamp(2.4rem, 10.5vw, 2.8rem);
    height: clamp(2.4rem, 10.5vw, 2.8rem);
  }

  .carousel-dots {
    min-width: 0;
    justify-content: flex-end;
    grid-area: dots;
    gap: clamp(0.15rem, 1vw, 0.35rem);
  }

  .carousel-dots button {
    min-width: clamp(2.1rem, 9.5vw, 2.65rem);
    padding-inline: 0.15rem;
    font-size: clamp(0.65rem, 2.8vw, 0.75rem);
  }

  .review-summary {
    display: grid;
    padding-top: clamp(0.62rem, 2.8vw, 0.8rem);
    align-items: center;
    border-top: 1px solid rgba(218, 199, 163, 0.2);
    grid-area: summary;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(0.75rem, 3.4vw, 1rem);
  }

  .review-summary-icon {
    display: grid;
    width: clamp(2.5rem, 11vw, 3rem);
    height: clamp(2.5rem, 11vw, 3rem);
    place-items: center;
    border: 1px solid rgba(218, 169, 106, 0.62);
    border-radius: 50%;
    color: #d39a43;
  }

  .review-summary-icon svg {
    width: 58%;
    height: 58%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.35;
  }

  .review-summary > span:last-child {
    display: grid;
    gap: 0.2rem;
  }

  .review-summary strong {
    color: #d8a253;
    font-family: var(--serif);
    font-size: clamp(0.88rem, 3.9vw, 1.02rem);
    font-weight: 400;
    line-height: 1.2;
  }

  .review-summary small {
    color: rgba(230, 220, 207, 0.72);
    font-size: clamp(0.69rem, 3vw, 0.82rem);
    line-height: 1.35;
  }

  .google-link {
    width: 100%;
    min-height: clamp(2.9rem, 12.5vw, 3.35rem);
    display: inline-flex;
    padding: 0.7rem 1rem;
    align-items: center;
    justify-content: center;
    border-color: rgba(211, 159, 91, 0.72);
    border-radius: 0.65rem;
    grid-area: google;
    color: #d7a15a;
    font-size: clamp(0.84rem, 3.7vw, 0.98rem);
    text-align: center;
    white-space: normal;
  }
}

/* Localizações no celular: retrato amplo e painel inspirado na composição aprovada. */
@media (max-width: 900px) {
  .locations-section {
    min-height: 0;
    padding: 0 0 clamp(2.5rem, 10vw, 4rem);
    background:
      linear-gradient(180deg, rgba(9, 4, 2, 0.08) 0%, rgba(9, 4, 2, 0.18) 46%, rgba(8, 4, 2, 0.82) 100%),
      url("./assets/images/13-localizacoes-background-mobile.png") center top / cover no-repeat,
      #130a06;
  }

  .locations-section::before {
    z-index: 0;
    inset: 0;
    background:
      radial-gradient(ellipse 88% 36% at 48% 24%, rgba(185, 112, 53, 0.1), transparent 74%),
      linear-gradient(180deg, transparent 52%, rgba(8, 4, 2, 0.46) 76%, rgba(7, 3, 2, 0.82) 100%);
    opacity: 1;
    mix-blend-mode: normal;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .locations-section::after {
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 24rem;
    background: linear-gradient(180deg, transparent, rgba(7, 3, 2, 0.72));
    -webkit-mask-image: none;
    mask-image: none;
  }

  .locations-layout {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    min-height: 0;
    padding-inline: 0;
  }

  .locations-media {
    position: relative;
    z-index: 1;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    margin: 0;
    aspect-ratio: 0.88 / 1;
    background-image: var(--slot-image);
    background-position: center bottom;
    background-size: min(105vw, 42rem) auto;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 91%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 91%, transparent 100%);
  }

  .locations-copy {
    position: relative;
    z-index: 3;
    width: calc(100% - clamp(1.5rem, 7vw, 2.25rem));
    margin: clamp(-4.8rem, -14vw, -3.4rem) auto 0;
    padding: clamp(1.25rem, 5.5vw, 1.7rem) clamp(0.85rem, 4vw, 1.25rem) clamp(1rem, 4.6vw, 1.4rem);
    border: 1px solid rgba(223, 166, 91, 0.72);
    border-radius: clamp(1.25rem, 5.8vw, 1.8rem);
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 0%, rgba(195, 126, 70, 0.11), transparent 40%),
      linear-gradient(155deg, rgba(58, 32, 20, 0.62), rgba(14, 7, 4, 0.74));
    box-shadow:
      inset 0 1px rgba(255, 229, 187, 0.12),
      0 1.8rem 4rem rgba(0, 0, 0, 0.42);
    -webkit-backdrop-filter: blur(6px) saturate(1.08);
    backdrop-filter: blur(6px) saturate(1.08);
  }

  .locations-copy.will-reveal {
    transform: none;
  }

  .locations-copy > .eyebrow {
    justify-content: center;
    margin-bottom: clamp(0.8rem, 3.6vw, 1.05rem);
    color: #d7a766;
    font-size: clamp(0.65rem, 2.9vw, 0.78rem);
    letter-spacing: 0.22em;
    text-align: center;
  }

  .locations-copy > .eyebrow span {
    display: none;
  }

  .locations-copy > .eyebrow::after {
    display: block;
    position: absolute;
    top: clamp(2.65rem, 11vw, 3.25rem);
    left: 50%;
    width: clamp(4rem, 20vw, 6rem);
    height: 1px;
    content: "";
    transform: translateX(-50%);
    background:
      radial-gradient(circle at 50% 50%, #fff2c9 0 1px, #e8ad5c 2px, transparent 5px),
      linear-gradient(90deg, rgba(204, 146, 75, 0.1), #e8ad5c, rgba(204, 146, 75, 0.1));
    box-shadow: 0 0 0.75rem rgba(230, 164, 77, 0.32);
  }

  .locations-copy h2 {
    max-width: 100%;
    margin: clamp(1.35rem, 5.8vw, 1.75rem) auto clamp(1.05rem, 4.5vw, 1.35rem);
    color: #eadfce;
    font-size: clamp(2.25rem, 10.2vw, 3.3rem);
    letter-spacing: -0.045em;
    line-height: 0.92;
    text-align: center;
    text-wrap: balance;
  }

  .locations-copy h2 em {
    color: #d9a25d;
    font-style: normal;
  }

  .locations-copy > p:not(.eyebrow):not(.agenda-note) {
    display: none;
  }

  .location-cards {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
    gap: clamp(0.45rem, 2.2vw, 0.7rem);
  }

  .location-cards article {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: clamp(5.6rem, 23vw, 6.55rem);
    padding: clamp(0.72rem, 3.2vw, 0.95rem) clamp(0.45rem, 2.1vw, 0.7rem);
    place-items: center;
    border-color: rgba(205, 145, 71, 0.58);
    border-radius: clamp(0.8rem, 3.8vw, 1.1rem);
    background:
      radial-gradient(circle at 50% 0%, rgba(167, 100, 52, 0.12), transparent 55%),
      linear-gradient(145deg, rgba(55, 31, 19, 0.5), rgba(19, 9, 5, 0.58));
    grid-template-columns: minmax(0, 1fr);
  }

  .location-cards article:has(a:focus-visible) {
    outline: 2px solid #edbb78;
    outline-offset: 2px;
  }

  .city-icon {
    display: none;
  }

  .city-icon svg {
    display: none;
  }

  .location-cards h3 {
    min-width: 0;
    margin: 0;
    color: #dca65d;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: clamp(0.18rem, 0.8vw, 0.28rem);
    font-size: clamp(1.22rem, 5.25vw, 1.48rem);
    letter-spacing: -0.025em;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .location-cards h3 small {
    color: #c99858;
    font-size: 0.62em;
    letter-spacing: 0.055em;
  }

  .location-cards p {
    display: none;
  }

  .location-cards a {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: inherit;
    font-size: 0;
  }

  .location-cards a span {
    display: none;
  }

  .agenda-note {
    max-width: 19rem;
    margin: clamp(1.15rem, 5vw, 1.55rem) auto clamp(1rem, 4.5vw, 1.3rem);
    color: rgba(230, 218, 202, 0.86);
    font-size: clamp(0.78rem, 3.4vw, 0.93rem);
    line-height: 1.48;
    text-align: center;
  }

  .location-main-cta {
    width: 100%;
    min-height: clamp(3.15rem, 13vw, 3.55rem);
    padding: 0.65rem clamp(2.75rem, 12vw, 3.45rem) 0.65rem clamp(1rem, 4.5vw, 1.4rem);
    border-radius: 0.55rem;
    font-size: clamp(0.96rem, 4.25vw, 1.13rem);
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
    box-shadow:
      0 0 0 1px rgba(70, 40, 22, 0.88),
      0 0 0 2px rgba(201, 157, 96, 0.5),
      0 0 1.15rem rgba(207, 145, 70, 0.22),
      inset 0 1px rgba(255, 225, 181, 0.58),
      inset 0 -1px rgba(92, 47, 22, 0.36);
  }

  .location-main-cta::before {
    inset: 2px;
    border-radius: calc(0.55rem - 2px);
  }

  .location-main-cta::after {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: clamp(1rem, 4.5vw, 1.35rem);
    content: "→";
    transform: translateY(-52%);
    font-family: var(--sans);
    font-size: 1.05em;
    font-weight: 400;
  }

  .location-whatsapp-icon {
    display: none;
  }
}

@media (max-width: 370px) {
  .location-cards h3 {
    gap: 0.18rem;
    font-size: clamp(1.08rem, 5.35vw, 1.24rem);
    line-height: 1;
  }

  .location-cards h3 small {
    font-size: 0.6em;
  }

  .complaints-copy > h2 {
    font-size: clamp(2.18rem, 11.1vw, 2.65rem);
  }

  .complaint-text h3 {
    font-size: clamp(1.75rem, 8.8vw, 2.15rem);
  }

  .complaint-text > span {
    font-size: clamp(0.65rem, 2.95vw, 0.75rem);
    line-height: 1.42;
  }
}

@media (max-width: 370px) {
  .pillar-card {
    flex-basis: 93%;
    padding: 1.12rem;
  }

  .pillar-symbol {
    width: 2.85rem;
    height: 2.85rem;
    margin-bottom: 0.8rem;
  }

  .pillar-card h3 {
    margin-bottom: 0.6rem;
    padding-bottom: 0.65rem;
    font-size: 1.3rem;
  }

  .pillar-card p {
    font-size: 0.75rem;
    line-height: 1.44;
  }
}

@media (min-width: 640px) and (max-width: 900px) {
  .pillar-card {
    flex-basis: calc(50% - 0.55rem);
  }
}

@media (min-aspect-ratio: 2 / 1) {
  .site-shell {
    width: min(86vw, var(--site-width));
  }

  .media-slot-hero,
  .program-media {
    margin-right: 0;
  }

  .hero-layout {
    width: min(96vw, 120rem);
  }

  .locations-layout {
    width: min(94vw, 112rem);
    grid-template-columns: minmax(0, 40%) minmax(0, 60%);
    gap: clamp(2rem, 3vw, 4rem);
  }

  .locations-media {
    background-position: clamp(2.5rem, 4vw, 5rem) bottom;
  }

  .locations-copy {
    max-width: 52rem;
  }
}

@media (max-aspect-ratio: 16 / 10) and (min-width: 1024px) {
  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(3rem, 3.45vw, 4.45rem);
  }

  .media-slot-hero {
    margin-bottom: -2.4rem;
  }
}

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

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

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


/* Rodapé mobile: conteúdo centralizado, legível e sem textos encostados nas laterais. */
@media (max-width: 900px) {
  .site-footer {
    position: relative;
    z-index: 3;
  }

  .footer-layout {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: center;
    gap: 1.05rem;
    padding-top: 1.6rem;
    padding-bottom: 1.45rem;
    text-align: center;
  }

  .site-footer .footer-brand {
    display: inline-flex;
    width: auto;
    justify-content: center;
    justify-self: center;
  }

  .site-footer .brand-mark {
    display: grid;
    width: 2.35rem;
    height: 2.35rem;
    font-size: 0.72rem;
  }

  .site-footer .brand-copy {
    display: grid;
    text-align: left;
  }

  .site-footer .brand-copy strong {
    font-size: 0.92rem;
  }

  .site-footer .brand-copy small {
    font-size: 0.48rem;
    letter-spacing: 0.15em;
  }

  .instagram-link {
    width: fit-content;
    max-width: 100%;
    min-height: 2.65rem;
    margin-inline: auto;
    padding: 0.7rem 0.55rem 0.55rem;
    font-size: clamp(0.7rem, 3.2vw, 0.82rem);
    white-space: nowrap;
  }

  .footer-meta {
    width: min(100%, 24rem);
    justify-items: center;
    justify-self: auto;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(176, 143, 93, 0.2);
    text-align: center;
  }

  .site-footer p {
    font-size: clamp(0.61rem, 2.7vw, 0.69rem);
    line-height: 1.55;
    text-align: center;
  }

  .site-credit {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
  }

  .site-credit a {
    font-size: clamp(0.72rem, 3vw, 0.8rem);
    white-space: nowrap;
  }
}

@media (max-width: 320px) {
  .instagram-link {
    gap: 0.35rem;
    padding-inline: 0.2rem;
    font-size: 0.62rem;
    letter-spacing: -0.012em;
  }

  .site-footer .brand-copy strong {
    font-size: 0.86rem;
  }
}

/* Última seção mobile: composição própria inspirada na referência enviada.
   A versão desktop acima permanece sem alterações. */
@media (max-width: 900px) {
  .final-section {
    min-height: max(100svh, 51rem);
    padding: 0;
    isolation: isolate;
    background: #120906;
  }

  .final-section::before {
    z-index: 0;
    inset: 0;
    opacity: 1;
    transform: none;
    background:
      linear-gradient(180deg, rgba(14, 7, 4, 0.04) 0%, rgba(14, 7, 4, 0.02) 48%, rgba(8, 4, 2, 0.3) 100%),
      url("./assets/images/14-chamada-final-background-mobile.png") center center / cover no-repeat;
  }

  .final-section::after {
    display: none;
  }

  .final-layout {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    min-height: max(100svh, 51rem);
    padding: 0;
  }

  .final-media,
  .final-media.has-image {
    position: absolute;
    z-index: 1;
    top: clamp(0.35rem, 2vw, 0.9rem);
    left: 50%;
    width: min(112vw, 34rem);
    height: min(116vw, 35rem);
    margin: 0;
    overflow: visible;
    transform: translateX(-50%);
    border: 0;
    border-radius: 0;
    background-color: transparent;
    background-image: var(--slot-image);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    box-shadow: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .final-copy {
    position: absolute;
    z-index: 3;
    right: var(--gutter);
    bottom: clamp(5.4rem, 17vw, 6.2rem);
    left: var(--gutter);
    max-width: none;
    padding: clamp(1.15rem, 4.8vw, 1.55rem);
    overflow: hidden;
    border: 1px solid rgba(224, 174, 105, 0.88);
    border-radius: clamp(1.35rem, 6vw, 2rem);
    background:
      radial-gradient(circle at 92% 8%, rgba(230, 177, 104, 0.11), transparent 27%),
      linear-gradient(145deg, rgba(49, 28, 17, 0.9), rgba(13, 7, 4, 0.94));
    box-shadow:
      0 1.5rem 3.6rem rgba(0, 0, 0, 0.36),
      inset 0 0 0 1px rgba(255, 226, 182, 0.08),
      inset 0 1px rgba(255, 235, 203, 0.13),
      0 0 1.3rem rgba(211, 145, 67, 0.12);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .final-copy::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
      linear-gradient(115deg, transparent 0 68%, rgba(232, 171, 91, 0.08) 76%, transparent 84%),
      radial-gradient(circle at 100% 52%, rgba(229, 164, 79, 0.09), transparent 29%);
  }

  .final-copy .eyebrow {
    margin-bottom: clamp(0.85rem, 3.6vw, 1.1rem);
    align-items: center;
    gap: 0.7rem;
    color: #e3b473;
    font-size: clamp(0.66rem, 2.9vw, 0.78rem);
    letter-spacing: 0.28em;
    line-height: 1;
    text-transform: uppercase;
  }

  .final-copy .eyebrow > span {
    width: clamp(2.5rem, 12vw, 3.7rem);
    height: 1px;
    background: linear-gradient(90deg, #e9bb79, rgba(233, 187, 121, 0.35));
    box-shadow: 0 0 0.45rem rgba(227, 162, 76, 0.32);
  }

  .final-copy h2 {
    max-width: 100%;
    margin: 0 0 clamp(0.85rem, 3.8vw, 1.15rem);
    color: #ead7bb;
    font-size: clamp(2.2rem, 10.1vw, 3rem);
    letter-spacing: -0.042em;
    line-height: 0.92;
    text-wrap: balance;
  }

  .final-copy h2 em {
    display: inline;
    color: inherit;
    font-style: normal;
  }

  .final-copy > p:not(.eyebrow) {
    max-width: none;
    margin: 0 0 clamp(1rem, 4.2vw, 1.35rem);
    color: rgba(246, 237, 225, 0.92);
    font-size: clamp(0.82rem, 3.55vw, 0.98rem);
    line-height: 1.52;
  }

  .final-copy .button-large {
    width: 100%;
    min-height: clamp(3.25rem, 13.8vw, 3.8rem);
    padding: 0.72rem 1rem;
    border: 1px solid rgba(255, 224, 174, 0.92);
    border-radius: clamp(0.78rem, 3.6vw, 1rem);
    background:
      linear-gradient(106deg, #d29a5a 0%, #efc68b 28%, #dba768 56%, #efc68b 78%, #c88948 100%);
    box-shadow:
      0 0 0 2px rgba(119, 69, 31, 0.9),
      0 0 0 3px rgba(231, 179, 105, 0.55),
      0 0 1.1rem rgba(238, 175, 87, 0.34),
      inset 0 1px rgba(255, 244, 222, 0.68),
      inset 0 -1px rgba(104, 55, 25, 0.32);
    color: #29170d;
    font-family: var(--serif);
    font-size: clamp(1.02rem, 4.55vw, 1.25rem);
    font-weight: 500;
    line-height: 1.08;
    text-align: center;
  }

  .final-copy .button-large::before {
    inset: 3px;
    border: 1px solid rgba(102, 57, 27, 0.4);
    border-radius: calc(clamp(0.78rem, 3.6vw, 1rem) - 3px);
  }

  .final-copy .button-large span {
    display: none;
  }

  .final-chat-invite {
    left: 0.9rem;
    right: auto;
    top: auto;
    bottom: 0.9rem;
    gap: 0.55rem;
    max-width: min(calc(100% - 1.8rem), 21rem);
    align-items: center;
  }

  .final-chat-avatar-wrap {
    width: 3.15rem;
    height: 3.15rem;
  }

  .final-chat-status {
    width: 0.82rem;
    height: 0.82rem;
    right: 0.02rem;
    bottom: 0.02rem;
  }

  .final-chat-bubble {
    min-height: 3rem;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    line-height: 1.15;
    border-radius: 0.9rem;
  }

  .final-chat-bubble::before {
    left: -0.38rem;
    bottom: 0.82rem;
    width: 0.9rem;
    height: 0.9rem;
  }
}

@media (max-width: 370px) {
  .final-section,
  .final-layout {
    min-height: max(100svh, 52rem);
  }

  .final-copy {
    right: 0.85rem;
    left: 0.85rem;
    padding: 1.05rem;
  }

  .final-copy h2 {
    font-size: clamp(2.02rem, 10.2vw, 2.35rem);
  }

  .final-copy > p:not(.eyebrow) {
    font-size: 0.78rem;
  }
}

/* Programa ReNova Face — acabamento do painel visual no desktop.
   O celular mantém exatamente a composição já aprovada. */
@media (min-width: 901px) {
  .program-media {
    margin-top: 1.35rem;
    margin-right: calc(var(--gutter) * -0.55);
    margin-bottom: -1.15rem;
    margin-left: -2.2rem;
    padding: clamp(0.55rem, 0.8vw, 0.95rem);
  }

  .program-media::before {
    z-index: -1;
    inset: 1.5% -1.5% -1% 2%;
    border: 1px solid rgba(210, 145, 72, 0.16);
    border-radius: 49% 49% 2.9rem 2.9rem / 16% 16% 2.9rem 2.9rem;
    background:
      radial-gradient(ellipse at 52% 43%, rgba(128, 68, 30, 0.42), rgba(67, 31, 15, 0.2) 50%, transparent 76%);
    box-shadow:
      0 0 4.5rem rgba(202, 125, 53, 0.13),
      inset 0 0 3.8rem rgba(224, 150, 67, 0.05);
    filter: blur(0.35rem);
  }

  .program-visual.has-image {
    inset: clamp(0.65rem, 1vw, 1.15rem) clamp(0.3rem, 0.65vw, 0.8rem) clamp(0.75rem, 1.1vw, 1.25rem) clamp(0.45rem, 0.8vw, 0.95rem);
    overflow: hidden;
    border: 1px solid rgba(224, 166, 91, 0.34);
    border-radius: 49% 49% 2.7rem 2.7rem / 16% 16% 2.7rem 2.7rem;
    background-color: rgba(24, 12, 7, 0.48);
    background-position: center center;
    background-size: contain;
    box-shadow:
      0 1.8rem 4.8rem rgba(0, 0, 0, 0.3),
      0 0 2.5rem rgba(211, 132, 54, 0.1),
      inset 0 0 0 1px rgba(255, 220, 174, 0.035);
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, #000 5.5%, #000 100%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, #000 5.5%, #000 100%);
  }

  .program-visual.has-image::before {
    position: absolute;
    z-index: 2;
    inset: 0;
    border-radius: inherit;
    content: "";
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(16, 8, 5, 0.42) 0%, transparent 10%, transparent 90%, rgba(15, 7, 4, 0.08) 100%),
      linear-gradient(180deg, rgba(255, 212, 151, 0.025), transparent 18%, transparent 82%, rgba(9, 4, 2, 0.16));
  }

  .program-visual.has-image::after {
    position: absolute;
    z-index: 3;
    inset: 0.28rem;
    border: 1px solid rgba(245, 200, 135, 0.08);
    border-radius: inherit;
    content: "";
    pointer-events: none;
  }
}
