/* ==========================================================================
   BIBI BRONZE | Estilo Oficial & Design System
   Paleta: Obsidian Black, Ouro Nobre, Bronze Quente e Toques Neon
   ========================================================================== */

:root {
  /* Cores Base de Fundo */
  --bg-black: #070707;
  --bg-surface-1: #0e0d0c;
  --bg-surface-2: #161412;
  --bg-card: rgba(22, 20, 18, 0.75);
  --bg-card-hover: rgba(30, 27, 23, 0.9);

  /* Paleta Ouro & Bronze */
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-bright: #ffe680;
  --gold-dark: #996515;
  --gold-dim: #70531c;
  --gold-glow: rgba(212, 175, 55, 0.28);
  --gold-border: rgba(212, 175, 55, 0.35);

  /* Acentos Neon & Luxo */
  --neon-pink: #ff007f;
  --neon-pink-glow: rgba(255, 0, 127, 0.35);
  --bronze-warm: #a75d31;

  /* Cores Sociais */
  --wa-green: #25d366;
  --wa-green-hover: #20ba59;
  --wa-glow: rgba(37, 211, 102, 0.35);
  --ig-gradient: linear-gradient(135deg, #f9ce34, #ee2a7b 52%, #6228d7);
  --threads-bg: #111111;

  /* Tipografia & Contrastes */
  --text-primary: #fcf9f2;
  --text-secondary: #d4c9b3;
  --text-muted: #9c907a;
  --text-dark: #070707;

  /* Bordas e Sombras */
  --border-subtle: rgba(212, 175, 55, 0.18);
  --border-glass: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);
  --shadow-neon: 0 0 25px rgba(255, 0, 127, 0.25);

  /* Fontes */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-eyebrow: 'Marcellus', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-max: 1140px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-pill: 9999px;
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & CONFIGURAÇÕES GLOBAIS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-black);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  background-color: var(--bg-black);
  color: var(--text-primary);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-x: clip;
  position: relative;
  min-height: 100vh;
}

/* Textura sutil de fundo com gradientes radiais dourados e neon */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 700px 450px at 50% -10%, rgba(212, 175, 55, 0.08), transparent 70%),
    radial-gradient(ellipse 600px 400px at 95% 35%, rgba(255, 0, 127, 0.04), transparent 70%),
    radial-gradient(ellipse 800px 500px at 5% 75%, rgba(167, 93, 49, 0.05), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Tipografia de Destaque */
.gold-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--gold-light);
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 40%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-shimmer-text {
  background-size: 200% auto;
  animation: textShimmer 4s linear infinite;
}

@keyframes textShimmer {
  to { background-position: 200% center; }
}

.eyebrow {
  font-family: var(--font-eyebrow);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section-header .eyebrow {
  justify-content: center;
}

.eyebrow::before, .eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim));
}

.eyebrow::after {
  background: linear-gradient(90deg, var(--gold-dim), transparent);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 24px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

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

.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   SEÇÃO 1: HERO COM VÍDEO EM REPRODUÇÃO NORMAL (SEM SCROLL SCRUB)
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  overflow-x: clip;
  display: flex;
  align-items: center;
  background: var(--bg-black);
}

/* Pôster Inicial Instantâneo */
.stage-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  background-image: url('../images/hero-poster-desktop.jpg');
}

/* Vídeo do Hero em Reprodução Direta */
.stage-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 1;
}

/* Scrim para Contraste e Atmosfera Cinematográfica */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: 
    linear-gradient(to right, rgba(7, 7, 7, 0.88) 0%, rgba(7, 7, 7, 0.7) 35%, rgba(7, 7, 7, 0.25) 70%, transparent 100%),
    linear-gradient(to bottom, rgba(7, 7, 7, 0.5) 0%, transparent 35%, rgba(7, 7, 7, 0.92) 100%);
  pointer-events: none;
}

/* Conteúdo do Hero alinhado à direita para destacar a imagem */
.hero-content-container {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1240px;
  padding: 0 48px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 100vh;
}

.hero-narrative {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  max-width: 580px;
  gap: 12px;
}

