:root {
  --black: #030303;
  --black-2: #080604;
  --black-3: #120b05;
  --gold: #d6a246;
  --gold-2: #b77c25;
  --gold-light: #ffe4a3;
  --white: #fff8ef;
  --muted: rgba(255, 248, 239, .74);
  --line: rgba(255, 216, 138, .18);
  --glass: rgba(255, 255, 255, .055);
  --container: min(1180px, calc(100% - 48px));
  --radius: 30px;
  --shadow: 0 34px 95px rgba(0, 0, 0, .55);
  --nav-h: 82px;
  --font-base: "Garet", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-script: "Great Vibes", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(214, 162, 70, .16), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(255, 228, 163, .11), transparent 28%),
    linear-gradient(180deg, var(--black) 0%, var(--black-2) 48%, var(--black-3) 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255, 255, 255, .024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: .18;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 228, 163, .18) 50%, transparent 58% 100%);
  transform: translateX(-35%);
  animation: premiumSweep 12s ease-in-out infinite;
}

@keyframes premiumSweep {
  0%, 100% { transform: translateX(-42%); opacity: .06; }
  45%, 58% { transform: translateX(42%); opacity: .18; }
}

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

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

button,

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

h1,
h2,
h3,

p {
  margin: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(3, 3, 3, .86);
  border-bottom: 1px solid rgba(255, 216, 138, .15);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .30);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.topbar.scrolled {
  background: rgba(3, 3, 3, .95);
  border-color: rgba(255, 216, 138, .22);
  box-shadow: 0 22px 65px rgba(0, 0, 0, .48);
}

.nav {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(188px, 15vw, 280px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(214, 162, 70, .20));
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255, 248, 239, .76);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-center a {
  position: relative;
  padding: 10px 0;
  transition: color .24s ease;
}

.nav-center a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), transparent);
  transition: width .25s ease;
}

.nav-center a:hover,

.nav-center a.active {
  color: var(--gold-light);
}

.nav-center a:hover::after,

.nav-center a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-pill,

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 216, 138, .42);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(0, 0, 0, .35);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.nav-pill:hover,

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  box-shadow: 0 22px 55px rgba(214, 162, 70, .22);
}

.btn-gold,

.nav-pill-gold {
  color: #120b04;
  border-color: rgba(255, 255, 255, .28);
  background: linear-gradient(135deg, #fff1bd, #d6a246 58%, #fff0b8);
  box-shadow: 0 22px 55px rgba(214, 162, 70, .24);
}

.btn-ghost {
  background: rgba(0, 0, 0, .24);
  backdrop-filter: blur(10px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 216, 138, .28);
  border-radius: 50%;
  background: rgba(0, 0, 0, .35);
  color: var(--gold-light);
  font-size: 23px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 216, 138, .14);
  background: #030303;
}

.hero-bg,
.hero-bg img,

.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
  filter: saturate(1.06) contrast(1.05);
  transform: scale(1.035);
  animation: heroBreath 12s ease-in-out infinite alternate;
}

@keyframes heroBreath {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, 0, 0); }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, .97) 0%, rgba(3, 3, 3, .92) 34%, rgba(3, 3, 3, .58) 56%, rgba(3, 3, 3, .14) 78%, rgba(3, 3, 3, .40) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, .34) 0%, transparent 42%, rgba(3, 3, 3, .62) 100%);
}

.hero-glow {
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at 24% 36%, rgba(214, 162, 70, .20), transparent 34%),
    radial-gradient(circle at 68% 18%, rgba(255, 228, 163, .10), transparent 24%);
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: clamp(86px, 9vw, 128px) 0 clamp(48px, 6vw, 76px);
}

.hero-copy {
  max-width: 690px;
  position: relative;
  z-index: 3;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .23em;
}

.kicker::before {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.hero-title-premium {
  max-width: 760px;
  font-family: var(--font-base);
  font-size: clamp(58px, 7.3vw, 114px);
  line-height: .91;
  letter-spacing: -.055em;
  text-transform: uppercase;
  margin: 0;
}

.hero-title-premium span {
  display: block;
  white-space: nowrap;
}

.hero-title-premium .gold {
  color: transparent;
  background: linear-gradient(100deg, #fff4c8 0%, #d6a246 48%, #fff1bc 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-title-premium span:not(.gold) {
  color: var(--white);
  text-shadow: 0 18px 46px rgba(0, 0, 0, .58);
}

.hero-line {
  width: min(450px, 70vw);
  height: 1px;
  margin: 30px 0 24px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), transparent);
}

.hero p {
  max-width: 560px;
  color: rgba(255, 248, 239, .84);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 38px;
}

.feature-mini {
  min-height: 118px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 18px 14px;
  border: 1px solid rgba(255, 216, 138, .16);
  border-radius: 24px;
  background: rgba(0, 0, 0, .34);
  backdrop-filter: blur(8px);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.feature-mini::before {
  content: "";
  position: absolute;
  inset: -80% -70%;
  background: radial-gradient(circle, rgba(255, 228, 163, .22), transparent 55%);
  opacity: 0;
  transition: opacity .35s ease;
}

.feature-mini:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 216, 138, .38);
  background: rgba(255, 255, 255, .06);
}

.feature-mini:hover::before {
  opacity: 1;
}

.feature-mini .ico {
  color: var(--gold-light);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
}

.feature-mini strong {
  display: block;
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  width: 34px;
  height: 54px;
  border: 1px solid rgba(255, 216, 138, .36);
  border-radius: 999px;
  transform: translateX(-50%);
  display: grid;
  place-items: start center;
  padding-top: 10px;
  opacity: .78;
}

.scroll-cue span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0% { transform: translateY(0); opacity: 0; }
  28% { opacity: 1; }
  100% { transform: translateY(22px); opacity: 0; }
}

section.content-section {
  position: relative;
  padding: clamp(76px, 8vw, 112px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: .82fr 1fr;
  align-items: end;
  gap: 42px;
  margin-bottom: clamp(30px, 4vw, 50px);
}

.section-title {
  font-family: var(--font-base);
  font-size: clamp(34px, 4.2vw, 67px);
  line-height: .98;
  letter-spacing: -.045em;
}

.section-text {
  max-width: 790px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.86;
}

.premium-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 216, 138, .15);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .078), rgba(255, 255, 255, .026));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background: linear-gradient(140deg, rgba(255, 255, 255, .10), transparent 24%, transparent 68%, rgba(255, 228, 163, .08));
}

