/* ==========================================================================
   SANTORINO BARBEARIA — PREMIUM LINK-IN-BIO DESIGN SYSTEM
   Direção de Arte: O COPY
   Conceito: Brasilidade Elegante, Verde Profundo, Ouro Imperial, Azul Meia-Noite
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Cores Principais (Brasilidade Nobre & Barbearia de Luxo) */
  --bg-deep: #050a07;
  --bg-forest: #091710;
  --bg-card: rgba(10, 26, 18, 0.72);
  --bg-card-hover: rgba(14, 36, 25, 0.85);

  /* Acentos Verdes */
  --green-flag: #10723a;
  --green-emerald: #199e53;
  --green-glow: rgba(25, 158, 83, 0.35);

  /* Acentos Ouro / Amarelo Nobre */
  --gold-primary: #d4af37;
  --gold-light: #f3d87f;
  --gold-dark: #997a1e;
  --gold-glow: rgba(212, 175, 55, 0.32);
  --gold-gradient: linear-gradient(135deg, #f5db8b 0%, #d4af37 50%, #aa841e 100%);
  --gold-gradient-hover: linear-gradient(135deg, #fae5a0 0%, #e0bd49 50%, #bd9527 100%);

  /* Acentos Azul Profundo / Meia-Noite */
  --blue-deep: #071526;
  --blue-midnight: #0c2340;
  --blue-accent: #2b6cb0;
  --blue-glow: rgba(43, 108, 176, 0.28);

  /* Textos & Neutros */
  --text-pure: #ffffff;
  --text-silver: #e2e8f0;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;

  /* Bordas & Hairlines Metálicas */
  --border-gold: rgba(212, 175, 55, 0.28);
  --border-gold-strong: rgba(212, 175, 55, 0.55);
  --border-green: rgba(25, 158, 83, 0.24);
  --border-glass: rgba(255, 255, 255, 0.08);

  /* Tipografia */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Formas & Raios */
  --radius-pill: 9999px;
  --radius-card: 20px;
  --radius-card-sm: 14px;

  /* Sombras & Profundidade */
  --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 1px rgba(255, 255, 255, 0.1);
  --shadow-btn-gold: 0 10px 30px rgba(212, 175, 55, 0.28), 0 2px 6px rgba(0, 0, 0, 0.4);
  --shadow-btn-green: 0 10px 30px rgba(16, 114, 58, 0.35), 0 2px 6px rgba(0, 0, 0, 0.4);
  --shadow-btn-blue: 0 10px 30px rgba(12, 35, 64, 0.45), 0 2px 6px rgba(0, 0, 0, 0.4);

  /* Transições suaves */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-out;
}

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

html {
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-pure);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--bg-deep);
  color: var(--text-pure);
  overflow-x: hidden !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

/* --------------------------------------------------------------------------
   3. BACKGROUND CINEMATOGRÁFICO (VÍDEO + POSTER + OVERLAYS)
   -------------------------------------------------------------------------- */
.bg-viewport {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.05);
  object-fit: cover;
  opacity: 0.42;
  transition: opacity 1.2s ease-in-out;
}

.bg-video.is-loaded {
  opacity: 0.48;
}

/* Overlay multicamadas para garantir legibilidade monumental */
.bg-gradient-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 15%, rgba(25, 158, 83, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 50% 85%, rgba(12, 35, 64, 0.35) 0%, transparent 70%),
    linear-gradient(180deg, 
      rgba(5, 10, 7, 0.88) 0%, 
      rgba(7, 18, 12, 0.74) 30%, 
      rgba(5, 10, 7, 0.85) 75%, 
      rgba(5, 10, 7, 0.96) 100%
    );
  z-index: 1;
}

/* Textura sutil de vinil / grão analógico elegante */
.bg-noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.6;
  z-index: 2;
}

/* Marca d'água monumental de fundo (Estilo O COPY) */
.bg-watermark {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   4. APP CONTAINER (ESTRUTURA LINK-IN-BIO MOBILE-FIRST)
   -------------------------------------------------------------------------- */
.app-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 32px 20px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .app-container {
    max-width: 520px;
    padding: 48px 24px 64px;
  }
}

/* --------------------------------------------------------------------------
   5. HEADER & BADGE DE STATUS
   -------------------------------------------------------------------------- */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(10, 26, 18, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--gold-light);
  box-shadow: 0 0 8px var(--gold-light);
  animation: pulseDot 2.8s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.status-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   6. HERO & LOGO MONUMENTAL
   -------------------------------------------------------------------------- */