/* Barra de Topo da Marca (Monograma BB + Bibi Bronze) */
.hero-top-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.brand-monogram {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, #6e1328, #3b0814);
  border: 1.5px solid rgba(243, 229, 171, 0.45);
  color: #fce899;
  font-family: var(--font-eyebrow);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 14px rgba(110, 19, 40, 0.4);
}

.brand-name {
  font-size: 19px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: var(--font-sans);
}

.brand-name em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  margin-left: 4px;
}

/* Eyebrow Tag Superior */
.hero-eyebrow {
  font-family: var(--font-eyebrow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f7ca55;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  margin-bottom: 2px;
}

/* Logotipo Oficial Bibi Bronze em PNG Transparente Ultra Fluido */
.hero-logo-wrap {
  width: 100%;
  max-width: 175px;
  margin: 2px 0 2px;
}

.hero-logo-png {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(212, 175, 55, 0.35)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.9));
  transition: transform 0.3s ease;
}

.hero-logo-png:hover {
  transform: scale(1.05);
}

.luana-wordmark,
.footer-wordmark {
  display: inline-block;
  color: #fff4d1;
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-shadow: 0 8px 24px rgba(0,0,0,.75), 0 0 18px rgba(212,175,55,.3);
}

.luana-wordmark em,
.footer-wordmark em {
  color: #f2c85b;
  font-style: italic;
  font-weight: 400;
}

.footer-wordmark { font-size: 34px; }

/* Headline Principal com Tipografia e Quebras Idênticas à Referência */
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.8vw, 68px);
  font-weight: 700;
  line-height: 1.03;
  color: #ffffff;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.95);
  margin: 0;
  letter-spacing: -0.01em;
}

.hero-headline .gold-italic {
  font-style: italic;
  font-weight: 400;
  color: #fce186;
  background: linear-gradient(135deg, #ffffff 0%, #fce186 45%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subheadline Exata da Referência */
.hero-subtitle {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  max-width: 480px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
  margin: 4px 0 10px;
}

/* Botão de Ação CTA Hero "Agende Aqui" */
.hero-cta-wrap {
  margin-top: 6px;
}

.hero-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #fce899 0%, var(--gold-primary) 50%, #9e721d 100%);
  color: #070707;
  font-family: var(--font-eyebrow);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4), 0 0 20px rgba(212, 175, 55, 0.3);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: heroBtnFloat 3s ease-in-out infinite;
}

.hero-cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6), 0 0 35px rgba(212, 175, 55, 0.5);
}

.btn-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #070707;
}

.btn-cta-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3s infinite;
}

@keyframes btnShine {
  0% { left: -100%; }
  30%, 100% { left: 160%; }
}

@keyframes heroBtnFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Indicador de Rolagem */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-family: var(--font-eyebrow);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: var(--hint-op, 1);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1.8px solid rgba(243, 229, 171, 0.6);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheelAnim 1.8s infinite;
}

@keyframes scrollWheelAnim {
  0% { opacity: 1; transform: translate(-50%, 0); }
  75% { opacity: 0; transform: translate(-50%, 12px); }
  100% { opacity: 0; transform: translate(-50%, 0); }
}

/* ==========================================================================
   FAIXA DOURADA INFINITA (MARQUEE)
   ========================================================================== */
.gold-ticker-section {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  overflow-x: clip;
  contain: paint;
  clip-path: inset(0 0 0 0);
  background: linear-gradient(90deg, #12100d 0%, #1e1b16 50%, #12100d 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 15px 0;
  z-index: 10;
}

.ticker-overlay-left, .ticker-overlay-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 3;
  pointer-events: none;
}

.ticker-overlay-left {
  left: 0;
  background: linear-gradient(90deg, var(--bg-black), transparent);
}