.story-section {
  overflow: hidden;
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 10%, rgba(214, 162, 70, .13), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, .016), transparent 42%);
}

.story-roadmap {
  position: relative;
}

.story-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: stretch;
  gap: clamp(24px, 4vw, 54px);
  min-height: 430px;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.story-banner-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.story-banner-copy .section-title {
  max-width: 720px;
  margin-bottom: 22px;
}

.story-banner-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 216, 138, .18);
  border-radius: 30px;
  background: #050403;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .42);
}

.story-banner-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.02);
}

.story-banner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, .82));
}

.story-photo-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 22px;
  border: 1px solid rgba(255, 216, 138, .20);
  border-radius: 22px;
  background: rgba(0, 0, 0, .50);
  backdrop-filter: blur(14px);
}

.story-photo-caption b,

.slide-caption b {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.story-photo-caption span {
  color: rgba(255, 248, 239, .78);
  line-height: 1.62;
}

.story-timeline {
  position: relative;
  display: grid;
  gap: clamp(24px, 4.5vw, 54px);
  margin-top: clamp(34px, 5vw, 72px);
  padding: clamp(28px, 4vw, 56px) 0 10px;
}

.story-progress {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  overflow: hidden;
  transform: translateX(-50%);
}

.story-progress-line,

.story-progress-fill {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 999px;
}

.story-progress-line {
  background: rgba(255, 216, 138, .16);
}

.story-progress-fill {
  height: 0%;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), transparent);
  box-shadow: 0 0 28px rgba(214, 162, 70, .36);
  transition: height .35s ease;
}

.story-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
  column-gap: clamp(22px, 5vw, 86px);
  align-items: center;
  min-height: 220px;
}

.story-step-right {
  margin-top: clamp(8px, 2.4vw, 32px);
}

.story-card {
  min-height: 220px;
  padding: clamp(26px, 4vw, 42px);
  transform-origin: center;
  transition: transform .45s ease, border-color .45s ease, background .45s ease, box-shadow .45s ease;
}

.story-step-left .story-card {
  grid-column: 1;
}

.story-step-right .story-card {
  grid-column: 3;
}

.story-step.is-active .story-card {
  transform: translateY(-4px) scale(1.012);
  border-color: rgba(255, 216, 138, .44);
  background: linear-gradient(180deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .035));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .38), 0 0 45px rgba(214, 162, 70, .08);
}

.story-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 216, 138, .55);
  background: #060403;
  box-shadow: 0 0 0 7px rgba(214, 162, 70, .08);
  transform: translate(-50%, -50%);
  transition: background .35s ease, transform .35s ease, box-shadow .35s ease;
}

.story-step.is-active .story-dot {
  background: var(--gold-light);
  transform: translate(-50%, -50%) scale(1.18);
  box-shadow: 0 0 0 8px rgba(214, 162, 70, .12), 0 0 30px rgba(255, 228, 163, .45);
}

.story-card small {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.story-card h3 {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(25px, 2.8vw, 42px);
  line-height: 1.04;
  letter-spacing: -.025em;
}

.story-card p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.78;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 26px);
}

.service-card {
  min-height: 306px;
  padding: 30px;
  transition: transform .34s ease, border-color .34s ease, background .34s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -44% -55% -44%;
  height: 210px;
  background: radial-gradient(circle, rgba(214, 162, 70, .25), transparent 68%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 216, 138, .42);
  background: linear-gradient(180deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .026));
}

.service-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 216, 138, .22);
  border-radius: 18px;
  color: var(--gold-light);
  background: rgba(214, 162, 70, .11);
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
  line-height: 1.13;
}

.service-card p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.service-card a {
  position: relative;
  z-index: 2;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.rhythm-section::before {
  content: "";
  position: absolute;
  inset: 10% 0 auto;
  height: 70%;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(214, 162, 70, .12), transparent 52%);
}

.rhythms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 216, 138, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
}

.rhythms span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 216, 138, .15);
  border-radius: 999px;
  color: rgba(255, 248, 239, .84);
  background: rgba(0, 0, 0, .22);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, border-color .25s ease, color .25s ease;
}

.rhythms span:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 216, 138, .44);
  color: var(--gold-light);
}

.rhythm-photo-card {
  width: min(100%, 980px);
  margin: clamp(24px, 4vw, 46px) auto 0;
  overflow: hidden;
  border-radius: clamp(26px, 3vw, 42px);
  box-shadow: var(--shadow);
}

.rhythm-photo-card img {
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.015);
}

.rhythm-photo-card figcaption {
  position: absolute;
  left: clamp(16px, 3vw, 34px);
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 2;
  padding: clamp(16px, 2.6vw, 28px);
  border: 1px solid rgba(255, 216, 138, .22);
  border-radius: 24px;
  background: rgba(3, 3, 3, .50);
  backdrop-filter: blur(14px);
}

.rhythm-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, .82));
}

.rhythm-photo-card figcaption span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.rhythm-photo-card figcaption strong {
  display: block;
  max-width: 760px;
  color: var(--white);
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

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

.feedback-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.stars {
  margin-bottom: 18px;
  color: var(--gold-light);
  letter-spacing: .16em;
}

.feedback-card p {
  color: rgba(255, 248, 239, .83);
  font-size: 15px;
  line-height: 1.78;
}

.feedback-author {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 216, 138, .14);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.structure-section {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 8vw, 118px) 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(214, 162, 70, .12), transparent 32%),
    radial-gradient(circle at 82% 82%, rgba(255, 228, 163, .08), transparent 30%),
    #030303;
  border-block: 1px solid rgba(255, 216, 138, .14);
}

.gallery-shell {
  position: relative;
  width: min(calc(100% - 48px), 1920px);
  max-width: 1320px;
  aspect-ratio: 1920 / 1080;
  height: auto;
  min-height: 0;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 216, 138, .22);
  border-radius: clamp(24px, 3vw, 42px);
  background: #030303;
  box-shadow: 0 34px 95px rgba(0, 0, 0, .48);
}

.gallery-track {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform .85s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.structure-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
  background: #030303;
}

.structure-slide img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 1.2s cubic-bezier(.22, 1, .36, 1);
}

.structure-slide.is-active img {
  transform: scale(1.01);
}

.structure-slide::after,

.structure-slide.logo-slide::after {
  content: none;
}

.structure-slide.logo-slide {
  background: #050508;
}

.structure-slide.logo-slide img {
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: transparent;
}

