/* ═══════════════════════════════════════════════════════════════════
   CANYON DIGITAL — PREMIUM CSS
   Versão: 1.0
   Paleta: Navy #25374A | Off-White #F7F4EF | Gold #C6A56B 
           Light Blue #C9D8E8 | Gray Blue #4F5963
   ═══════════════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─────────────────────────────────────────────── */
:root {
  --navy:      #25374A;
  --navy-deep: #1A2835;
  --offwhite:  #F7F4EF;
  --gold:      #C6A56B;
  --gold-light:#D4BA8A;
  --lightblue: #C9D8E8;
  --grayblue:  #4F5963;
  --white:     #FFFFFF;
  --text-dark: #1E2B35;

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', 'Inter', system-ui, sans-serif;

  --container-max: 1240px;
  --container-narrow: 820px;
  --section-pad: clamp(60px, 7vw, 100px);
  --gap: clamp(20px, 3vw, 40px);

  --radius-btn: 100px;
  --shadow-card: 0 2px 40px rgba(37, 55, 74, 0.08);
  --shadow-card-hover: 0 8px 60px rgba(37, 55, 74, 0.15);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET & BASE ──────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* impede scroll horizontal global */
}

body {
  font-family: var(--font-sans);
  background-color: var(--offwhite);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

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

ul {
  list-style: none;
}

/* ─── UTILITY CLASSES ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section-cream  { background-color: var(--offwhite); }
.section-navy   { background-color: var(--navy); }
.section-light-blue { background-color: var(--lightblue); }

/* ═══════════════════════════════════════════════════════════════
   GRADIENTES DE TRANSIÇÃO ENTRE SEÇÕES
   Regra: cada seção recebe ::after que funde sua cor com a cor
   da seção seguinte — sem elementos extras no HTML.
   Altura do gradiente: 120px (suave, cinematográfico).
   ═══════════════════════════════════════════════════════════════ */

/* Helper base para todos os gradientes de saída */
.section-fade-out::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  pointer-events: none;
  z-index: 2;
}

/* BLOCO 2 (quote/foto escura) → BLOCO 3 (off-white) */
.quote-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 90px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(247, 244, 239, 0.85) 100%
  );
  pointer-events: none;
  z-index: 3;
}

/* BLOCO 3 (off-white) → BLOCO 4 (canyon escuro) */
.context-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom,
    transparent 0%,
    transparent 40%,
    rgba(14, 22, 32, 0.75) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* BLOCO 4 (canyon escuro) → BLOCO 5 (off-white) */
.what-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom,
    transparent 0%,
    transparent 50%,
    rgba(247, 244, 239, 0.80) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* BLOCO 5+6 (off-white) → BLOCO 7 (navy) */
.services-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom,
    transparent 0%,
    transparent 50%,
    rgba(37, 55, 74, 0.80) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* BLOCO 7 → BLOCO 8 (navy → navy, acento dourado) */
.process-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(198, 165, 107, 0.04) 50%,
    rgba(37, 55, 74, 0.60) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* BLOCO 8 (navy) → BLOCO 9 (foto escura) */
.differentials-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom,
    transparent 0%,
    transparent 40%,
    rgba(10, 16, 24, 0.75) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* BLOCO 9 (foto CTA) → BLOCO 10 (FAQ off-white) */
.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom,
    transparent 0%,
    transparent 50%,
    rgba(247, 244, 239, 0.80) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* BLOCO 10 (FAQ off-white) → FOOTER (navy)
   Off-white dissolve para navy */
.faq-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 90px;
  background: linear-gradient(to bottom,
    transparent 0%,
    transparent 40%,
    rgba(37, 55, 74, 0.75) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* ─── SEÇÃO UNIFICADA: audience + services ──────────────────────
   Mesma cor, textura de canyon clarinha, linhas douradas animadas */
.section-unified {
  background-color: var(--offwhite);
  position: relative;
  overflow: hidden;
  margin: 0;     /* zero gap entre seções adjacentes */
}

/* Layer de textura: foto de canyon com opacidade ultra-baixa */
.light-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.light-section-texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* mesma posição nas duas seções — ton uniform */
  opacity: 0.07;
  filter: saturate(0.2) brightness(1.4);
}

/* Linhas douradas SVG onduladas animadas */
.light-section-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Cada path flutua com velocidade e fase diferentes */
.lsl-path {
  fill: none;
  stroke: #C6A56B;
  stroke-width: 1px;
  opacity: 0;
  animation: lslFadeIn 1.2s ease forwards, lslDrift 18s ease-in-out infinite;
}

.lsl-path--1 {
  opacity: 0;
  stroke-width: 1.1px;
  animation:
    lslFadeIn 1.4s 0.4s ease forwards,
    lslDrift  22s  0s   ease-in-out infinite;
  filter: opacity(0.30);
}

.lsl-path--2 {
  opacity: 0;
  stroke-width: 0.7px;
  animation:
    lslFadeIn 1.4s 0.9s ease forwards,
    lslDrift  28s  4s   ease-in-out infinite alternate;
  filter: opacity(0.18);
}