.ticker-overlay-right {
  right: 0;
  background: linear-gradient(270deg, var(--bg-black), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 32s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-items {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.ticker-item {
  font-family: var(--font-eyebrow);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
}

.ticker-icon {
  font-size: 14px;
}

.ticker-dot {
  color: var(--gold-primary);
  font-size: 14px;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
/* ==========================================================================
   SEÇÃO 2: A ESPECIALISTA (FUNDO 9:16 OFICIAL + REDES SOCIAIS ARREDONDADAS)
   ========================================================================== */
.about-section {
  padding: 60px 0 35px;
  position: relative;
  width: 100%;
  max-width: 100vw;
  background-color: var(--bg-black);
  overflow: hidden;
  overflow-x: clip;
  contain: paint;
}

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

.about-backdrop-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: contrast(1.05) brightness(0.96);
}

.about-backdrop-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to right, rgba(7, 7, 7, 0.08) 0%, rgba(7, 7, 7, 0.25) 28%, rgba(7, 7, 7, 0.82) 48%, rgba(7, 7, 7, 0.96) 65%, #070707 100%),
    linear-gradient(to bottom, #070707 0%, transparent 12%, transparent 88%, #070707 100%);
}

.about-container {
  position: relative;
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.about-photo-wrapper {
  position: relative;
  min-height: 560px;
}

/* Gavetas e Selos Mobile Ocultos no Desktop */
.mobile-social-drawers,
.mobile-features-bottom {
  display: none;
}

/* Coluna de Texto e Informações */
.about-content {
  display: flex;
  flex-direction: column;
  background: rgba(18, 16, 14, 0.8);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 44px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.08);
}

.about-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1.5;
  margin-bottom: 16px;
}

.about-description {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.feat-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: rgba(22, 20, 18, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.15);
  font-size: 13.5px;
  color: var(--text-primary);
}

.fp-icon {
  font-size: 16px;
}

/* Bloco de Redes Sociais Arredondadas */
.social-connect-block {
  padding-top: 10px;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.social-title {
  font-family: var(--font-eyebrow);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 18px;
}

.social-buttons-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-round-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.28s var(--ease-smooth), box-shadow 0.28s var(--ease-smooth);
}

.social-round-btn:hover {
  transform: translateX(6px) scale(1.01);
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.social-round-btn:hover .social-icon {
  transform: scale(1.1) rotate(6deg);
}

.social-label-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sl-main {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.2;
}

.sl-sub {
  font-size: 11.5px;
  opacity: 0.85;
}

.social-arrow {
  font-size: 18px;
  opacity: 0.6;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.social-round-btn:hover .social-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* Estilos Específicos por Rede */
.btn-instagram {
  background: linear-gradient(135deg, rgba(238, 42, 123, 0.18), rgba(98, 40, 215, 0.18));
  border-color: rgba(238, 42, 123, 0.4);
  color: #fff;
}

.btn-instagram .social-icon {
  background: var(--ig-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(238, 42, 123, 0.4);
}

.btn-instagram:hover {
  box-shadow: 0 8px 24px rgba(238, 42, 123, 0.35);
  border-color: rgba(238, 42, 123, 0.7);
}

.btn-whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(18, 140, 126, 0.15));
  border-color: rgba(37, 211, 102, 0.4);
  color: #fff;
}

.btn-whatsapp .social-icon {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 4px 15px var(--wa-glow);
}

.btn-whatsapp:hover {
  box-shadow: 0 8px 24px var(--wa-glow);
  border-color: rgba(37, 211, 102, 0.7);
}

.btn-threads {
  background: rgba(28, 26, 23, 0.7);
  border-color: var(--gold-border);
  color: var(--text-primary);
}

.btn-threads .social-icon {
  background: var(--threads-bg);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
}

.btn-threads:hover {
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
  border-color: var(--gold-primary);
}

/* ==========================================================================
   SEÇÃO 3: ANTES E DEPOIS ANIMADO (3D FLIP CARD)
   ========================================================================== */
.compare-section {
  padding: 35px 0;
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  overflow-x: clip;
  background: radial-gradient(ellipse 650px 450px at 80% 50%, rgba(255, 0, 127, 0.04), transparent 70%);
}

.compare-stage {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ba-flip-wrap {
  width: 300px;
  height: 220px;
  perspective: 900px;
  cursor: pointer;
  margin: 0 auto;
}

.ba-flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ba-flip-wrap.flipped .ba-flip-inner {
  transform: rotateY(180deg);
}

.ba-face {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  overflow: hidden;
  backface-visibility: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.15);
}

.ba-face.back {
  transform: rotateY(180deg);
  border-color: rgba(255, 0, 127, 0.35);
}

.ba-badge {
  position: absolute;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(3, 7, 18, 0.8);
  color: #fff;
  bottom: 12px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.ba-badge.left {
  left: 12px;
}

.ba-badge.right {
  right: 12px;
  background: rgba(255, 0, 127, 0.8);
}

.compare-instruction,
.deck-hint {
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.ci-icon {
  font-size: 15px;
  color: var(--gold-light);
}

.compare-cta-wrap {
  margin-top: 18px;
}

/* ==========================================================================
   SEÇÃO 4: RESULTADOS EM CARDS ANIMADOS (STACK STAGE)
   ========================================================================== */
.results-section {
  padding: 35px 0;
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  overflow-x: clip;
}

.stack-stage {
  position: relative;
  width: 240px;
  height: 310px;
  margin: 18px auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  position: absolute;
  width: 200px;
  height: 280px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  user-select: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, box-shadow 0.35s ease;
  will-change: transform, opacity;
}

.card:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.25);
}

.card-overlay {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 7, 15, 0.95) 100%);
  pointer-events: none;
}

.card-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.card-tag {
  font-family: var(--font-eyebrow);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.s1 .c0 { transform: translateY(0) rotate(0deg); z-index: 30; }
.s1 .c1 { transform: translateY(-4px) rotate(-6deg); z-index: 20; }
.s1 .c2 { transform: translateY(-8px) rotate(6deg); z-index: 10; }
.s1 .c3 { transform: translateY(-12px) rotate(-10deg); z-index: 5; }
.s1 .c4 { transform: translateY(-16px) rotate(8deg); z-index: 4; }
.s1 .c5 { transform: translateY(-20px) rotate(-5deg); z-index: 3; }

.s1:hover .c0 { transform: translateY(-10px) rotate(0deg) scale(1.05); }
.s1:hover .c1 { transform: translate(-45px, 10px) rotate(-16deg); }
.s1:hover .c2 { transform: translate(45px, 10px) rotate(16deg); }
.s1:hover .c3 { transform: translate(0px, 20px) rotate(-4deg) scale(0.96); }

/* ==========================================================================
   SEÇÃO 5: LOCALIZAÇÃO (GOOGLE MAPS)
   ========================================================================== */
.location-section {
  padding: 35px 0 55px;
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  overflow-x: clip;
  contain: paint;
}

.location-ambient-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.location-card {
  border-radius: var(--radius-lg);
  background: rgba(18, 16, 14, 0.8);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-md), 0 0 35px rgba(212, 175, 55, 0.1);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.location-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  gap: 24px;
}

.loc-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.loc-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loc-texts {
  display: flex;
  flex-direction: column;
}

.loc-label {
  font-family: var(--font-eyebrow);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.loc-highlight {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 700;
  margin: 2px 0;
}

.loc-sub {
  font-size: 12.5px;
  color: var(--text-muted);
}

.loc-divider {
  width: 1px;
  height: 48px;
  background: rgba(212, 175, 55, 0.18);
}

.location-route-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #070707;
  font-family: var(--font-eyebrow);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.location-route-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
}

.location-map-frame {
  width: 100%;
  height: 420px;
  background: url('../images/localizacao.png') center / cover no-repeat;
  filter: contrast(1.05) saturate(0.85);
  position: relative;
}

.location-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ==========================================================================
   CALL TO ACTION FINAL
   ========================================================================== */
.cta-final-section {
  padding: 80px 0 100px;
  text-align: center;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.cta-final-container {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-tag {
  font-family: var(--font-eyebrow);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.cta-final-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
}

.cta-final-subtitle {
  font-size: 15.5px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* Botões Genéricos Dourados */
.action-btn-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #fce899 0%, var(--gold-primary) 50%, #9e721d 100%);
  color: #070707;
  font-family: var(--font-eyebrow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
  overflow: hidden;
  max-width: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.action-btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.55);
}

.action-btn-gold.btn-large {
  padding: 18px 44px;
  font-size: 14.5px;
  max-width: 100%;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3.5s infinite;
}

/* ==========================================================================
   SEÇÃO 6: RODAPÉ PROFISSIONAL
   ========================================================================== */
.main-footer {
  background: #050505;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo-wrap {
  width: 115px;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.25));
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 340px;
}

.footer-col-title {
  font-family: var(--font-eyebrow);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.footer-links-list, .footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-contact-list li {
  font-size: 14px;
  color: var(--text-secondary);
}

.contact-label {
  color: var(--gold-primary);
  font-weight: 600;
  margin-right: 6px;
}

.contact-value-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.contact-address {
  margin-top: 4px;
  color: var(--text-muted);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(212, 175, 55, 0.15);
  margin-bottom: 30px;
}

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

.footer-legal-text {
  order: 1;
}

.copyright-line {
  font-size: 13px;
  color: var(--text-muted);
}

.sub-disclaimer {
  font-size: 11.5px;
  color: #666;
}

.footer-credit {
  order: 2;
  font-size: 13px;
  color: var(--text-muted);
}

.rndesigner-link {
  position: relative;
  display: inline-block;
  color: var(--gold-light);
  font-weight: 700;
  margin-left: 4px;
}

.rndesigner-tag {
  letter-spacing: 0.05em;
}

.rndesigner-underline {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--neon-pink);
  transform: scaleX(0);
  transform-origin: left;
  animation: rnUnderline 3s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 0, 127, 0.8);
}