.slide-caption {
  position: absolute;
  left: clamp(18px, 4vw, 54px);
  bottom: clamp(18px, 4vw, 54px);
  z-index: 3;
  width: min(440px, calc(100% - 36px));
  padding: clamp(16px, 2.4vw, 28px);
  border: 1px solid rgba(255, 216, 138, .26);
  border-radius: 24px;
  background: rgba(3, 3, 3, .34);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .24);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: transform .8s ease .18s, opacity .8s ease .18s, background .3s ease;
}

.structure-slide.is-active .slide-caption {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.slide-caption h3 {
  margin: 8px 0 8px;
  font-size: clamp(26px, 3.1vw, 48px);
  line-height: .98;
  letter-spacing: -.035em;
}

.slide-caption p {
  color: rgba(255, 248, 239, .86);
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.62;
}

.gallery-label {
  position: absolute;
  top: clamp(16px, 3vw, 34px);
  left: clamp(16px, 3vw, 34px);
  z-index: 5;
  display: grid;
  gap: 4px;
  padding: 13px 17px;
  border: 1px solid rgba(255, 216, 138, .18);
  border-radius: 999px;
  background: rgba(3, 3, 3, .26);
  backdrop-filter: blur(12px);
}

.gallery-label span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.gallery-label strong {
  font-size: 12px;
  letter-spacing: .04em;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: clamp(44px, 4vw, 56px);
  height: clamp(44px, 4vw, 56px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 216, 138, .30);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(3, 3, 3, .30);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 30px;
  transform: translateY(-50%);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.gallery-btn:hover {
  transform: translateY(-50%) scale(1.08);
  border-color: var(--gold-light);
  background: rgba(3, 3, 3, .48);
}

.gallery-prev { left: clamp(14px, 2.4vw, 32px); }
.gallery-next { right: clamp(14px, 2.4vw, 32px); }

.gallery-dots {
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(20px, 3.5vw, 48px);
  z-index: 7;
  display: grid;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 216, 138, .44);
  cursor: pointer;
  transition: height .25s ease, background .25s ease, box-shadow .25s ease;
}

.dot.active {
  height: 30px;
  border-radius: 999px;
  background: var(--gold-light);
  box-shadow: 0 0 24px rgba(255, 228, 163, .36);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  min-height: 490px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  border: 1px solid rgba(255, 216, 138, .22);
  border-radius: 40px;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, .95), rgba(3, 3, 3, .80), rgba(3, 3, 3, .55)),
    /* #Coloque As Imagens# */
    url("assets/hero/hero-danca.svg") center/cover;
  box-shadow: var(--shadow);
}

.cta-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255, 224, 145, .20), transparent 34%);
  pointer-events: none;
}

.cta-copy {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 5vw, 62px);
}

.cta-copy h2,

.contact-card h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4.7vw, 72px);
  line-height: .96;
  letter-spacing: -.05em;
}

.cta-copy p,
.contact-card p,

.logo-panel p {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.82;
}

.quick-links {
  position: relative;
  z-index: 2;
  margin: 34px;
  padding: 22px;
  border: 1px solid rgba(255, 216, 138, .16);
  border-radius: 28px;
  background: rgba(0, 0, 0, .56);
  backdrop-filter: blur(15px);
}

.quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 216, 138, .12);
  color: rgba(255, 248, 239, .86);
  font-weight: 800;
  transition: color .25s ease, transform .25s ease;
}

.quick-links a:hover {
  color: var(--gold-light);
  transform: translateX(5px);
}

.quick-links a:last-child {
  border-bottom: 0;
}

.quick-links small {
  color: var(--gold-light);
  font-size: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  gap: 22px;
  align-items: stretch;
}

.contact-card,

.logo-panel {
  padding: clamp(30px, 4vw, 54px);
}

.info-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 216, 138, .12);
  border-radius: 18px;
  background: rgba(0, 0, 0, .25);
}

.info-item b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(214, 162, 70, .13);
}

.info-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.info-item strong {
  color: var(--white);
}

.logo-panel {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #060607;
}

.logo-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(220px, 28vw, 340px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 216, 138, .12);
  border-radius: 26px;
  background: #050508;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.signature::before {
  content: "";
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 216, 138, .12);
  color: rgba(255, 248, 239, .62);
  font-size: 13px;
}

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

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: #120b04;
  background: linear-gradient(135deg, #fff2bf, #d6a246);
  box-shadow: 0 22px 55px rgba(214, 162, 70, .34);
  font-size: 27px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .78s ease, transform .78s cubic-bezier(.22, 1, .36, 1);
}

.reveal-left {
  transform: translateX(-28px);
}

.reveal-right {
  transform: translateX(28px);
}

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

.reveal-group > * {
  transition-delay: calc(var(--i, 0) * 80ms);
}