.lsl-path--3 {
  opacity: 0;
  stroke-width: 0.5px;
  animation:
    lslFadeIn 1.4s 1.4s ease forwards,
    lslDrift  34s  8s   ease-in-out infinite alternate-reverse;
  filter: opacity(0.12);
}

@keyframes lslFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes lslDrift {
  0%   { transform: translateX(0px)   translateY(0px); }
  30%  { transform: translateX(12px)  translateY(-8px); }
  60%  { transform: translateX(-8px)  translateY(6px); }
  100% { transform: translateX(0px)   translateY(0px); }
}

/* Garante conteúdo acima dos layers de fundo */
.section-unified > .container,
.section-unified > * > .container {
  position: relative;
  z-index: 1;
}

/* ─── DIVISOR DOURADO MONTANHOSO (entre Para quem e Serviços) ─── */
/* .gold-mountain-divider removido — linhas de divisão estão dentro do SVG de cada seção */

/* ─── SECTION HEADERS ───────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: clamp(50px, 7vw, 90px);
}

.section-header--light .section-title {
  color: var(--offwhite);
}

.label-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding: 6px 18px;
  border: 1px solid rgba(198, 165, 107, 0.4);
  border-radius: 100px;
}

.label-tag--gold {
  color: var(--gold);
  border-color: rgba(198, 165, 107, 0.35);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.section-title--light {
  color: var(--offwhite);
}

/* ─── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 16px 36px;
  border-radius: var(--radius-btn);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(198, 165, 107, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--gold);
}

.btn-outline:hover, .btn-outline:focus-visible {
  background-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(198, 165, 107, 0.25);
}

.btn-large {
  font-size: 0.95rem;
  padding: 20px 48px;
}

/* ─── SCROLL REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--delay, 0ms);
}

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

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

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ─── HEADER / NAVEGAÇÃO ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  /* fundo sólido sempre — logo e nav sempre visíveis */
  background: rgba(20, 32, 44, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(198, 165, 107, 0.15);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(20, 32, 44, 0.97);
  box-shadow: 0 1px 0 rgba(198, 165, 107, 0.25);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 88px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition);
}

/* Logo always visible — single file version */

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--offwhite);
  opacity: 0.90;
  transition: opacity var(--transition), color var(--transition);
  position: relative;
}

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

.nav-link:hover {
  opacity: 1;
}

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

.nav-cta-link {
  opacity: 1;
  color: var(--navy-deep) !important;
  background: var(--gold);
  padding: 10px 24px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.nav-cta-link::after { display: none; }

.nav-cta-link:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(198, 165, 107, 0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--offwhite);
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── HERO ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* z-index positivo garante que não haja gap com a quote band */
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%; /* enquadra as falésias e profundidade épica do Grand Canyon */
  /* Ken Burns: escala inicial — JS remove a transition, reseta e reabilita */
  transform: scale(1.08) translateY(var(--parallax-y, 0px));
  transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.92);
  will-change: transform;
}

.hero.loaded .hero-img {
  transform: scale(1) translateY(var(--parallax-y, 0px));
}

/* Overlay cinematográfico em camadas — vinheta profunda nos quatro lados */
.hero-overlay {
  position: absolute;
  inset: 0;
}

/* Overlay cinematográfico — base escura mas suave para fundir com quote */
.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 32, 44, 0.18) 0%,
    rgba(20, 32, 44, 0.12) 30%,
    rgba(14, 22, 32, 0.60) 72%,
    rgba(10, 16, 26, 0.82) 100%
  );
}

/* Camada 2: vinheta lateral (escurece bordas esquerda/direita como lente) */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    transparent 40%,
    rgba(12, 20, 30, 0.55) 100%
  );
}

/* SVG Lines Hero */
.golden-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.gold-path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  opacity: 0;
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  animation: drawPath 3.5s cubic-bezier(0.4,0,0.2,1) forwards 1s;
  filter: drop-shadow(0 0 4px rgba(198,165,107,0.35));
}

.gold-path--2 {
  stroke-width: 0.8;
  opacity: 0;
  animation-delay: 1.6s;
  animation-duration: 4.5s;
  filter: drop-shadow(0 0 2px rgba(198,165,107,0.2));
}

.gold-path--3 {
  stroke-width: 0.5;
  opacity: 0;
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  animation: drawPath 5s cubic-bezier(0.4,0,0.2,1) forwards 2.2s;
  filter: none;
}

@keyframes drawPath {
  0%   { stroke-dashoffset: 2200; opacity: 0; }
  5%   { opacity: 0.6; }
  100% { stroke-dashoffset: 0; opacity: 0.55; }
}

.gold-path--2 { animation-name: drawPath2; }
@keyframes drawPath2 {
  0%   { stroke-dashoffset: 2200; opacity: 0; }
  5%   { opacity: 0.28; }
  100% { stroke-dashoffset: 0; opacity: 0.28; }
}