.hero-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 28px;
}

.logo-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 20;
}

@media (min-width: 480px) {
  .logo-wrapper {
    width: 144px;
    height: 144px;
  }
}

/* Halo luminoso atrás da logo (Renderizado nativamente sem GPU blur) */
.logo-glow-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, rgba(25, 158, 83, 0.22) 50%, transparent 72%);
  z-index: 1;
  pointer-events: none;
}

/* Borda metálica circular nobre */
.logo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 3px;
  background: var(--gold-gradient);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.25);
  z-index: 2;
  overflow: hidden;
  opacity: 1 !important;
  visibility: visible !important;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Tipografia de Apresentação */
.brand-category {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-category::before,
.brand-category::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.brand-category::after {
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text-pure);
  margin-bottom: 6px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
}

.brand-pos {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-silver);
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Box da Copy Oficial */
.hero-copy-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.official-welcome {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.official-location {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.official-location svg {
  color: var(--gold-primary);
}

.official-cta-instruction {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-emerald);
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.official-cta-instruction svg {
  animation: bounceArrow 1.8s infinite ease-in-out;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

/* --------------------------------------------------------------------------
   7. ACTION HUB (HIERARQUIA DOS BOTÕES DE CONVERSÃO)
   -------------------------------------------------------------------------- */
.action-hub {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

/* Base Comum dos Botões */
.btn-action {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 14px 20px;
  border-radius: var(--radius-card-sm);
  overflow: hidden;
  cursor: pointer;
  outline: none;
  transition: var(--transition-smooth);
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-action:focus-visible {
  box-shadow: 0 0 0 3px var(--gold-primary), 0 0 0 6px rgba(0, 0, 0, 0.8);
}

.btn-content-left {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}

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

.btn-action:hover .btn-icon-wrapper {
  transform: scale(1.06);
}

.btn-texts {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
}

.btn-subtitle {
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 2px;
}

.btn-arrow-right {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 3;
  transition: transform 0.3s ease;
}

.btn-action:hover .btn-arrow-right {
  transform: translateX(4px);
}

/* BOTÃO 1: AGENDAR HORÁRIO (OURO IMPERIAL METÁLICO - DESTAQUE MÁXIMO) */
.btn-primary-gold {
  background: var(--gold-gradient);
  color: #0c0800;
  box-shadow: var(--shadow-btn-gold);
  border: 1px solid var(--border-gold-strong);
}

.btn-primary-gold .btn-icon-wrapper {
  background: rgba(0, 0, 0, 0.12);
  color: #0c0800;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn-primary-gold .btn-subtitle {
  color: rgba(12, 8, 0, 0.85);
  font-weight: 600;
}

.btn-primary-gold .btn-arrow-right {
  color: #0c0800;
}

.btn-primary-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(212, 175, 55, 0.42), 0 4px 10px rgba(0, 0, 0, 0.5);
}

.btn-primary-gold:active {
  transform: translateY(0);
}

/* Tag de Recomendado / Imediato no Botão Principal */
.btn-badge-live {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.85);
  color: var(--gold-light);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  z-index: 4;
}

/* BOTÃO 2: FALAR NO WHATSAPP (VERDE BANDEIRA REFINADO) */
.btn-secondary-green {
  background: linear-gradient(135deg, rgba(16, 114, 58, 0.88) 0%, rgba(9, 74, 38, 0.95) 100%);
  color: var(--text-pure);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-btn-green);
  border: 1px solid var(--border-green);
}

.btn-secondary-green .btn-icon-wrapper {
  background: rgba(255, 255, 255, 0.1);
  color: #55ef94;
  border: 1px solid rgba(85, 239, 148, 0.25);
}

.btn-secondary-green .btn-subtitle {
  color: #a7f3d0;
}

.btn-secondary-green .btn-arrow-right {
  color: #a7f3d0;
}

.btn-secondary-green:hover {
  background: linear-gradient(135deg, rgba(22, 140, 72, 0.95) 0%, rgba(12, 92, 48, 0.98) 100%);
  border-color: rgba(85, 239, 148, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(16, 114, 58, 0.45);
}

.btn-secondary-green:active {
  transform: translateY(0);
}

/* BOTÃO 3: INSTAGRAM OFICIAL (AZUL MEIA-NOITE NOBRE) */
.btn-tertiary-blue {
  background: linear-gradient(135deg, rgba(12, 35, 64, 0.85) 0%, rgba(7, 21, 38, 0.92) 100%);
  color: var(--text-pure);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-btn-blue);
  border: 1px solid rgba(43, 108, 176, 0.3);
}

.btn-tertiary-blue .btn-icon-wrapper {
  background: rgba(255, 255, 255, 0.08);
  color: #93c5fd;
  border: 1px solid rgba(147, 197, 253, 0.2);
}

.btn-tertiary-blue .btn-subtitle {
  color: #93c5fd;
}

.btn-tertiary-blue .btn-arrow-right {
  color: #93c5fd;
}

.btn-tertiary-blue:hover {
  background: linear-gradient(135deg, rgba(18, 52, 94, 0.95) 0%, rgba(10, 30, 56, 0.98) 100%);
  border-color: rgba(147, 197, 253, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(12, 35, 64, 0.55);
}

.btn-tertiary-blue:active {
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   8. SHINY SWEEP GLOW PREMIUM (REQUISITO FUNDAMENTAL)
   -------------------------------------------------------------------------- */
.shiny-sweep {
  position: absolute;
  top: -50%;
  left: -100%;
  width: 70%;
  height: 200%;
  background: linear-gradient(
    90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.02) 20%, 
    rgba(255, 255, 255, 0.28) 50%, 
    rgba(255, 255, 255, 0.02) 80%, 
    transparent 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 2;
  transition: none;
}

/* Disparo do Sweep no Hover e no Toque */
.btn-action:hover .shiny-sweep,
.btn-action:focus .shiny-sweep,
.btn-action.touch-active .shiny-sweep {
  animation: runShinySweep 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes runShinySweep {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

/* --------------------------------------------------------------------------
   9. DIFERENCIAIS EXCLUSIVOS (OPEN BAR • ESPAÇO KIDS • COWORKING)
   Composição Editorial Elegante — Zero Cards Cinzas Repetitivos
   -------------------------------------------------------------------------- */
.experience-container {
  width: 100%;
  margin-bottom: 32px;
  position: relative;
}

.experience-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

/* Detalhe de acabamento com cantos chanfrados sutis e linha dourada */
.experience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.experience-header {
  text-align: center;
  margin-bottom: 20px;
}

.experience-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 4px;
}

.experience-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-pure);
}

/* Grid Editorial dos 3 Pilares com Hierarquia e Acentos Nobres */
.pillars-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-card-sm);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

.pillar-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateX(4px);
}

/* Variações sutis de paleta para cada pilar (Ouro, Verde, Azul) */
.pillar-gold .pillar-icon-box {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
}

.pillar-green .pillar-icon-box {
  background: rgba(25, 158, 83, 0.12);
  border: 1px solid rgba(25, 158, 83, 0.35);
  color: #6ee7b7;
}

.pillar-blue .pillar-icon-box {
  background: rgba(43, 108, 176, 0.15);
  border: 1px solid rgba(43, 108, 176, 0.35);
  color: #93c5fd;
}

.pillar-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-content {
  display: flex;
  flex-direction: column;
}

.pillar-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-pure);
}