@media (max-width: 1120px) {
  .nav-center {
    gap: 16px;
    font-size: 11px;
  }

  .nav-pill {
    padding: 0 14px;
  }

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

  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
  }

  .feedback-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  :root {
    --container: min(100% - 34px, 1180px);
    --nav-h: 76px;
  }

  .nav {
    min-height: var(--nav-h);
  }

  .brand img {
    width: 184px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-pill {
    display: none;
  }

  .nav-center {
    position: fixed;
    top: var(--nav-h);
    left: 17px;
    right: 17px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 216, 138, .18);
    border-radius: 24px;
    background: rgba(3, 3, 3, .96);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .nav-center.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-center a {
    padding: 16px;
    border-radius: 16px;
  }

  .nav-center a:hover {
    background: rgba(255, 255, 255, .055);
  }

  .nav-center a::after {
    display: none;
  }

  .hero-bg img {
    object-position: 72% center;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(3, 3, 3, .16) 0%, rgba(3, 3, 3, .35) 38%, rgba(3, 3, 3, .94) 88%),
      linear-gradient(90deg, rgba(3, 3, 3, .50), rgba(3, 3, 3, .10));
  }

  .hero-inner {
    min-height: 760px;
    align-items: flex-end;
    padding-top: 260px;
  }

  .hero-title-premium {
    max-width: 690px;
    font-size: clamp(46px, 11vw, 78px);
    line-height: .98;
  }

  .section-head,
  .story-banner,
  .cta-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .story-banner {
    min-height: auto;
  }

  .story-banner-media,
  .story-banner-media img {
    min-height: 430px;
  }

  .story-timeline {
    padding-left: 34px;
  }

  .story-progress {
    left: 8px;
    transform: none;
  }

  .story-step {
    display: block;
    min-height: auto;
  }

  .story-step-right {
    margin-top: 0;
  }

  .story-card {
    min-height: auto;
  }

  .story-dot {
    top: 50%;
    left: -34px;
    display: block;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
  }

  .story-step.is-active .story-dot {
    transform: translateY(-50%) scale(1.18);
  }

  .quick-links {
    margin: 0 28px 28px;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 26px, 1180px);
  }

  body::after,
  .hero-bg img {
    animation: none;
  }

  .brand img {
    width: 158px;
  }

  .hero-bg img {
    object-position: 66% top;
  }

  .hero-inner {
    min-height: 790px;
    padding: 330px 0 34px;
  }

  .hero-title-premium {
    max-width: 100%;
    font-size: clamp(37px, 13vw, 54px);
    line-height: .98;
    letter-spacing: -.04em;
  }

  .hero-title-premium span {
    white-space: nowrap;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    font-size: 11px;
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .feature-mini {
    min-height: 98px;
    padding: 14px 10px;
    border-radius: 18px;
  }

  .feature-mini .ico {
    font-size: 22px;
    margin-bottom: 9px;
  }

  .feature-mini strong {
    font-size: 10px;
  }

  section.content-section {
    padding: 62px 0;
  }

  .section-head {
    gap: 18px;
    margin-bottom: 28px;
  }

  .section-title {
    font-size: clamp(32px, 12vw, 48px);
  }

  .story-timeline {
    gap: 18px;
    padding-left: 34px;
  }

  .story-banner-media,
  .story-banner-media img {
    min-height: 350px;
  }

  .story-dot {
    left: -34px;
    width: 18px;
    height: 18px;
  }

  .story-photo-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }

  .story-card,
  .service-card,
  .feedback-card,
  .contact-card,
  .logo-panel {
    padding: 26px;
  }

  .logo-frame {
    min-height: 190px;
    border-radius: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .rhythms {
    justify-content: flex-start;
    padding: 18px;
  }

  .rhythms span {
    font-size: 11px;
  }

  .structure-section {
    padding: 52px 0;
  }

  .gallery-shell {
    width: min(calc(100% - 28px), 1920px);
    aspect-ratio: 1920 / 1080;
    border-radius: 24px;
  }

  .structure-slide.logo-slide img {
    padding: 0;
  }

  .slide-caption {
    left: 14px;
    bottom: 14px;
    width: min(360px, calc(100% - 28px));
    padding: 16px;
    border-radius: 18px;
  }

  .slide-caption h3 {
    font-size: clamp(22px, 7vw, 34px);
  }

  .slide-caption p {
    font-size: 13px;
    line-height: 1.5;
  }

  .gallery-label {
    top: 14px;
    left: 14px;
    padding: 11px 14px;
  }

  .gallery-btn {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .gallery-prev {
    left: 12px;
  }

  .gallery-next {
    right: 12px;
  }

  .gallery-dots {
    right: 18px;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }

  .cta-panel {
    min-height: auto;
    border-radius: 28px;
  }

  .cta-copy {
    padding: 28px;
  }

  .quick-links {
    margin: 0 14px 14px;
    padding: 20px;
  }

  .quick-links a {
    align-items: flex-start;
  }

  .footer-inner {
    display: grid;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
}

:root {
  --ease-premium: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.22, 1, .36, 1);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

body.is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 228, 163, .18), transparent 24%),
    radial-gradient(circle at 18% 12%, rgba(214, 162, 70, .16), transparent 28%),
    linear-gradient(180deg, #020202 0%, #080604 100%);
  transition: opacity .72s var(--ease-premium), visibility .72s var(--ease-premium);
}

body.loaded .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-orb {
  position: relative;
  width: clamp(132px, 34vw, 220px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 26px 90px rgba(0, 0, 0, .58),
    0 0 70px rgba(214, 162, 70, .12);
  overflow: hidden;
}

.loader-orb img {
  position: relative;
  z-index: 2;
  width: 74%;
  max-height: 74%;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(214, 162, 70, .22));
  animation: loaderLogo 2.2s var(--ease-soft) infinite;
}

.loader-halo,
.loader-ring,

.loader-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}

.loader-halo {
  background: radial-gradient(circle, rgba(255, 228, 163, .14), transparent 62%);
  animation: loaderPulse 2.4s ease-in-out infinite;
}

.loader-ring {
  inset: 12px;
  border: 1px solid rgba(255, 216, 138, .18);
  border-top-color: rgba(255, 228, 163, .88);
  border-right-color: rgba(214, 162, 70, .44);
  animation: loaderSpin 1.3s linear infinite;
}

.loader-shine {
  inset: -30%;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, .18), transparent 58%);
  transform: translateX(-70%) rotate(18deg);
  animation: loaderSweep 1.9s ease-in-out infinite;
}

