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

@font-face {
  font-family: 'Sora';
  src: url('assets/fonte/Sora[wght].woff2') format('woff2');
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --black: #080808;
  --black-2: #0f0f0f;
  --black-3: #161616;
  --gold: #C8973F;
  --gold-light: #E2B86A;
  --surface-hover: #1a1710;
  --gold-dim: rgba(200,151,63,0.15);
  --gold-border: rgba(200,151,63,0.3);
  --gold-border-solid: rgba(200,151,63,0.55);
  --gold-border-glow: rgba(200,151,63,0.12);
  --gold-border-gradient: linear-gradient(135deg, rgba(226,184,106,0.7) 0%, rgba(200,151,63,0.35) 40%, rgba(200,151,63,0.08) 100%);
  --cream: #F0E8D5;
  --cream-dim: rgba(240,232,213,0.82);
  --white: #FAFAF8;
  --whatsapp: #25D366;
  --whatsapp-dark: #1ebe5d;
  --on-whatsapp: #f7fff9;
  --focus-ring: rgba(226,184,106,0.84);
  --focus-glow: rgba(200,151,63,0.28);
  --content-width: 570px; /* (100vw - 1140px) / 2 = conte�do de 1140px */
  --content-max-pad: 390px;
  --section-pad-inline: clamp(24px, calc(50vw - var(--content-width)), var(--content-max-pad));
  --space-2xs: clamp(6px, 0.35vw, 10px);
  --space-xs: clamp(10px, 0.6vw, 14px);
  --space-sm: clamp(14px, 0.9vw, 20px);
  --space-md: clamp(20px, 1.6vw, 32px);
  --space-lg: clamp(28px, 2.4vw, 44px);
  --space-xl: clamp(40px, 4.8vw, 72px);
  --space-2xl: clamp(56px, 7vw, 104px);
  --space-3xl: clamp(72px, 9.5vw, 132px);
  --text-label: 0.75rem;
  --text-meta: 0.875rem;
  --text-body: 1rem;
  --text-body-lg: 1.125rem;
  --leading-tight: 1.1;
  --leading-body: 1.76;
  --tracking-label: 0.16em;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', sans-serif;
  font-size: var(--text-body);
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  line-height: var(--leading-body);
  letter-spacing: 0.01em;
  font-kerning: normal;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(200,151,63,0.14);
  z-index: 1200;
  pointer-events: none;
}
.scroll-progress__fill {
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold) 62%, #B17A2D 100%);
  box-shadow: 0 0 14px rgba(200,151,63,0.45);
  transition: transform 120ms linear;
}