.gold-path--3 { animation-name: drawPath3; }
@keyframes drawPath3 {
  0%   { stroke-dashoffset: 1800; opacity: 0; }
  5%   { opacity: 0.14; }
  100% { stroke-dashoffset: 0; opacity: 0.14; }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 120px clamp(20px, 5vw, 80px) 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
}

.hero-inner {
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.5s;
  text-shadow: 0 2px 40px rgba(12,20,30,0.4);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 300;
  color: rgba(247, 244, 239, 0.88);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.7s;
  max-width: 620px;
}

.hero-text {
  font-size: 0.96rem;
  color: rgba(247, 244, 239, 0.68);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.9s;
}

.hero .btn-primary {
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 1.1s;
}

/* Badge de credencial abaixo do CTA */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 1.4s;
}

.hero-badge-line {
  width: 24px;
  height: 1px;
  background: rgba(198,165,107,0.5);
}

.hero-badge-text {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(198,165,107,0.7);
  font-weight: 400;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: clamp(24px, 4vw, 72px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 2s;
}

.scroll-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(198,165,107,0.6);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(198,165,107,0.7), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(198,165,107,0.9), transparent);
  animation: scrollDrop 2.2s ease-in-out infinite 2.2s;
}

@keyframes scrollDrop {
  0%   { top: -100%; opacity: 1; }
  100% { top: 100%;  opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Onda what → audience (saindo do escuro para o claro) */
.what-to-audience-wave {
  line-height: 0;
  margin-top: -2px;
  position: relative;
  z-index: 2;
  background: transparent; /* seção acima é canyon escuro — não sobrepor */
}

.what-to-audience-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Onda contexto → abordagem (claro → escuro canyon) */
.context-to-what-wave {
  line-height: 0;
  margin-bottom: -2px;
  position: relative;
  z-index: 2;
  background: var(--offwhite); /* contexto (off-white) está acima desta onda */
}

.context-to-what-wave svg {
  display: block;
  width: 100%;
  height: clamp(60px, 8vw, 90px); /* altura responsiva — preserva o desenho montanhoso */
}

/* ─── SOFT WAVE DIVIDER (entre seções claras) ───────────────────── */
.soft-wave-divider {
  line-height: 0;
  height: 30px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.soft-wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ─── HERO → QUOTE WAVE ─────────────────────────────────────────── */
.hero-to-quote-wave {
  line-height: 0;
  margin-top: -2px;
  position: relative;
  z-index: 2;
  background: transparent;
}

.hero-to-quote-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Onda quote → contexto */
.quote-to-context-wave {
  line-height: 0;
  margin-top: -2px;
  position: relative;
  z-index: 2;
  background: transparent; /* seção acima é photo/navy escuro */
}

.quote-to-context-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ─── TRANSITION WAVES ──────────────────────────────────────────── */
.transition-wave {
  line-height: 0;
  margin-top: -2px;    /* cola na seção acima — sem gap */
  margin-bottom: -2px; /* cola na seção abaixo — sem gap */
  position: relative;
  z-index: 1;
  background: transparent; /* seção acima pode ter textura — não sobrepor com sólido */
}

.transition-wave svg {
  display: block;
  width: 100%;
}

.transition-wave--reverse {
  margin-top: -2px;
  margin-bottom: 0;
}

.transition-wave--from-navy {
  background-color: var(--navy);
  margin-top: -2px;
  margin-bottom: 0;
}

/* ─── ORGANIC GOLDEN LINES ──────────────────────────────────────── */
.organic-line-wrapper {
  position: relative;
  height: 40px;
  overflow: hidden;
  background: var(--offwhite);
  pointer-events: none;
}

.organic-line-wrapper--gold {
  background: var(--offwhite);
}

.organic-line {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.organic-path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  opacity: 0.35;
}

.organic-path--prominent {
  stroke-width: 1.5;
  opacity: 0.45;
}

/* ─── QUOTE BAND ────────────────────────────────────────────────── */
.quote-band {
  background-color: transparent;
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 80px);
  margin-top: -2px; /* garante sobreposição pixel-perfect com a hero */
}

/* Gradiente de dissolução no TOPO da quote band
   — funde com a hero acima (usando ::before para não conflitar com ::after) */
.quote-band-top-fade {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(
    180deg,
    rgba(10, 16, 26, 0.85) 0%,
    transparent 100%
  );
  z-index: 3;
  pointer-events: none;
}

/* Imagem de fundo da quote band */
.quote-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.quote-band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: brightness(0.48) saturate(0.82);
}

/* Overlay da quote — topo suave (funde com hero) → base escura (funde com próxima onda) */
.quote-band-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 16, 26, 0.72) 0%,
    rgba(20, 32, 44, 0.42) 35%,
    rgba(20, 32, 44, 0.55) 65%,
    rgba(20, 32, 44, 0.78) 100%
  );
}