.site-loader p {
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 900;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.site-loader small {
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .84;
}

@keyframes loaderSpin { to { transform: rotate(1turn); } }
@keyframes loaderPulse { 50% { opacity: .48; transform: scale(1.08); } }
@keyframes loaderSweep { 52%, 100% { transform: translateX(72%) rotate(18deg); } }
@keyframes loaderLogo { 50% { transform: scale(1.035); opacity: .92; } }

.menu-backdrop {
  position: fixed;
  inset: var(--nav-h) 0 0;
  z-index: 90;
  background: rgba(0, 0, 0, .56);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .32s ease, visibility .32s ease;
}

.menu-backdrop.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

.topbar {
  transform: translateZ(0);
}

.menu-toggle {
  position: relative;
  overflow: hidden;
  transition: transform .28s var(--ease-soft), border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.menu-toggle::before {
  content: "";
  position: absolute;
  inset: -70%;
  background: radial-gradient(circle, rgba(255, 228, 163, .20), transparent 58%);
  opacity: 0;
  transition: opacity .28s ease;
}

.menu-toggle.is-open,

.menu-toggle:hover {
  border-color: rgba(255, 228, 163, .58);
  background: rgba(214, 162, 70, .11);
  box-shadow: 0 16px 42px rgba(214, 162, 70, .14);
}

.menu-toggle.is-open::before,

.menu-toggle:hover::before {
  opacity: 1;
}

.nav-center a,
.btn,
.nav-pill,
.quick-links a,
.whatsapp-float,

.mobile-sticky-cta a {
  touch-action: manipulation;
}

.btn,
.nav-pill,
.whatsapp-float,
.mobile-sticky-cta a,
.premium-card,

.feature-mini {
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
}

.btn,
.nav-pill,
.whatsapp-float,

.mobile-sticky-cta a {
  position: relative;
  overflow: hidden;
}

.btn::after,
.nav-pill::after,

.mobile-sticky-cta a::after {
  content: "";
  position: absolute;
  inset: -120% -80%;
  background: linear-gradient(110deg, transparent 42%, rgba(255, 255, 255, .38), transparent 58%);
  transform: translateX(-60%);
  transition: transform .65s var(--ease-premium);
  pointer-events: none;
}

.btn:hover::after,
.nav-pill:hover::after,

.mobile-sticky-cta a:hover::after {
  transform: translateX(62%);
}

.premium-card,
.feature-mini,
.logo-frame,
.gallery-shell,

.cta-panel {
  transform-style: preserve-3d;
}

@media (hover: hover) and (pointer: fine) {
  .premium-card:hover {
    transform: translate3d(var(--mx, 0), calc(var(--my, 0) - 4px), 0);
    border-color: rgba(255, 216, 138, .34);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .40), 0 0 42px rgba(214, 162, 70, .08);
  }

  .feature-mini:hover {
    transform: translate3d(var(--mx, 0), calc(var(--my, 0) - 6px), 0);
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(3, 3, 3, .82) 72%, #030303);
}

.hero-orbit {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-orbit span {
  position: absolute;
  width: clamp(180px, 28vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 216, 138, .10);
  border-radius: 50%;
  filter: blur(.2px);
  opacity: .48;
  animation: orbitFloat 11s ease-in-out infinite;
}

.hero-orbit span:nth-child(1) { left: -6%; bottom: 12%; }
.hero-orbit span:nth-child(2) { right: 10%; top: 14%; animation-delay: -3.2s; }
.hero-orbit span:nth-child(3) { right: -7%; bottom: -4%; animation-delay: -6s; }

@keyframes orbitFloat {
  50% { transform: translate3d(2.4%, -4%, 0) scale(1.06); opacity: .74; }
}

.hero-copy {
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, .36));
}

.hero-title-premium .gold {
  background-size: 200% 100%;
  animation: titleGold 7s ease-in-out infinite;
}

@keyframes titleGold {
  50% { background-position: 100% 50%; }
}

.service-card,
.feedback-card,
.story-card,
.contact-card,
.logo-panel,
.quick-links,

.cta-panel {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045), 0 22px 58px rgba(0, 0, 0, .22);
}

.service-card::before,
.feedback-card::before,
.story-card::before,
.contact-card::before,

.logo-panel::before {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .10), transparent 22%, transparent 70%, rgba(255, 228, 163, .08)),
    radial-gradient(circle at 18% 0%, rgba(255, 228, 163, .10), transparent 36%);
}

.gallery-track {
  transition-duration: .95s;
}