@keyframes rnUnderline {
  0% { transform: scaleX(0); transform-origin: left; }
  45% { transform: scaleX(1); transform-origin: left; }
  55% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* ==========================================================================
   MODAL LIGHTBOX (ZOOM DE RESULTADOS)
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.9);
  transition: transform 0.3s var(--ease-smooth);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close-btn {
  position: absolute;
  top: -46px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(30, 27, 23, 0.9);
  border: 1px solid var(--gold-border);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.lightbox-close-btn:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--gold-primary);
  color: #070707;
}

.lightbox-img {
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gold-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 35px var(--gold-glow);
}

.lightbox-caption {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold-light);
  text-align: center;
}



/* ==========================================================================
   SCROLL REVEAL (ANIMAÇÕES DE ENTRADA SUAVES)
   ========================================================================== */
.reveal-section {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-section.in {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .about-section {
    padding: 45px 0 25px;
  }

  .compare-section {
    padding: 30px 0;
  }

  .results-section {
    padding: 30px 0;
  }

  .location-section {
    padding: 30px 0 45px;
  }

  .about-backdrop-img {
    width: 100%;
    opacity: 0.38;
    object-position: center 20%;
  }

  .about-backdrop-overlay {
    background: 
      linear-gradient(to bottom, #070707 0%, rgba(7, 7, 7, 0.65) 15%, rgba(7, 7, 7, 0.88) 50%, #070707 100%);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-photo-wrapper {
    min-height: auto;
    justify-content: center;
    max-width: 100%;
  }

  .about-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 36px 28px;
  }

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

@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .stage-poster {
    background-image: url('../images/hero-poster-mobile.jpg');
  }

  .hero-content-container {
    padding: 0 20px 40px;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .hero-narrative {
    max-width: 100%;
    gap: 10px;
    align-items: flex-end;
    text-align: right;
  }

  .hero-scrim {
    background: 
      linear-gradient(to bottom, rgba(7, 7, 7, 0.35) 0%, rgba(7, 7, 7, 0.6) 35%, rgba(7, 7, 7, 0.95) 85%);
  }

  .hero-headline {
    font-size: clamp(34px, 8.8vw, 50px);
  }

  .hero-subtitle {
    font-size: 14.5px;
    margin-bottom: 6px;
  }

  .hero-logo-wrap {
    max-width: 140px;
  }

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

  .desktop-only-container {
    display: none !important;
  }

  .about-section {
    position: relative;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    aspect-ratio: 9 / 16;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    overflow-x: clip;
    contain: paint;
  }

  .about-backdrop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    filter: contrast(1.05) brightness(0.98);
  }

  .about-backdrop-overlay {
    background: 
      linear-gradient(to bottom, #070707 0%, transparent 6%, transparent 94%, #070707 100%);
  }

  /* Gavetas de Redes Sociais no Topo Direito (Pontos 1, 2, 3) */
  .mobile-social-drawers {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    top: 9.5%;
    right: 18px;
    z-index: 25;
    align-items: flex-end;
  }

  .social-drawer-btn {
    display: flex;
    align-items: center;
    border-radius: var(--radius-pill);
    background: rgba(14, 13, 12, 0.88);
    border: 1.5px solid var(--gold-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7), 0 0 15px rgba(212, 175, 55, 0.2);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    height: 48px;
    padding: 0;
  }

  .drawer-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    transition: transform 0.3s ease;
  }

  .btn-instagram .drawer-icon {
    background: var(--ig-gradient);
  }

  .btn-whatsapp .drawer-icon {
    background: var(--wa-green);
  }

  .btn-threads .drawer-icon {
    background: var(--threads-bg);
    border: 1px solid var(--gold-border);
    color: var(--gold-light);
  }

  .drawer-label {
    display: flex;
    flex-direction: column;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.3s ease;
    padding: 0;
  }

  .dl-main {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
  }

  .dl-sub {
    font-size: 11px;
    color: var(--gold-light);
    opacity: 0.9;
  }

  /* Estado Aberto / Gaveta Expandida */
  .social-drawer-btn.is-open {
    padding-right: 18px;
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9), 0 0 25px rgba(212, 175, 55, 0.4);
    background: rgba(22, 20, 18, 0.96);
  }

  .social-drawer-btn.is-open .drawer-label {
    max-width: 200px;
    opacity: 1;
    padding-left: 10px;
  }

  .social-drawer-btn.is-open .drawer-icon {
    transform: scale(1.06);
  }

  /* Selos na Base Esquerda (Pontos 4, 5, 6 no Piso) */
  .mobile-features-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    bottom: 24px;
    left: 18px;
    z-index: 25;
    max-width: 86%;
  }

  .mobile-features-bottom .feat-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    background: rgba(14, 13, 12, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-primary);
  }

  .mobile-features-bottom .fp-icon {
    font-size: 14px;
  }

  .location-info-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .loc-divider {
    width: 100%;
    height: 1px;
  }

  .location-route-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .action-btn-gold {
    max-width: 100%;
    padding: 14px 20px;
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .action-btn-gold.btn-large {
    max-width: 100%;
    padding: 15px 18px;
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .action-btn-gold .btn-text {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  .hero-eyebrow {
    font-size: clamp(9.5px, 2.7vw, 11px);
    letter-spacing: 0.12em;
    line-height: 1.35;
    max-width: 100%;
    word-break: normal;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-credit {
    order: 1;
    margin-bottom: 2px;
  }

  .footer-legal-text {
    order: 2;
  }

  .compare-stage {
    max-width: 100%;
    padding: 0 8px;
  }

  .section-header {
    margin: 0 auto 18px;
  }

  .compare-section {
    padding: 26px 0;
  }

  .results-section {
    padding: 26px 0;
  }

  .location-section {
    padding: 26px 0 38px;
  }
}

/* Recuo seguro para as redes flutuantes em telas estreitas e ao voltar a rolar */
@media (max-width: 768px) {
  .about-section,
  .about-backdrop,
  .about-backdrop-img {
    width: 100%;
    max-width: 100%;
  }

  .mobile-social-drawers {
    right: max(12px, env(safe-area-inset-right));
    max-width: calc(100vw - 24px);
  }

  .social-drawer-btn {
    max-width: calc(100vw - 24px);
  }
}

@media (max-width: 480px) {
  .ba-flip-wrap {
    width: 280px;
    height: 205px;
  }

  .stack-stage {
    width: 220px;
    height: 290px;
  }

  .card {
    width: 185px;
    height: 260px;
  }
}