.pillar-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   10. LOCALIZAÇÃO OFICIAL — POSTO BARROCAR
   -------------------------------------------------------------------------- */
.location-section {
  width: 100%;
  margin-bottom: 32px;
}

.location-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(7, 21, 14, 0.75);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
}

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

.location-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.location-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.location-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-top: 2px;
}

.location-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. FOOTER DE ASSINATURA ELEGANTE
   -------------------------------------------------------------------------- */
.app-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand-flag {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flag-accent {
  display: flex;
  gap: 4px;
}

.flag-bar {
  width: 14px;
  height: 3px;
  border-radius: 2px;
}

.bar-green { background-color: var(--green-flag); }
.bar-gold { background-color: var(--gold-primary); }
.bar-blue { background-color: var(--blue-midnight); border: 0.5px solid rgba(255, 255, 255, 0.2); }

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-subtle);
  letter-spacing: 0.02em;
}

.footer-highlight {
  color: var(--gold-light);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   12. MOTION & GSAP ENTRANCE HELPERS
   -------------------------------------------------------------------------- */
.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  will-change: transform, opacity;
}

/* --------------------------------------------------------------------------
   13. ACESSIBILIDADE & PREFERS-REDUCED-MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .bg-video {
    display: none !important;
  }

  .bg-viewport {
    background: 
      radial-gradient(circle at 50% 20%, rgba(25, 158, 83, 0.25) 0%, transparent 70%),
      var(--bg-deep) url('../video/poster.webp') center/cover no-repeat;
  }

  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }

  .shiny-sweep {
    display: none !important;
  }
}