/* -- NAV -- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 20px;
  display: flex; justify-content: center;
}
.nav-pill {
  width: fit-content;
  max-width: 100%;
  display: inline-flex; align-items: center; justify-content: flex-start; gap: 10px;
  padding: 7px 8px 7px 7px;
  border-radius: 999px;
  background: rgba(12,12,12,0.72);
  border: 1px solid rgba(240,232,213,0.09);
  box-shadow: 0 14px 40px rgba(0,0,0,0.24);
  backdrop-filter: blur(16px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
nav.is-scrolled .nav-pill {
  background: rgba(8,8,8,0.9);
  border-color: rgba(200,151,63,0.18);
  box-shadow: 0 18px 48px rgba(0,0,0,0.34);
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-brand-media {
  min-width: 88px;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(200,151,63,0.2) 0%, rgba(240,232,213,0.1) 100%);
  border: 1px solid rgba(200,151,63,0.18);
  color: var(--cream-dim);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}
.nav-cta {
  background: var(--whatsapp);
  color: var(--on-whatsapp); font-family: 'Sora', sans-serif;
  font-size: var(--text-label); font-weight: 700; letter-spacing: 0.06em;
  padding: 12px 16px; border-radius: 999px; border: none;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.nav-cta svg { width: 14px; height: 14px; }
.nav-cta:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.28);
}
.nav-cta:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px var(--focus-glow);
}

/* -- HERO -- */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: clamp(88px, 11vw, 136px) var(--section-pad-inline) clamp(72px, 9vw, 120px);
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.75) 50%, rgba(8,8,8,0.55) 100%);
  pointer-events: none;
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 30%);
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--text-label); font-weight: 600; letter-spacing: var(--tracking-label);
  text-transform: uppercase; color: var(--gold);
  margin-bottom: var(--space-lg);
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}
.hero-h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
  color: var(--white);
  margin-bottom: var(--space-md);
}
.hero-h1 .gold { color: var(--gold); }
.hero-h1 .underline-gold {
  position: relative; display: inline-block;
}
.hero-h1 .underline-gold::after {
  content: ''; position: absolute; left: 0; bottom: -4px; right: 0;
  height: 3px; background: var(--gold); border-radius: 2px;
}
.hero-h1 .google-word {
  display: inline-flex;
  gap: 0;
}
.hero-h1 .google-letter {
  font: inherit;
  line-height: inherit;
}
.hero-h1 .google-blue { color: #4285f4; }
.hero-h1 .google-red { color: #ea4335; }
.hero-h1 .google-yellow { color: #fbbc05; }
.hero-h1 .google-green { color: #34a853; }
.hero-sub {
  font-size: var(--text-body-lg); font-weight: 400; line-height: var(--leading-body);
  color: var(--cream-dim); max-width: 62ch;
  margin-bottom: var(--space-lg);
}
.hero-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; align-items: center; }
.btn-whatsapp {
  background: var(--whatsapp); color: #062313;
  font-family: 'Sora', sans-serif; font-size: var(--text-body); font-weight: 600;
  padding: 16px 32px; border-radius: 6px; border: none; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 32px rgba(37,211,102,0.25);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,0.35); }
.btn-whatsapp:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px var(--focus-glow);
}
.btn-ghost {
  background: transparent; color: var(--cream-dim);
  font-family: 'Sora', sans-serif; font-size: var(--text-meta); font-weight: 500;
  padding: 16px 24px; border-radius: 6px;
  border: 1px solid rgba(240,232,213,0.2); cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.hero-badges {
  margin-top: var(--space-xl);
  display: flex; gap: var(--space-lg); flex-wrap: wrap;
}
.hero-badge {
  display: flex; align-items: center; gap: 10px;
  font-size: var(--text-meta); font-weight: 500; color: var(--cream-dim);
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero-google-cues {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}
.hero-google-cue {
  width: 44px;
  height: 4px;
  border-radius: 999px;
  opacity: 0.9;
}
.hero-google-cue-blue { background: #8ab4f8; }
.hero-google-cue-red { background: #f28b82; }
.hero-google-cue-yellow { background: #fdd663; }
.hero-google-cue-green { background: #81c995; }

.scroll-indicator {
  position: absolute; bottom: 40px; left: 60px;
  display: flex; align-items: center; gap: 12px;
  font-size: var(--text-label); letter-spacing: var(--tracking-label); text-transform: uppercase;
  color: rgba(200,151,63,0.5);
}
.scroll-line { width: 40px; height: 1px; background: rgba(200,151,63,0.3); }

/* -- SECTION COMMON -- */
section { padding: var(--space-2xl) var(--section-pad-inline); }
@supports (content-visibility: auto) {
  #video-apresentacao,
  #dor,
  #urgencia,
  #diferenciais,
  #depoimentos,
  #preco,
  #faq,
  #cta-final,
  footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }
}
.section-label {
  font-size: var(--text-label); font-weight: 600; letter-spacing: var(--tracking-label);
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: var(--space-xs);
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; line-height: var(--leading-tight); letter-spacing: -0.02em;
  color: var(--white); max-width: 720px;
  margin-bottom: var(--space-sm);
}
.section-title .gold { color: var(--gold); }
.section-sub {
  font-size: var(--text-body); font-weight: 400; line-height: var(--leading-body);
  color: var(--cream-dim); max-width: 62ch; margin-bottom: var(--space-xl);
}

/* -- DOR -- */
#dor { background: var(--black-2); }
.dor-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-top: var(--space-xl);
}
.dor-card {
  background: var(--black-3); padding: clamp(30px, 3.4vw, 46px) clamp(24px, 2.8vw, 38px);
  border-top: 1px solid var(--gold-border);
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.dor-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, var(--gold) 0%, transparent 100%);
  opacity: 0.001; transition: opacity 0.3s;
}
.dor-card:hover { background: var(--surface-hover); }
.dor-card:hover::before { opacity: 1; }
.dor-number {
  font-size: 3.5rem; font-weight: 800; color: var(--gold-border);
  line-height: 1; margin-bottom: var(--space-md); letter-spacing: -0.04em;
}
.dor-card h3 {
  font-size: 1.1rem; font-weight: 700; color: var(--white);
  margin-bottom: var(--space-xs); line-height: 1.3;
}
.dor-card p {
  font-size: var(--text-body); font-weight: 400; color: var(--cream-dim); line-height: var(--leading-body);
  max-width: 42ch;
}

/* -- URG�NCIA -- */
#urgencia {
  background: var(--black);
}
.urgencia-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center;
}
.urgencia-stat {
  display: flex; flex-direction: column; gap: var(--space-md);
}
.stat-item {
  display: flex; align-items: flex-start; gap: 24px;
  padding-bottom: var(--space-md); border-bottom: 1px solid rgba(240,232,213,0.06);
}
.stat-item:last-child { border-bottom: none; padding-bottom: 0; }
.stat-number {
  font-size: 2.8rem; font-weight: 800; color: rgba(200,151,63,0.55);
  letter-spacing: -0.03em; line-height: 1; flex-shrink: 0; min-width: 100px;
  transition: color 0.5s ease;
}
.stat-number.stat-number--ready { color: var(--gold); }
.stat-text h4 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.stat-text p { font-size: var(--text-body); font-weight: 400; color: var(--cream-dim); line-height: var(--leading-body); max-width: 42ch; }

.urgencia-quote {
  font-size: clamp(1.12rem, 1.2vw, 1.35rem); font-weight: 400; line-height: 1.62;
  color: var(--cream);
  margin-bottom: var(--space-lg);
  padding: clamp(20px, 2.3vw, 32px) clamp(22px, 2.7vw, 38px);
  border: 1px solid rgba(200,151,63,0.34);
  background: linear-gradient(140deg, rgba(200,151,63,0.14) 0%, rgba(20,17,12,0.94) 42%, rgba(14,14,14,0.98) 100%);
  max-width: 62ch;
}
.urgencia-quote strong { font-weight: 700; color: var(--gold); }

/* -- DIFERENCIAIS -- */
#diferenciais {
  position: relative;
  background: var(--black-2);
  overflow: hidden;
}

.diff-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/imagens/diferenciais-bg.webp');
  background-size: cover;
  background-position: right center;
  background-attachment: scroll;
}