.quote-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(198, 165, 107, 0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.quote-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 4;
  /* card glass premium — mais sutil, bordas refinadas */
  background: rgba(12, 20, 30, 0.52);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(198, 165, 107, 0.14);
  border-top: 1px solid rgba(198, 165, 107, 0.30);
  border-radius: 2px;
  padding: clamp(44px, 6vw, 80px) clamp(36px, 6vw, 90px);
  box-shadow:
    0 2px 0 rgba(198, 165, 107, 0.18),   /* linha dourada no topo */
    0 24px 80px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(198,165,107,0.08);
}

/* Ornamento superior: duas linhas + losango central */
.quote-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}

.quote-ornament-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,165,107,0.7), transparent);
  flex-shrink: 0;
}

.quote-ornament-line--short {
  width: 40px;
}

.quote-ornament-diamond {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.8;
  /* rotação suave e infinita — leve, quase imperceptible */
  animation: diamondSpin 12s linear infinite;
}

@keyframes diamondSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Label editorial */
.quote-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(198, 165, 107, 0.65);
  margin-bottom: 28px;
}

/* Frase principal */
.quote-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}

.quote-line-1 {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.42;
  color: var(--offwhite);
  letter-spacing: 0.01em;
  /* cursor typewriter — é removido pelo JS após a animação */
  border-right: 2px solid transparent;
}

.quote-line-1.typing {
  border-right-color: rgba(198, 165, 107, 0.8);
  animation: cursorBlink 0.75s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { border-right-color: rgba(198, 165, 107, 0.8); }
  50%       { border-right-color: transparent; }
}

.quote-line-2 {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.75rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  color: rgba(247, 244, 239, 0.72);
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.quote-line-2.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Palavras-chave em dourado */
.quote-line-2 em {
  font-style: normal;
  color: rgba(198, 165, 107, 0.90);
  font-weight: 400;
}

/* Ornamento do rodapé */
.quote-footer-ornament {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ─── CONTEXT SECTION ───────────────────────────────────────────── */
.context-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.context-section > .container {
  position: relative;
  z-index: 1;
}

.context-section .section-header {
  margin-bottom: 50px;
}

.context-content {
  max-width: 680px;
  margin: 0 auto 50px;
  text-align: center;
}

.context-text {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--grayblue);
  line-height: 1.85;
}

.context-problem {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

/* Card sofisticado */
.problem-card {
  background: linear-gradient(135deg, rgba(37,55,74,0.04) 0%, rgba(37,55,74,0.02) 100%);
  border: 1px solid rgba(198, 165, 107, 0.18);
  border-radius: 4px;
  padding: clamp(32px, 5vw, 52px) clamp(28px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}

/* Detalhe dourado no canto superior esquerdo */
.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.problem-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.problem-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--navy);
  margin-bottom: 32px;
  opacity: 0.85;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.problem-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(0.88rem, 1.3vw, 0.98rem);
  color: var(--grayblue);
  padding: 14px 0;
  border-bottom: 1px solid rgba(37, 55, 74, 0.07);
  text-align: left;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.problem-list li:last-child {
  border-bottom: none;
}

.problem-list li:hover {
  color: var(--navy);
}

.problem-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.problem-list li:hover .problem-icon {
  opacity: 1;
  transform: scale(1.1);
}

/* ─── WHAT SECTION ──────────────────────────────────────────────── */
.what-section {
  padding: var(--section-pad) 0;
  padding-bottom: calc(var(--section-pad) + 40px);
  position: relative;
  overflow: hidden;
}

/* Versão cinematográfica — fundo de canyon */
.what-section--cinematic {
  isolation: isolate;
}

/* Fundo de imagem */
.what-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.what-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.5) saturate(0.7);
}

/* Overlay em 2 camadas — mesmo padrão da hero */
.what-bg-overlay {
  position: absolute;
  inset: 0;
}

.what-bg-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(14,22,32,0.80) 0%,
    rgba(37,55,74,0.65) 50%,
    rgba(14,22,32,0.85) 100%
  );
}

.what-bg-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    transparent 40%,
    rgba(10,16,24,0.45) 100%
  );
}

.what-section--cinematic .container {
  position: relative;
  z-index: 1;
}

/* Textos em versão light */
.what-text--light {
  color: rgba(247,244,239,0.82) !important;
}

.what-lead--light {
  color: rgba(247,244,239,0.60) !important;
  font-family: var(--font-serif);
  font-style: italic;
}

/* Lista de items em fundo escuro — cor dourada nos textos */
.what-section--cinematic .what-list li {
  color: var(--gold) !important;
  border-bottom-color: rgba(198,165,107,0.18) !important;
}

.what-section--cinematic .what-list li span:not(.what-icon) {
  color: rgba(247,244,239,0.82);
}

.what-section--cinematic .what-list li:last-child {
  border-bottom: none !important;
}

.what-section--cinematic .what-list li:hover {
  color: var(--offwhite) !important;
}

.what-section--cinematic .what-icon {
  opacity: 0.9;
}
  color: var(--offwhite);
}