.structure-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, transparent 42%, rgba(0, 0, 0, .34));
  opacity: .8;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 920px) {
  .topbar {
    position: sticky;
    background: rgba(3, 3, 3, .82);
    backdrop-filter: blur(20px) saturate(1.24);
  }

  .nav {
    gap: 12px;
  }

  .menu-toggle {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    border-radius: 18px;
    font-size: 24px;
  }

  .nav-center {
    z-index: 100;
    padding: 10px;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(13, 10, 6, .98), rgba(3, 3, 3, .97)),
      radial-gradient(circle at 50% 0%, rgba(255, 228, 163, .18), transparent 40%);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .58);
    transform: translateY(-12px) scale(.98);
    transition: opacity .34s var(--ease-premium), transform .34s var(--ease-premium), visibility .34s var(--ease-premium);
  }

  .nav-center.open {
    transform: translateY(0) scale(1);
  }

  .nav-center a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 18px;
    color: rgba(255, 248, 239, .82);
    font-size: 12px;
    letter-spacing: .13em;
  }

  .nav-center a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 216, 138, .28);
    order: 2;
  }

  .nav-center a.active,
  .nav-center a:hover {
    border-color: rgba(255, 216, 138, .20);
    color: var(--gold-light);
    background: rgba(255, 255, 255, .055);
  }

  .nav-center a.active::before,
  .nav-center a:hover::before {
    background: var(--gold-light);
    box-shadow: 0 0 18px rgba(255, 228, 163, .38);
  }

  .hero {
    min-height: calc(100svh - var(--nav-h));
  }

  .hero-inner {
    min-height: calc(100svh - var(--nav-h));
    padding: clamp(230px, 43svh, 360px) 0 90px;
  }

  .hero-copy {
    width: 100%;
  }

  .section-head,
  .story-banner,
  .cta-panel,
  .contact-grid {
    gap: 22px;
  }

  .story-banner {
    border-radius: 34px;
  }

  .story-banner-media {
    order: -1;
  }

  .story-card,
  .service-card,
  .feedback-card,
  .contact-card,
  .logo-panel,
  .quick-links {
    border-radius: 26px;
  }

  .services-grid,
  .feedback-grid {
    gap: 15px;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 28px, 1180px);
    --radius: 26px;
  }

  html {
    scroll-padding-top: calc(var(--nav-h) + 12px);
  }

  body {
    padding-bottom: calc(82px + var(--safe-bottom));
    background:
      radial-gradient(circle at 12% 0%, rgba(214, 162, 70, .20), transparent 34%),
      radial-gradient(circle at 88% 4%, rgba(255, 228, 163, .12), transparent 28%),
      linear-gradient(180deg, #030303 0%, #080604 58%, #120b05 100%);
  }

  .topbar {
    border-bottom-color: rgba(255, 216, 138, .20);
  }

  .brand img {
    width: clamp(140px, 46vw, 176px);
  }

  .hero-bg img {
    height: 58%;
    object-position: 62% top;
    -webkit-mask-image: linear-gradient(#000 62%, transparent 100%);
    mask-image: linear-gradient(#000 62%, transparent 100%);
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(3, 3, 3, .05) 0%, rgba(3, 3, 3, .18) 40%, rgba(3, 3, 3, .98) 88%),
      radial-gradient(circle at 72% 16%, rgba(255, 228, 163, .18), transparent 30%);
  }

  .hero-glow {
    background:
      radial-gradient(circle at 50% 18%, rgba(214, 162, 70, .20), transparent 38%),
      radial-gradient(circle at 18% 62%, rgba(255, 228, 163, .09), transparent 30%);
  }

  .hero-inner {
    min-height: calc(100svh - var(--nav-h));
    padding: clamp(255px, 47svh, 392px) 0 78px;
  }

  .kicker {
    gap: 10px;
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: .18em;
  }

  .kicker::before {
    width: 34px;
  }

  .hero-title-premium {
    font-size: clamp(39px, 13.4vw, 58px);
    line-height: .96;
    letter-spacing: -.048em;
  }

  .hero-line {
    width: 100%;
    margin: 20px 0 18px;
  }

  .hero p,
  .section-text,
  .story-card p,
  .service-card p,
  .feedback-card p,
  .cta-copy p,
  .contact-card p,
  .logo-panel p {
    font-size: 14px;
    line-height: 1.74;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .btn {
    min-height: 56px;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
  }

  .hero-features {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    width: calc(100% + 28px);
    margin: 24px -14px 0;
    padding: 0 14px 6px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-features::-webkit-scrollbar,
  .rhythms::-webkit-scrollbar {
    display: none;
  }

  .feature-mini {
    min-width: 156px;
    min-height: 104px;
    scroll-snap-align: start;
  }

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

  .section-title {
    font-size: clamp(34px, 11.6vw, 50px);
    line-height: .96;
  }

  .story-banner {
    padding: 16px;
    border-radius: 28px;
  }

  .story-banner-media,
  .story-banner-media img {
    min-height: 278px;
    border-radius: 22px;
  }

  .story-photo-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .story-photo-caption span {
    font-size: 13px;
  }

  .story-timeline {
    padding-left: 28px;
  }

  .story-progress {
    left: 5px;
  }

  .story-dot {
    left: -28px;
  }

  .story-card,
  .service-card,
  .feedback-card,
  .contact-card,
  .logo-panel {
    padding: 22px;
  }

  .story-card h3,
  .service-card h3 {
    font-size: clamp(23px, 7.8vw, 34px);
  }

  .services-grid {
    gap: 13px;
  }

  .service-number {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: 16px;
  }

  .rhythms {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 14px;
    border-radius: 22px;
  }

  .rhythms span {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 12px 14px;
  }

  .rhythm-photo-card {
    margin-top: 24px;
    border-radius: 28px;
  }

  .rhythm-photo-card img {
    height: 360px;
    min-height: 360px;
  }

  .rhythm-photo-card figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 15px;
    border-radius: 18px;
  }

  .rhythm-photo-card figcaption strong {
    font-size: clamp(22px, 7.2vw, 32px);
  }

  .gallery-shell {
    width: min(calc(100% - 28px), 430px);
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .48);
  }

  .structure-slide img {
    object-fit: cover;
  }

  .structure-slide.logo-slide img {
    object-fit: cover;
    padding: 0;
  }

  .slide-caption {
    left: 12px;
    right: 12px;
    bottom: 54px;
    width: auto;
    padding: 15px;
    border-radius: 18px;
    background: rgba(3, 3, 3, .46);
  }

  .slide-caption h3 {
    font-size: clamp(23px, 7vw, 32px);
  }

  .gallery-btn {
    top: auto;
    bottom: 12px;
    width: 42px;
    height: 42px;
    transform: none;
    font-size: 22px;
  }

  .gallery-btn:hover {
    transform: scale(1.04);
  }

  .gallery-prev { left: 12px; }
  .gallery-next { right: 12px; }

  .gallery-dots {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 25px;
    display: flex;
    transform: translateX(-50%);
  }

  .dot {
    width: 9px;
    height: 9px;
  }

  .dot.active {
    width: 28px;
    height: 9px;
  }

  .cta-panel {
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(3, 3, 3, .94), rgba(3, 3, 3, .76)),
      /* #Coloque As Imagens# */
      url("assets/hero/hero-danca.svg") center/cover;
  }

  .cta-copy {
    padding: 24px;
  }

  .cta-copy h2,
  .contact-card h2 {
    font-size: clamp(34px, 11.2vw, 48px);
  }

  .quick-links {
    margin: 0 12px 12px;
    padding: 12px 16px;
  }

  .quick-links a {
    min-height: 54px;
    padding: 14px 0;
    font-size: 14px;
  }

  .info-item {
    align-items: flex-start;
    padding: 14px;
  }

  .info-item strong {
    font-size: 14px;
  }

  .logo-panel {
    min-height: auto;
  }

  .logo-frame {
    min-height: 220px;
  }

  footer {
    padding-bottom: 18px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: calc(88px + var(--safe-bottom));
    width: 54px;
    height: 54px;
    font-size: 23px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + var(--safe-bottom));
    z-index: 121;
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 10px;
    padding: 8px;
    border: 1px solid rgba(255, 216, 138, .20);
    border-radius: 24px;
    background: rgba(3, 3, 3, .82);
    backdrop-filter: blur(18px) saturate(1.25);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .52), inset 0 1px 0 rgba(255, 255, 255, .06);
  }

  .mobile-sticky-cta a {
    min-height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 216, 138, .20);
    border-radius: 17px;
    color: var(--gold-light);
    background: rgba(255, 255, 255, .045);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .mobile-sticky-cta a.primary {
    color: #160e05;
    border-color: rgba(255, 255, 255, .24);
    background: linear-gradient(135deg, #fff1bd, #d6a246 62%, #fff3c4);
    box-shadow: 0 15px 36px rgba(214, 162, 70, .22);
  }

  body.menu-open .mobile-sticky-cta,
  body.menu-open .whatsapp-float {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
  }
}

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

@media (max-width: 620px) {
  .hero-bg img {
    object-position: 75% top;
  }
}
:root {
  --nav-h: 78px;
}

.nav {
  min-height: var(--nav-h);
}

.brand img {
  width: clamp(180px, 13vw, 235px);
  max-height: 74px;
  object-fit: contain;
}

.nav-pill,
.btn {
  min-height: 40px;
  padding: 0 18px;
  font-size: 11px;
}

.nav-center {
  font-size: 11px;
  gap: 18px;
}

.brand {
  overflow: visible !important;
}

.brand img {
  width: 120px !important;
  max-height: none !important;
  transform: scale(1.45) !important;
  transform-origin: center !important;
}

.logo-panel-assets {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 520px;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 228, 163, .10), transparent 34%),
    radial-gradient(circle at 16% 82%, rgba(214, 162, 70, .12), transparent 36%),
    linear-gradient(180deg, #070707 0%, #030303 100%);
}