.diff-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.85) 40%, rgba(15, 15, 15, 0.6) 70%, rgba(15, 15, 15, 0.3) 100%);
  pointer-events: none;
}

.diff-content {
  position: relative;
  z-index: 2;
}
.diff-list {
  display: grid; grid-template-columns: 1fr; gap: 2px;
  margin-top: var(--space-xl);
  max-width: min(56%, 760px);
}
.diff-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: clamp(24px, 2.5vw, 34px) clamp(24px, 2.8vw, 38px);
  background: var(--black-3);
  transition: background 0.3s;
}
.diff-item:hover { background: var(--surface-hover); }
.diff-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.diff-check svg { width: 14px; height: 14px; color: var(--gold); }
.diff-text h3 { font-size: var(--text-body); font-weight: 600; color: var(--white); margin-bottom: 6px; line-height: 1.35; }
.diff-text p { font-size: var(--text-body); font-weight: 400; color: var(--cream-dim); line-height: var(--leading-body); max-width: 46ch; }
.diff-price-box {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #1a1508 0%, #0f0d06 100%);
  border: 1px solid var(--gold-border);
  padding: 48px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.diff-price-box h3 { font-size: 1.1rem; font-weight: 600; color: var(--cream); max-width: 420px; line-height: 1.5; }
.price-display { text-align: right; flex-shrink: 0; }
.price-display .from { font-size: var(--text-label); text-transform: uppercase; letter-spacing: var(--tracking-label); color: var(--cream-dim); }
.price-display .value { font-size: 3rem; font-weight: 800; color: var(--gold); letter-spacing: -0.03em; }
.price-display .period { font-size: var(--text-meta); color: var(--cream-dim); font-weight: 400; }

/* -- DEPOIMENTOS -- */
#depoimentos { background: var(--black); }
.dep-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}
.dep-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.dep-control {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(200,151,63,0.22);
  background: rgba(16,16,16,0.9);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.dep-control:hover {
  transform: translateY(-1px);
  border-color: rgba(200,151,63,0.5);
  background: rgba(24,20,12,0.95);
}
.dep-control svg {
  width: 18px;
  height: 18px;
}
.dep-carousel {
  margin-top: var(--space-lg);
  overflow: hidden;
}
.dep-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.dep-card {
  flex: 0 0 100%;
  background: linear-gradient(180deg, rgba(26,26,26,0.96), rgba(15,15,15,0.96));
  padding: clamp(30px, 3vw, 42px) clamp(24px, 2.8vw, 38px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200,151,63,0.12);
  transition: background 0.3s;
}
.dep-card:hover { background: var(--surface-hover); }
.dep-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  margin-top: 22px;
}
.dep-dot {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s ease;
}
.dep-dot::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(240,232,213,0.42);
  transition: width 0.22s ease, background 0.22s ease;
}
.dep-dot.is-active::before {
  width: 28px;
  background: var(--gold);
}
.dep-dot:hover {
  transform: scale(1.08);
}
.dep-control:focus-visible,
.dep-dot:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px var(--focus-glow);
}
.dep-grid {
  display: none;
  margin-top: 60px;
}
.dep-text {
  font-size: var(--text-body); font-weight: 400; line-height: var(--leading-body);
  color: var(--cream-dim); margin-bottom: 32px;
  max-width: 64ch;
}
.dep-author { display: flex; align-items: center; gap: 14px; }
.dep-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; color: var(--gold); flex-shrink: 0;
  overflow: hidden;
}
.dep-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dep-author-name { font-size: var(--text-body); font-weight: 600; color: var(--white); }
.dep-author-role { font-size: var(--text-meta); font-weight: 400; color: var(--cream-dim); margin-top: 2px; }
.dep-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.dep-stars span { color: var(--gold); font-size: 0.9rem; }