/* Padrão topográfico desativado na versão cinematic */
.what-section--cinematic::before {
  display: none;
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.what-left .section-title {
  margin-top: 20px;
  text-align: left;
}

.what-text {
  font-size: clamp(0.95rem, 1.4vw, 1.06rem);
  color: var(--navy);
  line-height: 1.85;
  margin-bottom: 32px;
}

.what-lead {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 18px;
}

.what-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.what-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--grayblue);
  padding: 10px 0;
  border-bottom: 1px solid rgba(37, 55, 74, 0.08);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.what-list li:last-child {
  border-bottom: none;
}

.what-list li:hover {
  color: var(--navy);
}

.what-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.what-list li:hover .what-icon {
  opacity: 1;
}

/* ─── AUDIENCE SECTION ──────────────────────────────────────────── */
.audience-section {
  padding: var(--section-pad) 0;
  /* background via .section-unified */
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: 800px;
  margin: 0 auto 60px;
  align-items: start;
}

.audience-divider {
  background: rgba(198, 165, 107, 0.3);
  height: 100%;
  min-height: 200px;
}

.audience-column-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.audience-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--grayblue);
  padding: 8px 0;
  border-bottom: 1px solid rgba(37, 55, 74, 0.06);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.audience-list li:last-child {
  border-bottom: none;
}

.audience-list li:hover {
  color: var(--navy);
}

.audience-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.audience-list li:hover .audience-icon {
  opacity: 1;
}

.audience-closing {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 40px;
  border-top: 1px solid rgba(198, 165, 107, 0.25);
  position: relative;
}

/* Linhas douradas decorativas nos cantos */
.audience-closing::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
  opacity: 0.6;
}

.audience-closing p {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* Destaque na segunda frase */
.audience-closing p em {
  font-style: normal;
  color: var(--gold);
}

/* ─── SERVICES SECTION ──────────────────────────────────────────── */
.services-section {
  /* background via .section-unified */
  padding: var(--section-pad) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 60px;
  align-items: stretch;
}

/* Card branco elegante */
.service-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(37,55,74,0.14);
}

.service-card-inner {
  padding: clamp(28px, 3.5vw, 48px);
  position: relative;
  z-index: 1;
  flex: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.service-number {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0.8;
}

.service-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 18px;
}

.service-text {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.85;
}

/* Linha dourada esquerda no hover */
.service-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent 80%);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover .service-card-accent {
  opacity: 1;
}

/* CTA da seção de serviços */
.services-cta .btn-primary {
  /* herda o estilo padrão do btn-primary */
}

/* placeholder para compatibilidade */
.btn-services-cta {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(198, 165, 107, 0.6);
  border-radius: var(--radius-btn);
  padding: 16px 40px;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}

.btn-services-cta:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(198, 165, 107, 0.3);
}

.services-cta {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  z-index: 3;
}
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.service-card {
  background: var(--white);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.service-card-inner {
  padding: clamp(32px, 4vw, 52px);
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
}

.service-number {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
}

.service-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 20px;
}

.service-text {
  font-size: 0.9rem;
  color: var(--grayblue);
  line-height: 1.8;
}

.service-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover .service-card-accent {
  opacity: 1;
}

.services-cta {
  text-align: center;
}

/* ─── PROCESS SECTION ───────────────────────────────────────────── */
.process-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(198,165,107,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 50%, rgba(198,165,107,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.process-track {
  margin: -20px 0 30px;
  padding: 0 clamp(20px, 5vw, 80px);
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.process-wave {
  width: 100%;
  height: 80px;
  display: block;
}

.process-gold-path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  opacity: 0.65;
  stroke-dasharray: 5 5;
  filter: drop-shadow(0 0 6px rgba(198,165,107,0.5));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.process-step {
  text-align: center;
  padding: 20px clamp(10px, 2vw, 30px);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(198, 165, 107, 0.25);
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  color: var(--offwhite);
  margin-bottom: 12px;
}

.step-text {
  font-size: 0.88rem;
  color: rgba(247, 244, 239, 0.65);
  line-height: 1.7;
}

/* ─── DIFFERENTIALS SECTION ─────────────────────────────────────── */
.differentials-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.differentials-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.differentials-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.15;
}

.differentials-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: 0.88;
}

.differentials-section .container {
  position: relative;
  z-index: 1;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 2vw, 24px);
}

.differential-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(28px, 3vw, 44px) clamp(14px, 1.5vw, 20px);
  border: 1px solid rgba(198, 165, 107, 0.12);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.differential-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.differential-item:hover {
  border-color: rgba(198, 165, 107, 0.32);
  background: rgba(198, 165, 107, 0.04);
  transform: translateY(-4px);
}

.differential-item:hover::before {
  opacity: 1;
}

.differential-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 20px;
  opacity: 0.75;
  transition: opacity var(--transition), transform var(--transition);
}

.differential-item:hover .differential-icon {
  opacity: 1;
  transform: scale(1.08);
}