.logo-panel-assets::after {
  content: "";
  position: absolute;
  inset: 24px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 216, 138, .10);
  border-radius: 26px;
}

.logo-panel-content,
.logo-panel-assets .signature {
  position: relative;
  z-index: 3;
}

.contact-asset {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.contact-asset-bg {
  width: 120%;
  max-width: none;
  left: 50%;
  top: 45%;
  opacity: .20;
  transform: translate(-50%, -50%) rotate(-4deg);
  filter: blur(.2px);
}

.contact-asset-line {
  width: 78%;
  max-width: none;
  left: -12%;
  bottom: 19%;
  opacity: .18;
  transform: rotate(-7deg);
}

.contact-asset-corner {
  width: 190px;
  max-width: none;
  right: -36px;
  top: -30px;
  opacity: .18;
  transform: rotate(12deg);
}

.logo-frame-clean {
  z-index: 2;
  min-height: 270px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, .055), transparent 58%),
    rgba(0, 0, 0, .32);
  backdrop-filter: blur(10px);
}

.logo-frame-clean img {
  object-fit: contain;
  padding: 42px;
}

.logo-panel-assets p {
  position: relative;
  z-index: 3;
  margin-top: 22px;
}

.logo-panel-assets {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 640px;
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 228, 163, .11), transparent 34%),
    radial-gradient(circle at 18% 84%, rgba(214, 162, 70, .13), transparent 38%),
    linear-gradient(180deg, #080806 0%, #030303 100%);
}

.logo-panel-assets::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .08), transparent 24%, transparent 70%, rgba(255, 228, 163, .07)),
    radial-gradient(circle at 50% 35%, rgba(255, 228, 163, .08), transparent 42%);
}

.logo-panel-assets::after {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 216, 138, .13);
  border-radius: 28px;
}

.logo-panel-content,
.logo-panel-assets .signature {
  position: relative;
  z-index: 4;
}

.logo-panel-content {
  display: grid;
  gap: 24px;
}

.logo-frame-clean {
  width: min(100%, 430px);
  min-height: 255px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, .065), transparent 60%),
    rgba(0, 0, 0, .36);
  border: 1px solid rgba(255, 216, 138, .13);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .34);
  backdrop-filter: blur(10px);
}

.logo-frame-clean img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 48px 54px;
  opacity: .94;
}

.logo-panel-assets p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 248, 239, .82);
  font-size: 15px;
  line-height: 1.72;
}