/* -- PRE�O -- */
#preco {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(200,151,63,0.18), transparent 0 26%),
    radial-gradient(circle at 18% 100%, rgba(226,184,106,0.08), transparent 0 34%),
    linear-gradient(180deg, #0b0b0b 0%, #080808 100%);
}
#preco::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(200,151,63,0.06) 49%, transparent 100%);
  opacity: 0.9;
}
.price-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 1px;
  margin-top: var(--space-xl);
  border: 1px solid rgba(200,151,63,0.2);
  background: linear-gradient(135deg, rgba(226,184,106,0.3) 0%, rgba(200,151,63,0.08) 28%, rgba(200,151,63,0.16) 100%);
  box-shadow: 0 28px 90px rgba(0,0,0,0.42), 0 0 0 1px rgba(200,151,63,0.06);
  overflow: hidden;
}
.price-card-copy,
.price-card-side {
  background: var(--black-3);
  padding: clamp(30px, 3.2vw, 44px) clamp(24px, 3vw, 40px);
}
.price-card-copy {
  position: relative;
  background:
    linear-gradient(145deg, rgba(200,151,63,0.22) 0%, rgba(22,22,22,0.98) 26%, rgba(22,22,22,1) 62%, rgba(30,22,10,0.96) 100%);
}
.price-card-copy::before {
  content: '';
  position: absolute;
  top: 22px;
  right: 22px;
  width: 116px;
  height: 116px;
  border-top: 1px solid rgba(200,151,63,0.24);
  border-right: 1px solid rgba(200,151,63,0.24);
  opacity: 0.8;
}
.price-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.price-kicker {
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.price-mark {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(200,151,63,0.22);
  background: rgba(200,151,63,0.08);
  color: var(--cream);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-amount {
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  font-weight: 800;
  color: var(--white);
  max-width: 6.5ch;
  text-wrap: balance;
}
.price-amount span {
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-left: 14px;
}
.price-emphasis {
  margin-top: 22px;
  max-width: 420px;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--cream);
  font-weight: 400;
}
.price-note {
  margin-top: var(--space-sm);
  max-width: 560px;
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--cream-dim);
  font-weight: 400;
}
.price-note-break {
  margin-top: 10px;
}
.price-card-side {
  display: grid;
  align-content: start;
  gap: 14px;
  background: linear-gradient(180deg, rgba(18,18,18,0.96) 0%, rgba(14,14,14,1) 100%);
}
.price-side-label {
  max-width: 280px;
  margin-bottom: 8px;
  font-size: var(--text-meta);
  line-height: 1.65;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.price-side-item {
  padding: 22px 22px;
  border: 1px solid rgba(200,151,63,0.18);
  background: linear-gradient(180deg, rgba(200,151,63,0.08) 0%, rgba(200,151,63,0.03) 100%);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.price-side-item:hover {
  transform: translateX(4px);
  border-color: rgba(226,184,106,0.34);
  background: linear-gradient(180deg, rgba(200,151,63,0.12) 0%, rgba(200,151,63,0.05) 100%);
}
.price-side-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.price-side-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.price-side-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.price-side-item strong {
  display: block;
  font-size: var(--text-body);
  color: var(--white);
}
.price-side-item span {
  display: block;
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--cream-dim);
}
.price-includes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: var(--space-sm);
  border: 1px solid rgba(200,151,63,0.14);
  background: rgba(200,151,63,0.09);
  counter-reset: price-includes;
}
.price-includes-single {
  display: block;
  border: none;
  background: transparent;
  margin-top: var(--space-md);
}
.price-include-item {
  position: relative;
  counter-increment: price-includes;
  background: var(--black-3);
  padding: 42px 32px 34px;
  min-height: 220px;
  border-top: 1px solid rgba(200,151,63,0.12);
  transition: background 0.3s ease, transform 0.3s ease;
}
.price-include-item::before {
  content: '0' counter(price-includes);
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(200,151,63,0.14);
}
.price-include-item:hover {
  background: var(--surface-hover);
  transform: translateY(-4px);
}
.price-include-item h3 {
  max-width: 240px;
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 14px;
}
.price-include-item p {
  max-width: 280px;
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--cream-dim);
  font-weight: 400;
}
.price-include-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 140px;
  background: linear-gradient(160deg, rgba(200,151,63,0.15) 0%, rgba(22,22,22,1) 45%, rgba(22,22,22,1) 100%);
}
.price-cta-wrap {
  display: flex;
  justify-content: center;
}
.price-cta-button {
  width: min(100%, 520px);
  justify-content: center;
  padding-inline: 32px;
}