.differential-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.differential-title {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-style: normal;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.differential-text {
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 0.85vw, 0.85rem);
  color: rgba(247, 244, 239, 0.78);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── CTA FINAL SECTION ─────────────────────────────────────────── */
.cta-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 40, 53, 0.65) 0%,
    rgba(26, 40, 53, 0.78) 100%
  );
}

.cta-lines {
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: clamp(80px, 10vw, 130px) clamp(20px, 5vw, 80px) calc(clamp(80px, 10vw, 130px) + 40px);
  max-width: 780px;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.cta-text {
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  color: rgba(247, 244, 239, 0.78);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── FAQ SECTION ───────────────────────────────────────────────── */
.faq-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.faq-section > .container {
  position: relative;
  z-index: 1;
}
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(37, 55, 74, 0.1);
}

.faq-item:first-child {
  border-top: 1px solid rgba(37, 55, 74, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 400;
  color: var(--navy);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question[aria-expanded="true"] {
  color: var(--navy);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer.open {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  font-size: 0.92rem;
  color: var(--grayblue);
  line-height: 1.8;
  padding-bottom: 26px;
  max-width: 680px;
}

/* ─── FOOTER ────────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}

.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.12;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy-deep) 40%, rgba(26, 40, 53, 0.9) 100%);
}

.footer-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px) clamp(40px, 5vw, 60px);
}

.footer-logo {
  display: block;
  transition: opacity var(--transition);
}

.footer-logo:hover {
  opacity: 0.8;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 48px);
  justify-content: center;
}

.footer-link {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.6);
  transition: color var(--transition);
}

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

.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(198, 165, 107, 0.3);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(247, 244, 239, 0.4);
  letter-spacing: 0.04em;
}

/* ─── RESPONSIVE — TABLET ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .differentials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .what-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .what-left .section-title {
    text-align: center;
  }

  .what-left .label-tag {
    display: block;
    text-align: center;
  }

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

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .quote-inner {
    padding: clamp(28px, 4vw, 50px) clamp(20px, 4vw, 50px);
  }
}

/* ─── RESPONSIVE — MOBILE (768px) ───────────────────────────────── */
@media (max-width: 768px) {

  /* ── Variáveis mobile ── */
  :root {
    --section-pad: clamp(56px, 12vw, 80px);
  }

  /* ── Prevent overflow global ── */
  body {
    overflow-x: hidden;
  }

  /* ── Linhas douradas ficam atrás do conteúdo no mobile ── */
  .light-section-lines,
  .light-section-bg,
  .light-section-texture {
    z-index: 0 !important;
    pointer-events: none;
  }

  .context-section > .container,
  .faq-section > .container,
  .section-unified > * > .container,
  .audience-section > .container,
  .services-section > .container {
    position: relative;
    z-index: 2 !important;
  }

  /* Linhas SVG menores no mobile para não cobrir texto */
  .light-section-lines {
    opacity: 0.6;
  }

  /* ── Header / Nav ── */
  .nav-container {
    height: 80px;
    padding: 0 20px;
  }

  .logo-img {
    height: 56px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 85vw);
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 36px 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.05rem;
    opacity: 1;
  }

  .nav-cta-link {
    margin-top: 12px;
    padding: 12px 28px;
    font-size: 0.95rem;
    display: inline-block;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  /* ── Hero ── */
  .hero {
    min-height: 100svh;
    align-items: flex-end;
  }

  .hero-content {
    padding: 100px 24px 80px;
    min-height: 100svh;
    justify-content: flex-end;
  }

  .hero-inner {
    text-align: left;
    max-width: 100%;
  }

  .hero-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    margin-bottom: 22px;
  }

  .hero-title {
    font-size: clamp(2.6rem, 11vw, 3.4rem);
    line-height: 1.05;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 16px;
  }

  .hero-text {
    font-size: 0.9rem;
    margin-bottom: 36px;
    max-width: 100%;
    color: rgba(247,244,239,0.65);
  }

  .hero .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  .hero-badge {
    margin-top: 20px;
  }

  .hero-badge-text {
    font-size: 0.62rem;
  }

  /* Scroll indicator — esconde no mobile para não poluir */
  .hero-scroll-indicator {
    display: none;
  }

  /* Linhas douradas mais suaves no mobile */
  .gold-path {
    stroke-width: 1;
  }

  .gold-path--2 {
    stroke-width: 0.6;
  }

  .gold-path--3 {
    display: none;
  }

  /* ── Quote band ── */
  .quote-band {
    padding: clamp(40px, 8vw, 60px) 20px;
  }

  .quote-inner {
    padding: 32px 22px;
    max-width: 100%;
  }

  .quote-ornament-line {
    width: 36px;
  }

  .quote-label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    margin-bottom: 20px;
  }

  .quote-line-1 {
    font-size: clamp(1.2rem, 5.5vw, 1.6rem);
  }

  .quote-line-2 {
    font-size: clamp(1rem, 4.5vw, 1.35rem);
  }

  /* ── Context section ── */
  .context-section .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .problem-list {
    padding: 0 4px;
  }

  /* ── What section ── */
  .what-section {
    padding: var(--section-pad) 0;
  }

  .what-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .what-left .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    text-align: left;
  }

  .what-left .label-tag {
    text-align: left;
  }

  /* ── Audience section ── */
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 100%;
  }

  .audience-column {
    padding: 24px 0;
  }

  .audience-divider {
    height: 1px;
    min-height: auto;
    width: 100%;
    background: rgba(198, 165, 107, 0.2);
  }

  /* ── Services ── */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card-inner {
    padding: 28px 24px;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
  }

  .services-cta .btn {
    width: 100%;
    text-align: center;
  }

  /* ── Process ── */
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .process-track {
    display: none;
  }

  .process-step {
    padding: 16px 12px;
    border: 1px solid rgba(198, 165, 107, 0.12);
    border-radius: 2px;
  }

  .step-number {
    font-size: 2.5rem;
  }

  /* ── Differentials ── */
  .differentials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .differential-item {
    padding: 22px 16px;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .differential-icon {
    margin: 0 auto 14px !important;
    flex-shrink: unset;
  }

  .differential-title {
    font-size: 0.88rem;
  }

  .differential-text {
    font-size: 0.75rem;
  }

  /* ── CTA ── */
  .cta-section {
    min-height: auto;
  }

  .cta-content {
    padding: 70px 24px;
  }

  .cta-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .cta-text {
    font-size: 0.92rem;
  }

  .cta-content .btn-large {
    width: 100%;
    justify-content: center;
  }

  /* ── FAQ ── */
  .faq-question {
    font-size: 0.92rem;
    padding: 22px 0;
    gap: 12px;
  }

  /* ── Section headers ── */
  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  /* ── Footer ── */
  .footer-content {
    padding: 50px 24px 36px;
    gap: 24px;
  }

  .footer-logo-img {
    height: 60px;
  }

  .footer-nav {
    gap: 16px 24px;
  }

  .footer-link {
    font-size: 0.78rem;
  }
}

/* ─── RESPONSIVE — MOBILE PEQUENO (480px) ───────────────────────── */
@media (max-width: 480px) {

  .nav-container {
    height: 72px;
    padding: 0 16px;
  }

  .logo-img {
    height: 48px;
  }

  /* Hero em telas muito pequenas — alinhamento à esquerda (mais premium) */
  .hero-inner {
    text-align: left;
  }

  .hero-eyebrow::before {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.2rem, 12vw, 2.8rem);
    line-height: 1.08;
  }

  .hero-content {
    padding: 90px 20px 72px;
  }

  .hero .btn-primary {
    font-size: 0.85rem;
  }

  .hero-badge-text {
    font-size: 0.6rem;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
  }

  /* Process em coluna única */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 16px;
  }

  .process-step::before {
    display: none;
  }

  .step-number {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1.2;
    min-width: 40px;
  }

  .step-title {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .step-text {
    font-size: 0.83rem;
  }

  /* Diferenciais em coluna única — centralizado */
  .differentials-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
    gap: 10px;
  }

  .differential-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 16px 20px;
  }

  .differential-icon {
    margin: 0 !important;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin-top: 2px !important;
  }

  .differential-body {
    gap: 6px;
  }

  .differential-title {
    font-size: 0.9rem;
  }

  .differential-text {
    font-size: 0.78rem;
    color: rgba(247, 244, 239, 0.5);
  }

  /* Quote band tela pequena */
  .quote-text {
    font-size: clamp(1.1rem, 5.5vw, 1.4rem);
  }

  .quote-inner {
    padding: 28px 20px;
  }

  /* Botões full width */
  .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-cta-link {
    width: auto;
  }

  /* Cards de serviço */
  .service-card-inner {
    padding: 24px 20px;
  }

  .service-title {
    font-size: 1.2rem;
  }

  /* Section title menor */
  .section-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  /* Audience closing */
  .audience-closing p {
    font-size: 1rem;
  }

  /* FAQ menor */
  .faq-question {
    font-size: 0.88rem;
  }

  .faq-answer-inner p {
    font-size: 0.88rem;
  }
}