.contact-asset {
  position: absolute;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.contact-asset-watermark {
  z-index: 2;
  width: 68%;
  right: 7%;
  bottom: 20%;
  opacity: .11;
  filter: blur(.2px);
}

.contact-asset-flow {
  z-index: 2;
  width: 105%;
  left: -34%;
  top: 42%;
  opacity: .075;
  transform: rotate(-7deg);
}

.contact-asset-detail {
  z-index: 2;
  width: 180px;
  right: 26px;
  bottom: 86px;
  opacity: .15;
  transform: rotate(-10deg);
}

.logo-panel-assets .signature {
  margin-top: 36px;
  color: var(--gold-light);
}

@media (max-width: 620px) {
  .logo-panel-assets {
    min-height: 520px;
    padding: 26px;
  }

  .logo-frame-clean {
    min-height: 205px;
  }

  .logo-frame-clean img {
    padding: 38px;
  }

  .contact-asset-watermark {
    width: 86%;
    right: -8%;
    bottom: 18%;
    opacity: .10;
  }

  .contact-asset-flow {
    width: 130%;
    left: -48%;
    top: 44%;
    opacity: .06;
  }

  .contact-asset-detail {
    width: 135px;
    right: 18px;
    bottom: 70px;
    opacity: .13;
  }
}

.contact-premium-note {
  position: relative;
  z-index: 4;
  max-width: 430px;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(255, 216, 138, .13);
  border-radius: 22px;
  background: rgba(0, 0, 0, .28);
  backdrop-filter: blur(10px);
}

.contact-premium-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-premium-note h3 {
  margin: 0 0 12px;
  max-width: 360px;
  color: var(--white);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.logo-panel-assets .contact-premium-note p {
  margin: 0;
  color: rgba(255, 248, 239, .72);
  font-size: 13px;
  line-height: 1.65;
}

.contact-mini-points {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 430px;
  margin-top: 18px;
}

.contact-mini-points div {
  min-height: 76px;
  padding: 14px 12px;
  border: 1px solid rgba(255, 216, 138, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
}

.contact-mini-points strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.contact-mini-points span {
  display: block;
  color: rgba(255, 248, 239, .78);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

@media (max-width: 620px) {
  .contact-premium-note {
    padding: 18px;
    margin-top: 20px;
  }

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

  .contact-mini-points div {
    min-height: auto;
  }
}

@media (min-width: 921px) {
  .logo-panel-assets {
    height: 100%;
  }

  .logo-panel-content {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
  }

  .contact-mini-points {
    width: 100%;
    max-width: 430px;
    margin: 18px auto 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .contact-mini-points div {
    min-width: 0;
    min-height: 76px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}

/* Ajustes finais de performance e copy sem alterar estrutura, caminhos ou animações */
html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  height: auto;
}

.story-banner-copy .section-text + .section-text {
  margin-top: 18px;
}

.testimonial-story {
  margin-top: 22px;
  padding: clamp(26px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045), 0 22px 58px rgba(0, 0, 0, .22);
}

.testimonial-meta {
  position: relative;
  z-index: 2;
  align-self: start;
  padding: 22px;
  border: 1px solid rgba(255, 216, 138, .14);
  border-radius: 24px;
  background: rgba(0, 0, 0, .26);
}

.testimonial-meta span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.testimonial-meta strong {
  display: block;
  color: var(--white);
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.testimonial-flow {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  color: rgba(255, 248, 239, .82);
  font-size: 15px;
  line-height: 1.82;
}

.testimonial-flow p {
  max-width: 820px;
}

@media (max-width: 920px) {
  .testimonial-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .testimonial-story {
    margin-top: 15px;
    padding: 22px;
    border-radius: 26px;
  }

  .testimonial-meta {
    padding: 18px;
    border-radius: 20px;
  }

  .testimonial-flow {
    gap: 14px;
    font-size: 14px;
    line-height: 1.76;
  }
}

/* Organização do depoimento com leitura expandida e imagens complementares */
.testimonial-story {
  grid-template-columns: minmax(280px, .44fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(22px, 4vw, 48px);
}

.testimonial-visuals {
  position: relative;
  z-index: 2;
  min-height: clamp(360px, 46vw, 620px);
  overflow: hidden;
  border: 1px solid rgba(255, 216, 138, .16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 12%, rgba(255, 228, 163, .15), transparent 36%),
    rgba(0, 0, 0, .32);
}

.testimonial-visuals::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 36%, rgba(3, 3, 3, .78) 100%),
    radial-gradient(circle at 80% 82%, rgba(214, 162, 70, .26), transparent 34%);
}

.testimonial-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 216, 138, .16);
  background: #050403;
  box-shadow: 0 24px 62px rgba(0, 0, 0, .34);
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.04);
}

.testimonial-photo-main {
  inset: 0;
  border: 0;
  border-radius: 0;
}

.testimonial-photo-main img {
  transform: scale(1.035);
}

.testimonial-photo-logo {
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(92px, 12vw, 128px);
  z-index: 3;
  width: min(46%, 220px);
  aspect-ratio: 1 / 1;
  border-radius: 26px;
}

.testimonial-photo-logo img {
  transform: scale(1.02);
}

.testimonial-seal {
  position: absolute;
  left: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 4;
  padding: 20px;
  border: 1px solid rgba(255, 216, 138, .24);
  border-radius: 24px;
  background: rgba(3, 3, 3, .58);
  backdrop-filter: blur(14px);
}

.testimonial-seal span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.testimonial-seal strong {
  display: block;
  color: var(--white);
  font-size: clamp(23px, 3vw, 36px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.testimonial-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.testimonial-meta small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.testimonial-highlight {
  margin: 18px 0 18px;
  padding: 20px;
  border: 1px solid rgba(255, 216, 138, .14);
  border-radius: 22px;
  background: rgba(214, 162, 70, .08);
}

.testimonial-highlight p {
  color: rgba(255, 248, 239, .88);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.72;
}

.testimonial-flow {
  max-height: 430px;
  overflow: hidden;
  position: relative;
  transition: max-height .72s cubic-bezier(.22, 1, .36, 1);
}

.testimonial-story:not(.is-expanded) .testimonial-flow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 128px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 7, 4, 0), rgba(10, 7, 4, .94) 82%);
}

.testimonial-story.is-expanded .testimonial-flow {
  max-height: 2600px;
}

.read-more-btn {
  position: relative;
  z-index: 3;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  margin-top: 22px;
  padding: 0 24px;
  border: 1px solid rgba(255, 216, 138, .36);
  border-radius: 999px;
  color: #120b04;
  background: linear-gradient(135deg, #fff1bd, #d6a246 58%, #fff0b8);
  box-shadow: 0 18px 42px rgba(214, 162, 70, .18);
  cursor: pointer;
  font-family: var(--font-base);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.read-more-btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  box-shadow: 0 22px 55px rgba(214, 162, 70, .26);
}

.read-more-btn span[aria-hidden="true"] {
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  transition: transform .25s ease;
}

.testimonial-story.is-expanded .read-more-btn span[aria-hidden="true"] {
  transform: rotate(180deg);
}

@media (max-width: 920px) {
  .testimonial-story {
    grid-template-columns: 1fr;
  }

  .testimonial-visuals {
    min-height: 420px;
  }

  .testimonial-photo-logo {
    width: min(42%, 180px);
  }
}

@media (max-width: 620px) {
  .testimonial-visuals {
    min-height: 340px;
    border-radius: 22px;
  }

  .testimonial-photo-logo {
    width: 132px;
    bottom: 96px;
    border-radius: 20px;
  }

  .testimonial-highlight {
    padding: 16px;
    border-radius: 18px;
  }

  .testimonial-flow {
    max-height: 390px;
  }

  .testimonial-story.is-expanded .testimonial-flow {
    max-height: 3200px;
  }

  .read-more-btn {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-flow,
  .read-more-btn,
  .read-more-btn span[aria-hidden="true"] {
    transition: none;
  }
}

/* Ajuste tipográfico solicitado: Garet nos títulos com contraste regular/bold + detalhes em Great Vibes */
h1,
h2,
h3,
.hero-title-premium,
.section-title,
.story-card h3,
.service-card h3,
.slide-caption h3,
.cta-copy h2,
.contact-card h2,
.contact-premium-note h3 {
  font-family: var(--font-base);
  font-weight: 400;
}

.title-balance,
.title-balance span,
.story-card h3 span,
.service-card h3 span,
.slide-caption h3 span,
.contact-premium-note h3 span {
  font-family: var(--font-base);
}

.title-regular {
  font-weight: 400;
}

.title-strong {
  font-weight: 900;
}

.hero-title-premium .title-regular {
  font-weight: 400;
  letter-spacing: -.064em;
}

.hero-title-premium .title-strong {
  font-weight: 900;
}

.section-title .title-regular,
.cta-copy h2 .title-regular,
.contact-card h2 .title-regular,
.contact-premium-note h3 .title-regular {
  color: rgba(255, 248, 239, .88);
}

.section-title .title-strong,
.cta-copy h2 .title-strong,
.contact-card h2 .title-strong,
.contact-premium-note h3 .title-strong,
.story-card h3 .title-strong,
.service-card h3 .title-strong,
.slide-caption h3 .title-strong {
  color: var(--white);
}

.script-detail {
  display: inline-block;
  font-family: var(--font-script);
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: .01em !important;
  line-height: 1;
  color: var(--gold-light);
  text-shadow: 0 12px 32px rgba(214, 162, 70, .22);
}

.hero-script {
  display: block;
  margin-top: 16px;
  font-size: clamp(34px, 4.6vw, 72px);
  color: rgba(255, 228, 163, .94);
}

.section-script {
  display: block;
  margin: -8px 0 22px;
  font-size: clamp(28px, 3vw, 48px);
  color: rgba(255, 228, 163, .90);
}

.testimonial-seal .seal-script {
  display: block;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--white);
}

.signature {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 42px);
  line-height: 1;
  text-transform: none;
  letter-spacing: .01em;
}

@media (max-width: 620px) {
  .hero-script {
    margin-top: 12px;
    font-size: clamp(30px, 12vw, 52px);
  }

  .section-script {
    margin: -4px 0 18px;
    font-size: clamp(27px, 10vw, 42px);
  }
}