/* -- FAQ -- */
#faq {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(226,184,106,0.12), transparent 0 28%),
    radial-gradient(circle at 88% 95%, rgba(200,151,63,0.1), transparent 0 32%),
    linear-gradient(180deg, #0b0b0b 0%, #090909 100%);
}
#faq::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(200,151,63,0.08) 49%, transparent 100%);
  opacity: 0.8;
}
.faq-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
}
.faq-item {
  border: 1px solid rgba(200,151,63,0.2);
  background: linear-gradient(140deg, rgba(22,22,22,0.95) 0%, rgba(14,14,14,0.98) 100%);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.faq-item:hover {
  border-color: rgba(226,184,106,0.35);
  background: linear-gradient(140deg, rgba(27,22,14,0.94) 0%, rgba(17,14,11,0.98) 100%);
  transform: translateY(-2px);
}
.faq-item summary:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: -2px;
}
.faq-item[open] {
  border-color: rgba(226,184,106,0.42);
  background: linear-gradient(150deg, rgba(200,151,63,0.12) 0%, rgba(21,18,14,0.98) 34%, rgba(15,14,12,1) 100%);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  width: 28px;
  height: 28px;
  border: 1px solid rgba(200,151,63,0.3);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, color 0.25s ease;
}
.faq-item[open] summary::after {
  content: '-';
  border-color: rgba(226,184,106,0.55);
  color: var(--gold-light);
  transform: rotate(180deg);
}
.faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0.001;
  padding: 0 28px;
  transition: height 0.52s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.faq-answer p {
  max-width: 880px;
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--cream-dim);
  font-weight: 400;
  padding-bottom: 24px;
  transform: translateY(-6px);
  transition: transform 0.42s ease;
}
.faq-item[open] .faq-answer {
  opacity: 1;
}
.faq-item[open] .faq-answer p {
  transform: translateY(0);
}
.faq-cta {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

/* -- CTA FINAL -- */
#cta-final {
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) var(--section-pad-inline);
  text-align: left;
}

#cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/imagens/cta-final-bg.webp');
  background-size: cover;
  background-position: right center;
}

#cta-final::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(102deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 45%, rgba(0, 0, 0, 0.7) 68%, rgba(0, 0, 0, 0.45) 100%),
    radial-gradient(circle at 20% 45%, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0) 52%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.cta-eyebrow {
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.cta-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-title .gold {
  color: var(--gold);
}

.cta-sub {
  font-size: var(--text-body);
  font-weight: 400;
  color: var(--cream-dim);
  line-height: var(--leading-body);
  max-width: 62ch;
  margin-bottom: var(--space-xl);
}

.cta-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  align-items: center;
}

.cta-note {
  margin-top: 28px;
  font-size: var(--text-meta);
  font-weight: 400;
  color: rgba(240,232,213,0.35);
  letter-spacing: 0.04em;
}

.cta-line-deco {
  position: absolute;
  bottom: 0;
  left: var(--section-pad-inline);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  z-index: 2;
}

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

/* -- FOOTER -- */
footer {
  background: var(--black);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent 0%, rgba(200,151,63,0.55) 30%, rgba(226,184,106,0.8) 50%, rgba(200,151,63,0.55) 70%, transparent 100%) 1;
  padding: var(--space-xl) var(--section-pad-inline) 0;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(200,151,63,0.12) 25%, rgba(200,151,63,0.25) 50%, rgba(200,151,63,0.12) 75%, transparent 100%);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
  position: relative;
  display: inline-block;
}
.footer-logo::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.5;
}
.footer-logo span { color: var(--cream-dim); font-weight: 300; }

.footer-tagline {
  font-size: var(--text-body);
  font-weight: 400;
  color: rgba(240,232,213,0.72);
  line-height: var(--leading-body);
  margin: 0;
  max-width: 220px;
}

.footer-col { display: flex; flex-direction: column; gap: 20px; }

.footer-col-label {
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--gold);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-size: var(--text-meta);
  font-weight: 400;
  color: rgba(240,232,213,0.72);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  position: relative;
}
.footer-nav a::before {
  content: '';
  position: absolute;
  left: -12px; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.001;
  transition: opacity 0.2s;
}
.footer-nav a:hover { color: var(--cream); padding-left: 8px; }
.footer-nav a:hover::before { opacity: 1; }

.footer-contacts { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-meta);
  font-weight: 400;
  color: rgba(240,232,213,0.72);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-item svg { color: rgba(200,151,63,0.55); flex-shrink: 0; transition: color 0.2s; }
.footer-contact-item:hover { color: var(--cream); }
.footer-contact-item:hover svg { color: var(--gold); }