/* ─── MOBILE MENU OVERLAY ────────────────────────────────────────── */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 40, 53, 0.6);
  z-index: 998;
  backdrop-filter: blur(4px);
}

.menu-overlay.active {
  display: block;
}

/* ─── FOCUS STYLES (Accessibility) ──────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ─── SELECTION ─────────────────────────────────────────────────── */
::selection {
  background: rgba(198, 165, 107, 0.25);
  color: var(--navy);
}

/* ═══════════════════════════════════════════════════════════════════
   BOTÃO FLUTUANTE WHATSAPP
   ═══════════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  border-radius: 100px;
  padding: 14px 14px;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  overflow: hidden;
  max-width: 60px;
}

.whatsapp-float:hover {
  max-width: 220px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.whatsapp-tooltip {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease 0.1s;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Pulse animation */
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(255,255,255,0.2);
  transform: scale(0);
  animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 24px;
    right: 16px;
    padding: 13px;
    max-width: 54px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
  .whatsapp-float:hover {
    max-width: 54px;
    padding: 13px;
    transform: none;
  }
  .whatsapp-float::after {
    animation: waPulse 2s ease-out infinite;
  }
  .whatsapp-tooltip {
    display: none;
  }
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SEÇÃO INSTAGRAM
   ═══════════════════════════════════════════════════════════════════ */