.footer-bottom {
  padding: 0 0 40px;
}
.footer-bottom-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,232,213,0.08) 30%, rgba(240,232,213,0.08) 70%, transparent);
  margin-bottom: 28px;
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-legal { font-size: var(--text-label); font-weight: 400; color: rgba(240,232,213,0.62); }
.footer-legal-sub { color: rgba(226,184,106,0.68); }

/* -- DIVIDER -- */
.gold-divider {
  width: 100%;
  height: 0;
  border: none;
  border-top: 1px solid transparent;
  border-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 10%,
    rgba(200,151,63,0.85) 35%,
    rgba(200,151,63,0.85) 65%,
    transparent 90%,
    transparent 100%
  ) 1;
  display: block;
  flex-shrink: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* -- SCROLL REVEAL -- */
.reveal { opacity: 0.001; transform: translateY(30px); }
.reveal.visible { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }

.stagger-item {
  opacity: 0.001;
  transform: translateY(24px);
  transition:
    opacity 0.62s ease var(--reveal-delay, 0ms),
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}
.stagger-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -- FLOATING WA BUTTON -- */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.55); }
.wa-float:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 4px;
  box-shadow: 0 0 0 4px var(--focus-glow);
}
.wa-float svg { width: 30px; height: 30px; fill: var(--on-whatsapp); }
.wa-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  background: rgba(37,211,102,0.25);
  animation: wa-pulse 2.5s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 0.001; }
}

@media (min-width: 1200px) and (prefers-reduced-motion: no-preference) {
  .diff-bg {
    background-attachment: fixed;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal.visible,
  .stagger-item,
  .stagger-item.is-visible,
  .vid-stage,
  .vid-stage.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .wa-pulse,
  .gold-border--shine::after,
  .vid-frame-glow,
  .vid-scan-line,
  .vid-label-dot {
    animation: none;
  }
}

/* -- RESPONSIVE -- */
@media (max-width: 1024px) {
  nav { padding: 14px 18px; }
  section { padding: 80px 32px; }
  #hero { padding: 100px 32px 70px; }
  .hero-content { max-width: 580px; }
  .hero-h1 { font-size: 3.4rem; }
  .dor-grid { grid-template-columns: 1fr 1fr; }
  .urgencia-inner { grid-template-columns: 1fr; gap: 48px; }
  .diff-list { grid-template-columns: 1fr; max-width: 100%; }
  .dep-header { align-items: start; flex-direction: column; }
  .dep-controls { align-self: flex-start; }
  .price-card { grid-template-columns: 1fr; }
  .price-includes { grid-template-columns: 1fr; }
  .faq-item summary {
    padding: 22px 24px;
    font-size: var(--text-body);
  }
  .faq-answer {
    padding: 0 24px;
  }
  .faq-item[open] .faq-answer p {
    padding-bottom: 22px;
  }
  footer { padding: 56px 32px 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; flex-direction: row; align-items: flex-start; gap: 32px; }
  .footer-tagline { max-width: none; }
}
@media (max-width: 640px) {
  nav { padding: 12px 14px; }
  .nav-pill { display: none; }
  .nav-brand { flex: 1 1 auto; min-width: 0; }
  .nav-brand-media {
    min-width: 0;
    width: 100%;
    height: 38px;
    padding: 0 14px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
  .nav-cta {
    padding: 11px 14px;
    font-size: var(--text-label);
    letter-spacing: 0.02em;
  }
  .nav-cta svg { width: 13px; height: 13px; }
  section { padding: 64px 20px; }
  .btn-whatsapp {
    width: min(100%, 520px);
    justify-content: center;
    padding-inline: 32px;
  }
  #hero { padding: 90px 20px 60px; }
  .hero-content { max-width: 100%; }
  .hero-h1 { font-size: 2.9rem; }
  .hero-badges {
    margin-top: 40px;
    gap: 12px;
    justify-content: flex-start;
  }
  .hero-badge { font-size: var(--text-meta); }
  .hero-google-cues { margin-top: 22px; }
  .hero-google-cue {
    width: 34px;
    height: 3px;
  }
  .dor-grid { grid-template-columns: 1fr; }
  .dep-header { gap: 16px; }
  .dep-controls { gap: 8px; }
  .dep-control {
    width: 42px;
    height: 42px;
  }
  .price-card-copy,
  .price-card-side,
  .price-include-item {
    padding: 28px 24px;
  }
  .price-card {
    margin-top: 40px;
  }
  .price-note {
    font-size: var(--text-body);
  }
  .price-side-item {
    padding: 18px 18px;
  }
  .price-mark {
    padding: 0 12px;
    font-size: var(--text-label);
  }
  .price-emphasis {
    font-size: 1rem;
  }
  .price-amount span {
    display: block;
    margin: 12px 0 0;
    letter-spacing: 0.08em;
  }
  .price-side-label {
    max-width: none;
    margin-bottom: 4px;
  }
  .faq-list {
    margin-top: 30px;
    gap: 10px;
  }
  .faq-item summary {
    padding: 18px 18px;
    font-size: var(--text-body);
    line-height: 1.5;
  }
  .faq-item summary::after {
    width: 24px;
    height: 24px;
    font-size: 1.05rem;
  }
  .faq-answer {
    padding: 0 18px;
  }
  .faq-answer p {
    font-size: var(--text-body);
    line-height: var(--leading-body);
    padding-bottom: 18px;
  }
  .faq-cta {
    margin-top: 24px;
  }
  .price-include-item {
    min-height: 0;
  }
  .price-include-item::before {
    top: 14px;
    right: 16px;
    font-size: 2.4rem;
  }
  #cta-final::before,
  #cta-final::after {
    display: none;
  }
  .cta-mobile-bg {
    display: block;
    width: calc(100% + 40px);
    margin: 28px -20px 0;
    height: 220px;
    background-image: url('assets/imagens/cta-final-bg.webp');
    background-size: cover;
    background-position: center bottom;
  }
  #diferenciais {
    background: var(--black-2);
  }
  #diferenciais .diff-bg,
  #diferenciais .diff-bg-overlay {
    display: none;
  }
  #diferenciais::after {
    content: "";
    display: block;
    width: calc(100% + 40px);
    margin: 28px -20px 0;
    height: 220px;
    background-image: url('assets/imagens/diferenciais-bg.webp');
    background-size: cover;
    background-position: center bottom;
  }
  .diff-list {
    width: 100%;
    max-width: 100%;
  }
  .diff-item { padding: 28px 22px; }
  .diff-price-box { flex-direction: column; text-align: center; padding: 36px 24px; }
  .price-display { text-align: center; }
  footer { padding: 48px 20px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { flex-direction: column; gap: 12px; }
  .footer-tagline { max-width: none; }
  .footer-bottom-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .scroll-indicator { display: none; }
}

/* -- GOLD BORDER � sistema moderno de borda dourada -- */

/* Utilit�rio base: borda com gradiente via border-image */
.gold-border {
  position: relative;
  border-radius: 4px;
  background: transparent;
}
.gold-border::before {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--gold-border-gradient);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Variante com glow sutil ao redor */
.gold-border--glow {
  box-shadow:
    0 0 0 1px var(--gold-border-solid),
    0 0 18px 0 var(--gold-border-glow),
    0 0 40px 0 rgba(200,151,63,0.06);
}
.gold-border--glow::before {
  background: linear-gradient(
    135deg,
    rgba(226,184,106,0.9) 0%,
    rgba(200,151,63,0.5) 45%,
    rgba(200,151,63,0.15) 100%
  );
}

/* Variante top-only: linha superior com fade lateral (para se��es) */
.gold-border--top {
  border-top: 1px solid transparent;
  background-image: linear-gradient(var(--black), var(--black)),
    linear-gradient(to right, transparent 0%, var(--gold-border-solid) 25%, var(--gold-border-solid) 75%, transparent 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.gold-border--top::before { display: none; }

/* Variante "frame": cantos dourados vis�veis, sem borda cont�nua */
.gold-border--frame {
  border: 1px solid transparent;
}
.gold-border--frame::before {
  background: linear-gradient(
    to bottom right,
    rgba(226,184,106,0.75) 0%,
    rgba(200,151,63,0.18) 35%,
    transparent 55%,
    rgba(200,151,63,0.18) 75%,
    rgba(226,184,106,0.55) 100%
  );
}

/* Variante "shine": pseudo-elemento de reflexo animado */
.gold-border--shine {
  overflow: hidden;
}
.gold-border--shine::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(226,184,106,0.18) 50%,
    transparent 65%
  );
  background-size: 200% 100%;
  animation: gold-shine 3.5s ease-in-out infinite;
}
@keyframes gold-shine {
  0%   { background-position: -100% 0; }
  60%  { background-position: 200% 0; }
  100% { background-position: 200% 0; }
}

/* -- V�DEO -- */
#video-apresentacao {
  padding: var(--space-3xl) var(--section-pad-inline);
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.vid-stage {
  opacity: 0.001;
  transform: translateY(44px) scale(0.975);
  transition:
    opacity 0.95s ease,
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}
.vid-stage.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Textura de ru�do sutil */
.vid-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* Glows laterais */
.vid-glow-left {
  position: absolute;
  left: -180px; top: 50%;
  transform: translateY(-50%);
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,151,63,0.1) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.vid-glow-right {
  position: absolute;
  right: -180px; top: 40%;
  transform: translateY(-50%);
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,151,63,0.07) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* Cabe�alho em duas colunas */
.vid-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
  position: relative; z-index: 1;
}
.vid-header-left .section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
}
.vid-header-left .section-title--video {
  font-weight: 700;
  letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}