.instagram-section {
  background: var(--navy);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}

.instagram-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(198,165,107,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.instagram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.instagram-title-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.instagram-logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.instagram-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--offwhite);
  line-height: 1.1;
  margin-bottom: 4px;
}

.instagram-handle {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.instagram-handle:hover {
  opacity: 0.75;
}

/* Botão outline dourado */
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-btn);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Grid de posts */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.instagram-post {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  display: block;
  cursor: pointer;
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.85) saturate(0.9);
}

.instagram-post:hover img {
  transform: scale(1.06);
  filter: brightness(0.65) saturate(0.8);
}

.instagram-post-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(37, 55, 74, 0.3);
}

.instagram-post:hover .instagram-post-overlay {
  opacity: 1;
}

.instagram-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .instagram-grid .instagram-post:nth-child(n+4) {
    display: none;
  }
}

@media (max-width: 600px) {
  .instagram-section {
    padding: 48px 0;
  }

  .instagram-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }

  .instagram-title-group {
    gap: 12px;
  }

  .instagram-logo-icon {
    width: 32px;
    height: 32px;
  }

  .instagram-title {
    font-size: 1.5rem;
    margin-bottom: 2px;
  }

  .instagram-handle {
    font-size: 0.82rem;
  }

  .btn-outline-gold {
    padding: 10px 22px;
    font-size: 0.78rem;
    width: 100%;
    justify-content: center;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }

  .instagram-grid .instagram-post:nth-child(n+4) {
    display: none;
  }

  .instagram-cta {
    margin-top: 24px;
  }

  .instagram-cta .btn-outline-gold {
    width: auto;
    padding: 12px 32px;
  }
}

/* ─── PREMIUM EXTRA DETAILS ─────────────────────────────────────── */

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--offwhite);
}
::-webkit-scrollbar-thumb {
  background: rgba(198, 165, 107, 0.4);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Section spacing rhythm */
.context-section,
.audience-section,
.services-section,
.faq-section {
  background-color: var(--offwhite);
}

/* Subtle texture on off-white sections */
.section-cream::after {
  content: none;
}

/* Service cards grid — consistent height */
.services-grid {
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card-inner {
  flex: 1;
}

/* Process section decorative dots */
.process-step {
  position: relative;
}

.process-step::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 24px;
  opacity: 0.6;
}

/* Quote band decorative element */
.quote-band::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(198, 165, 107, 0.4), transparent);
}

/* Smooth loading state */
body {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* CTA section min-height for drama */
.cta-section {
  min-height: 65vh;
}

/* Footer top decorative line */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: rgba(198, 165, 107, 0.35);
  z-index: 1;
}

/* Light blue section enhanced */
.section-light-blue {
  background: linear-gradient(135deg, #C9D8E8 0%, #D8E6F0 50%, #C9D8E8 100%);
}

/* What-section text on light blue */
.what-section .what-text,
.what-section .what-lead,
.what-section .what-list li {
  color: var(--navy);
}

/* Process step bottom padding */
.process-step {
  padding-bottom: 20px;
}

/* Hero scroll hint text */
@keyframes bounceY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Ensure process section has enough breathing room */
.process-section .container {
  position: relative;
  z-index: 1;
}

/* FAQ last item no border */
.faq-item:last-child {
  border-bottom: 1px solid rgba(37, 55, 74, 0.1);
}

/* Ensure full-width wave transitions */
.transition-wave,
.transition-wave--reverse,
.transition-wave--from-navy {
  width: 100%;
  overflow: hidden;
}

/* Prevent any section from overflowing horizontally */
section, footer, header, .container {
  max-width: 100%;
}

/* Images never overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Better card border on light theme */
.service-card {
  border: 1px solid rgba(37, 55, 74, 0.06);
}

/* Hover state enhancement */
.service-card:hover .service-icon svg circle,
.service-card:hover .service-icon svg path,
.service-card:hover .service-icon svg line,
.service-card:hover .service-icon svg rect {
  stroke: var(--gold-light);
  transition: stroke 0.3s ease;
}

/* Audience section light blue tint */
.audience-section {
  background: linear-gradient(180deg, var(--offwhite) 0%, rgba(201, 216, 232, 0.12) 100%);
}

/* What section label alignment */
.what-left .label-tag {
  display: inline-block;
}

/* Ensure proper stacking contexts */
.hero,
.cta-section,
.differentials-section,
.site-footer {
  isolation: isolate;
}