.vid-desc {
  font-size: var(--text-body);
  font-weight: 400;
  line-height: var(--leading-body);
  color: var(--cream-dim);
  margin-bottom: 28px;
  max-width: 62ch;
}
.vid-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.vid-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: rgba(240,232,213,0.45);
}
.vid-meta-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Stage � moldura premium */
.vid-stage {
  position: relative;
  z-index: 1;
  padding: 3px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(226,184,106,0.6) 0%,
    rgba(200,151,63,0.25) 30%,
    rgba(200,151,63,0.06) 55%,
    rgba(200,151,63,0.22) 80%,
    rgba(226,184,106,0.5) 100%
  );
}

/* Glow difuso atr�s do player */
.vid-frame-glow {
  position: absolute;
  inset: -24px;
  border-radius: 28px;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,151,63,0.14) 0%, transparent 65%);
  pointer-events: none; z-index: -1;
  animation: vid-breathe 4s ease-in-out infinite;
}
@keyframes vid-breathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.025); }
}

/* Cantos geom�tricos animados */
.vid-corner {
  position: absolute;
  width: 24px; height: 24px;
  z-index: 2;
  pointer-events: none;
}
.vid-corner::before,
.vid-corner::after {
  content: '';
  position: absolute;
  background: var(--gold-light);
  border-radius: 1px;
}
.vid-corner::before { width: 100%; height: 2px; }
.vid-corner::after  { width: 2px; height: 100%; }
.vid-corner--tl { top: -1px; left: -1px; }
.vid-corner--tl::before { top: 0; left: 0; }
.vid-corner--tl::after  { top: 0; left: 0; }
.vid-corner--tr { top: -1px; right: -1px; }
.vid-corner--tr::before { top: 0; right: 0; }
.vid-corner--tr::after  { top: 0; right: 0; }
.vid-corner--bl { bottom: -1px; left: -1px; }
.vid-corner--bl::before { bottom: 0; left: 0; }
.vid-corner--bl::after  { bottom: 0; left: 0; }
.vid-corner--br { bottom: -1px; right: -1px; }
.vid-corner--br::before { bottom: 0; right: 0; }
.vid-corner--br::after  { bottom: 0; right: 0; }

/* Linha de scan animada (efeito cinematogr�fico) */
.vid-scan-line {
  position: absolute;
  left: 3px; right: 3px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(226,184,106,0.5), transparent);
  z-index: 2;
  pointer-events: none;
  animation: vid-scan 6s ease-in-out infinite;
  border-radius: 18px;
}
@keyframes vid-scan {
  0%   { top: 3px; opacity: 0.001; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { top: calc(100% - 3px); opacity: 0.001; }
}

/* Inner box de v�deo */
.vid-ratio-box {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: #050505;
}
.vid-ratio-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8,8,8,0.2), rgba(8,8,8,0.72)),
    radial-gradient(circle at 50% 45%, rgba(200,151,63,0.28), transparent 0 34%),
    linear-gradient(160deg, #12100c 0%, #050505 54%, #111 100%);
}
.vid-ratio-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  z-index: 2;
}
.vid-play-button {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.vid-play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #062313;
  background: var(--whatsapp);
  box-shadow: 0 18px 46px rgba(37,211,102,0.28), 0 0 0 1px rgba(255,255,255,0.14);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.vid-play-icon::before {
  content: '';
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid currentColor;
}
.vid-play-copy {
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.vid-play-button:hover .vid-play-icon {
  transform: scale(1.06);
  background: var(--whatsapp-dark);
}
.vid-play-button:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: -8px;
  box-shadow: inset 0 0 0 4px var(--focus-glow);
}
.vid-ratio-box.is-loading::before {
  opacity: 0;
}

/* Barra de label abaixo do player */
.vid-label-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px 4px;
  position: relative; z-index: 1;
}
.vid-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--gold);
  will-change: transform, opacity;
  animation: vid-dot-pulse 2s ease-in-out infinite;
}
@keyframes vid-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.45); }
}
.vid-label-text {
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: rgba(200,151,63,0.6);
  white-space: nowrap;
}
.vid-label-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(200,151,63,0.3), transparent);
}

@media (max-width: 1024px) {
  .vid-header { grid-template-columns: 1fr; gap: 28px; }
  .vid-desc { max-width: none; }
}
@media (max-width: 640px) {
  #video-apresentacao { padding: 80px 20px; }
  .vid-header { margin-bottom: 40px; }
  .vid-stage { border-radius: 14px; }
  .vid-ratio-box { border-radius: 12px; }
}


