/* ==========================================================================
   RECONHEÇA-ME '26 — DESIGN SYSTEM PREMIUM
   Identidade fiel às artes originais (conforme ANALISE.md):
   • Tipografia oficial: Simple Serenity (títulos) + Alkalami (versículo)
     + Montserrat (interface)
   • Paleta: dourado #FFBD59, vinho profundo #290212, marfim #F8F2EB
   • Camadas ambientais extraídas das artes: feixes azul/vermelho,
     ondulação de água e imagem de Cristo
   • Glassmorphism nobre: cards rgba(25,6,15,.65), blur, fio de ouro
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FONTES DA IDENTIDADE
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Simple Serenity';
  src: url('assets/SimpleSerenitySerif.ttf') format('truetype'),
       local('Simple Serenity Serif'),
       local('SimpleSerenitySerif');
  font-display: swap;
}

@font-face {
  font-family: 'Simple Serenity Script';
  src: url('assets/SimpleSerenityScript.ttf') format('truetype'),
       local('Simple Serenity Script');
  font-display: swap;
}

/* --------------------------------------------------------------------------
   2. TOKENS & VARIÁVEIS
   -------------------------------------------------------------------------- */
:root {
  /* Fundo — vinho profundo da arte 2 */
  --bg-black: #0d0d0d;
  --bg-wine: #290212;
  --bg-wine-deep: #1e040e;
  --bg-card: rgba(25, 6, 15, 0.65);
  --bg-glass: rgba(10, 1, 5, 0.55);

  /* Ouro da identidade */
  --gold: #ffbd59;
  --gold-light: #ffc872;
  --gold-dark: #b87b20;
  --gold-gradient: linear-gradient(135deg, #ffc872 0%, #ffbd59 45%, #d49a3d 100%);
  --gold-text-gradient: linear-gradient(180deg, #ffffff 0%, #ffbd59 55%, #d99121 100%);
  --gold-tint: rgba(255, 189, 89, 0.1);
  --gold-border: rgba(255, 189, 89, 0.25);
  --gold-glow: 0 0 30px rgba(255, 189, 89, 0.28);

  /* Feixes das artes */
  --beam-blue: #13516e;
  --beam-red: #8b1e2d;

  /* Textos */
  --text: #ffffff;
  --text-ivory: #f8f2eb;
  --text-muted: #c0a898;

  /* Linhas & superfícies */
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --surface: rgba(255, 255, 255, 0.04);
  --input-bg: rgba(255, 255, 255, 0.05);

  /* Status */
  --success: #4fbf7c;
  --success-soft: rgba(79, 191, 124, 0.12);
  --success-border: rgba(79, 191, 124, 0.35);

  /* Tipografia */
  --font-title: 'Simple Serenity', 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Simple Serenity Script', 'Cormorant Garamond', cursive;
  --font-verse: 'Alkalami', 'Cormorant Garamond', serif;
  --font-ui: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Geometria */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-full: 999px;

  /* Sombras & movimento */
  --shadow-card: 0 24px 48px -24px rgba(0, 0, 0, 0.65);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);

  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-black);
  color: var(--text-ivory);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  line-height: 1.55;
  background:
    radial-gradient(ellipse 130% 80% at 50% -12%, #4a0f28 0%, #290212 42%, #1e040e 70%, #0d0d0d 100%);
  background-color: var(--bg-black);
}

main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

::selection {
  background: rgba(255, 189, 89, 0.35);
  color: var(--text);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   4. CAMADAS AMBIENTAIS NOBRES & VOLUMÉTRICAS (LIMPO & ELEGANTE)
   -------------------------------------------------------------------------- */
.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 12%, #38071c 0%, #220311 40%, #0d0107 75%, #050003 100%);
}

/* Feixe azul sutil — Água Viva (lado esquerdo) */
.ambient-beam-left {
  position: absolute;
  top: -20vh;
  left: -25vw;
  width: 90vw;
  height: 120vh;
  background: radial-gradient(ellipse 65% 85% at 30% 20%, rgba(19, 81, 110, 0.28) 0%, rgba(0, 180, 216, 0.1) 35%, transparent 60%);
  filter: blur(80px);
  animation: driftLeft 18s infinite ease-in-out;
  will-change: transform, opacity;
}

/* Feixe vermelho sutil — Sangue / Misericórdia (lado direito) */
.ambient-beam-right {
  position: absolute;
  top: -20vh;
  right: -25vw;
  width: 90vw;
  height: 120vh;
  background: radial-gradient(ellipse 65% 85% at 70% 20%, rgba(139, 30, 45, 0.28) 0%, rgba(230, 57, 70, 0.1) 35%, transparent 60%);
  filter: blur(80px);
  animation: driftRight 22s infinite ease-in-out;
  will-change: transform, opacity;
}

/* Brilho dourado central no topo */
.ambient-christ {
  position: absolute;
  top: -30vh;
  left: 50%;
  transform: translateX(-50%);
  width: 140vw;
  max-width: 1200px;
  height: 110vh;
  background: radial-gradient(ellipse 50% 40% at 50% 30%, rgba(255, 189, 89, 0.14) 0%, rgba(255, 189, 89, 0.04) 40%, transparent 60%);
  filter: blur(80px);
  animation: driftChrist 15s infinite ease-in-out;
  will-change: transform, opacity;
}

/* Reflexo sutil de água na base */
.ambient-water {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25vh;
  background: linear-gradient(to top, rgba(7, 1, 5, 0.8) 0%, transparent 100%);
}

/* Keyframes de animação de deriva suave dos feixes luminosos */
@keyframes driftLeft {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(15vw, 10vh) scale(1.25);
    opacity: 1.0;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
}

@keyframes driftRight {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-14vw, -12vh) scale(1.25);
    opacity: 1.0;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
}

@keyframes driftChrist {
  0% {
    transform: translateX(-50%) translate(0, 0) scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: translateX(-50%) translate(-8vw, 6vh) scale(1.15);
    opacity: 1.0;
  }
  100% {
    transform: translateX(-50%) translate(0, 0) scale(0.95);
    opacity: 0.8;
  }
}

/* --------------------------------------------------------------------------
   5. NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 4, 12, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 189, 89, 0.18);
  padding: 0.75rem 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.brand-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.nav-cta-desktop {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}

.nav-cta-desktop:hover {
  background: var(--gold-tint);
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(255, 189, 89, 0.25);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .navbar {
    padding: 0.45rem 0;
  }
  .brand {
    gap: 0.5rem;
  }
  .brand-logo-img {
    height: 30px;
  }
  .brand-title {
    font-size: 0.82rem;
    letter-spacing: 0.03em;
  }
  .nav-cta-desktop {
    display: inline-flex;
    padding: 0.38rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
    gap: 0.3rem;
  }
}

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: center;
}

/* Cartaz oficial */
.hero-poster-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  background: var(--bg-card);
  box-shadow: var(--shadow-card), 0 0 34px rgba(255, 189, 89, 0.12);
  cursor: pointer;
  transition: var(--transition);
}

.hero-poster-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 189, 89, 0.55);
  box-shadow: var(--shadow-card), 0 0 46px rgba(255, 189, 89, 0.22);
}

.hero-poster-img {
  width: 100%;
  height: auto;
  display: block;
}

.poster-caption {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
  text-align: center;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: var(--transition);
}

.hero-poster-card:hover .poster-caption {
  color: var(--gold-light);
}

/* Conteúdo do hero */
.hero-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-verse {
  font-family: var(--font-verse);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  color: var(--text-ivory);
  line-height: 1.5;
}

.hero-verse-ref {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-left: 0.5rem;
  white-space: nowrap;
}

.hero-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  color: var(--gold-light);
  line-height: 1.2;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.7rem, 6.2vw, 4.4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold); /* fallback */
}

.hero-org {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-ivory);
}

.chip svg {
  flex-shrink: 0;
  color: var(--gold);
}

.chip-gold {
  border-color: var(--gold);
  background: var(--gold-tint);
  color: var(--gold-light);
  box-shadow: 0 0 18px rgba(255, 189, 89, 0.15);
}

.hero-map-card {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  background: rgba(24, 4, 13, 0.6);
  border: 1px solid rgba(255, 189, 89, 0.2);
  border-radius: 24px;
  overflow: hidden;
  max-width: 480px;
  box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-map-card:hover {
  border-color: rgba(255, 189, 89, 0.45);
  box-shadow: 0 24px 64px -12px rgba(255, 189, 89, 0.18), inset 0 1px 1px rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.map-card-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-ivory);
}

.map-card-info svg {
  color: var(--gold);
  flex-shrink: 0;
}

.map-card-iframe-wrapper {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  background: #0d0107;
}

.map-card-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-actions {
  margin-top: 0.3rem;
}

/* --------------------------------------------------------------------------
   7. BOTÕES
   -------------------------------------------------------------------------- */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-full);
  background: var(--gold-gradient);
  color: #1a0509;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 34px -14px rgba(255, 189, 89, 0.5);
  overflow: hidden;
  transition: var(--transition);
}

/* Brilho metálico que atravessa o botão no hover */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.btn-primary:hover::after {
  left: 130%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -12px rgba(255, 189, 89, 0.65);
}

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

.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text-ivory);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--gold-border);
  background: var(--gold-tint);
  color: var(--gold-light);
}

.btn-block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   8. ÁREA DE INSCRIÇÃO & FORMULÁRIO
   -------------------------------------------------------------------------- */
.form-section {
  padding: 3rem 0 2rem;
}

.form-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-card);
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

.form-header-title {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin: 0.3rem 0 0.4rem;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold); /* fallback */
}

.form-header-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .form-header {
    margin-bottom: 1.5rem;
  }
  .form-header-tag {
    font-size: 0.62rem;
  }
  .form-header-desc {
    font-size: 0.82rem;
  }
}

/* Stepper de progresso com deslize e centralização dinâmica */
.stepper-container {
  position: relative;
  width: 100%;
  overflow: visible;
  margin-bottom: 2.5rem;
  padding: 1rem 0;
}

.stepper-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

@media (max-width: 640px) {
  .stepper-bar {
    width: 100% !important;
    justify-content: center !important;
    padding: 0 !important;
    transform: none !important;
    gap: 0.6rem !important;
  }
  .step-node:not(.active) .step-label {
    display: none !important;
  }
  .step-divider {
    width: 32px !important;
  }
}


.step-node {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  opacity: 0.5;
  transition: var(--transition);
}

.step-node.active {
  opacity: 1;
}

.step-node.completed {
  opacity: 1;
}

.step-circle {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.step-node.active .step-circle {
  background: var(--gold-gradient);
  border-color: var(--gold-light);
  color: #1a0509;
  box-shadow: 0 0 16px rgba(255, 189, 89, 0.4);
}

.step-node.completed .step-circle {
  background: rgba(76, 175, 80, 0.25);
  border-color: #4CAF50;
  color: #4CAF50;
  font-size: 1rem;
  box-shadow: none;
}

.step-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.step-node:not(.active) .step-label {
  display: none;
}

.step-node.active .step-label {
  color: var(--text-ivory);
}

.step-node.completed .step-label {
  color: var(--text-secondary);
}

.step-divider {
  width: 52px;
  height: 1px;
  background: var(--line-strong);
  transition: background 0.3s ease;
}

.step-node.completed + .step-divider {
  background: #4CAF50;
}

/* Painéis de formulário */
.step-panel {
  display: none;
}

.step-panel.active {
  display: block;
  animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.step-title-group {
  margin-bottom: 1.5rem;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Grid de inputs */
.input-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 1.25rem;
}

.input-full {
  grid-column: span 2;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-ivory);
  letter-spacing: 0.02em;
}

.field-label span {
  color: var(--gold);
}

.input-control {
  width: 100%;
  height: 50px;
  padding: 0 1.05rem;
  border-radius: var(--radius-sm);
  background: var(--input-bg);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.input-control::placeholder {
  color: #967c6c;
}

.input-control:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(255, 189, 89, 0.14), 0 0 18px rgba(255, 189, 89, 0.15);
}

.input-control option {
  background: #18030d;
  color: var(--text);
}

/* Ações do formulário */
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 189, 89, 0.14);
}

.form-actions-end {
  justify-content: flex-end;
}

/* --------------------------------------------------------------------------
   9. PAGAMENTO (PIX & CARTÃO)
   -------------------------------------------------------------------------- */
.payment-methods-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 0.35rem;
  margin-bottom: 1.9rem;
}

.payment-method-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.payment-method-btn svg {
  color: var(--text-muted);
  transition: var(--transition);
}

.payment-method-btn.active {
  background: var(--gold-tint);
  border-color: var(--gold-border);
  color: var(--text);
  box-shadow: 0 0 16px rgba(255, 189, 89, 0.12);
}

.payment-method-btn.active svg {
  color: var(--gold);
}

.method-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--success-soft);
  color: #7fd6a4;
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-full);
}

.payment-panel {
  display: none;
}

.payment-panel.active {
  display: block;
  animation: fadeIn 0.3s ease forwards;
}

/* PIX */
.pix-box {
  background: var(--bg-glass);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 1.75rem;
  align-items: center;
}

.qr-frame {
  background: #ffffff;
  padding: 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.6);
  position: relative;
}

.qr-frame img {
  width: 100%;
  max-width: 190px;
  height: auto;
  display: block;
}

.qr-loading-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 190px;
  height: 190px;
  background: #fdfbf7;
  border-radius: var(--radius-sm);
  color: #5c4323;
  font-size: 0.76rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}

.qr-spinner-ring {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(255, 189, 89, 0.25);
  border-top-color: #c98a2c;
  border-radius: 50%;
  animation: qrSpinRing 0.8s linear infinite;
}

@keyframes qrSpinRing {
  to { transform: rotate(360deg); }
}

.pix-info {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.payment-status-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  background: var(--success-soft);
  border: 1px solid var(--success-border);
  font-size: 0.78rem;
  font-weight: 600;
  color: #7fd6a4;
  align-self: flex-start;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--success);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

.pix-key-box {
  display: flex;
  gap: 0.5rem;
}

.pix-key-input {
  flex: 1;
  min-width: 0;
  height: 44px;
  background: var(--input-bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0 0.8rem;
  font-family: ui-monospace, 'Cascadia Mono', Consolas, monospace;
  font-size: 0.76rem;
  color: var(--gold-light);
  outline: none;
}

.btn-copy {
  padding: 0 1.1rem;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-copy:hover {
  background: var(--gold-tint);
  border-color: var(--gold);
}

.pix-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pix-note strong {
  color: var(--text-ivory);
  font-weight: 600;
}

.btn-simulate-pay {
  align-self: flex-start;
  background: transparent;
  border: 1px dashed var(--line-strong);
  color: var(--text-muted);
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-simulate-pay:hover {
  background: var(--gold-tint);
  border-color: var(--gold-border);
  color: var(--gold-light);
}

/* Cartão Seguro Mercado Pago */
.card-mp-box {
  background: var(--bg-glass);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card-mp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 189, 89, 0.15);
  padding-bottom: 1rem;
}

.card-mp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
}

.card-mp-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-pure);
}

.card-mp-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.card-mp-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
}

.card-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--text-ivory);
}

.card-mp-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
}

.card-checkout-actions {
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   10. VOUCHER / PASS DIGITAL
   -------------------------------------------------------------------------- */
.voucher-pass {
  background: radial-gradient(120% 90% at 50% 0%, #300617 0%, #120108 80%);
  border: 1px solid var(--gold);
  border-radius: 18px;
  padding: 2.4rem 2.2rem;
  box-shadow: var(--shadow-card), var(--gold-glow);
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}

.voucher-header {
  border-bottom: 1px dashed rgba(255, 189, 89, 0.3);
  padding-bottom: 1.2rem;
  margin-bottom: 1.4rem;
}

.voucher-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}

.voucher-event {
  font-family: var(--font-title);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 0.35rem;
}

.voucher-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.voucher-body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: left;
  margin-bottom: 1.75rem;
}

.voucher-field {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.45rem;
}

.voucher-field-label {
  color: var(--text-muted);
  flex-shrink: 0;
}

.voucher-field-val {
  font-weight: 600;
  color: var(--text);
  text-align: right;
}

.voucher-code {
  color: var(--gold);
  font-family: ui-monospace, 'Cascadia Mono', Consolas, monospace;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem;
  border-radius: var(--radius-full);
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 12px 28px -12px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
}

.btn-whatsapp:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 189, 89, 0.25);
  padding: 2.2rem 0;
  background: rgba(8, 1, 5, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  margin-top: auto;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

.footer-logo-img {
  height: clamp(30px, 7vw, 42px);
  max-width: 140px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity var(--trans-fast), transform var(--trans-fast);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.footer-logo-img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-realization {
  font-size: 0.82rem;
  color: var(--text-ivory);
  line-height: 1.5;
}

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

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(255, 189, 89, 0.08);
  border: 1px solid rgba(255, 189, 89, 0.2);
  transition: var(--transition);
}

.footer-instagram:hover {
  background: rgba(255, 189, 89, 0.18);
  border-color: var(--gold);
  color: var(--text-pure);
  transform: translateY(-1px);
}

.footer-copyright {
  font-size: 0.76rem;
  color: var(--text-dim);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
  padding-top: 1rem;
}

@media (max-width: 768px) {
  .footer-details {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* --------------------------------------------------------------------------
   12. LIGHTBOX
   -------------------------------------------------------------------------- */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 0, 3, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 14px;
  border: 1px solid var(--gold-border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.9), var(--gold-glow);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   13. BARRA FLUTUANTE MOBILE
   -------------------------------------------------------------------------- */
.mobile-floating-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(14, 2, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--gold-border);
  padding: 0.8rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.6);
}

.floating-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.floating-label {
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.floating-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.floating-btn {
  flex-shrink: 0;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-full);
  background: var(--gold-gradient);
  color: #1a0509;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 22px -8px rgba(255, 189, 89, 0.5);
}

/* --------------------------------------------------------------------------
   14. RESPONSIVIDADE
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-poster-card {
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-info {
    align-items: center;
    text-align: center;
  }

  .hero-chips {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0 2rem;
  }

  .form-card {
    padding: 2rem 1.5rem;
  }

  .mobile-floating-bar {
    display: none;
  }
}

@media (max-width: 720px) {
  .pix-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .qr-frame {
    max-width: 230px;
    margin: 0 auto;
  }

  .payment-status-live {
    align-self: center;
  }

  .btn-simulate-pay {
    align-self: center;
  }
}

@media (max-width: 640px) {
  .form-card {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-md);
  }

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

  .input-full {
    grid-column: span 1;
  }

  .stepper-bar {
    gap: 0.5rem;
  }

  .step-divider {
    width: 26px;
  }

  .step-label {
    font-size: 0.7rem;
  }

  .form-actions {
    flex-wrap: wrap;
  }

  .pix-key-box {
    flex-direction: column;
  }

  .btn-copy {
    height: 44px;
  }

  .voucher-pass {
    padding: 1.75rem 1.4rem;
  }

  .footer-logos {
    gap: 1.2rem;
    flex-wrap: nowrap;
  }

  .footer-logo-img {
    height: 32px;
    max-width: 120px;
  }
}

@media (max-width: 540px) {
  .payment-methods-selector {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   14. PAINEL ADMIN MODAL & DASHBOARD VISUAL
   -------------------------------------------------------------------------- */
.footer-admin {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.footer-admin:hover {
  color: var(--gold);
  text-decoration: underline;
}

.footer-separator {
  color: var(--text-dim);
  margin: 0 0.5rem;
}

.admin-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 0, 3, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.admin-modal.active {
  display: flex;
}

/* TELA DE LOGIN DO ADMIN */
.admin-login-wrapper {
  width: 100%;
  max-width: 400px;
  background: rgba(24, 4, 13, 0.96);
  border: 1px solid rgba(255, 189, 89, 0.35);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  animation: modalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-login-box {
  padding: 2rem;
}

.admin-login-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.admin-login-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--text);
  letter-spacing: 0.04em;
}

.admin-login-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* DASHBOARD BOX PRINCIPAL */
.admin-box {
  width: 100%;
  max-width: 1100px;
  height: 88vh;
  background: rgba(24, 4, 13, 0.97);
  border: 1px solid rgba(255, 189, 89, 0.35);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header-left {
  display: flex;
  flex-direction: column;
}

.admin-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.admin-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-admin-logout {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-admin-logout:hover {
  background: rgba(239, 68, 68, 0.22);
  transform: translateY(-1px);
}

.admin-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.admin-close:hover {
  color: var(--danger);
}

.admin-actions {
  padding: 0.9rem 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 1rem;
}

.btn-admin-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-gradient);
  border: none;
  color: #1a0509;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-admin-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 189, 89, 0.3);
}

.btn-admin-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-strong);
  color: var(--text-ivory);
}

.btn-admin-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

/* ÁREA SCROLL DO DASHBOARD */
.admin-scroll-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* GRID DE KPIS */
.admin-kpis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.kpi-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: var(--transition);
}

.kpi-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.kpi-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
}

.kpi-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  font-family: var(--font-title);
  letter-spacing: 0.02em;
}

.kpi-success {
  border-left: 4px solid #22c55e;
}
.kpi-success .kpi-value {
  color: #4ade80;
}

.kpi-warning {
  border-left: 4px solid #eab308;
}
.kpi-warning .kpi-value {
  color: #facc15;
}

.kpi-gold {
  border-left: 4px solid var(--gold-light);
}
.kpi-gold .kpi-value {
  color: var(--gold-light);
}

/* GRID DE GRÁFICOS */
.admin-charts-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 1.5rem;
}

@media (max-width: 850px) {
  .admin-charts-grid {
    grid-template-columns: 1fr;
  }
}

.chart-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chart-card-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  font-weight: 700;
}

.chart-canvas-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SEÇÃO DE TABELA DETALHADA E BUSCA */
.admin-table-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.table-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.table-section-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-ivory);
  font-weight: 700;
}

.table-search-box {
  width: 100%;
  max-width: 320px;
}

.search-control {
  height: 38px;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.search-control:focus {
  background: rgba(255, 255, 255, 0.08);
}

.admin-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.8rem;
}

.admin-table th {
  padding: 0.85rem 1rem;
  border-bottom: 2px solid rgba(255, 189, 89, 0.2);
  background: rgba(255, 255, 255, 0.02);
  color: var(--gold-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-ivory);
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.status-badge.approved {
  background: rgba(34, 197, 94, 0.16);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.status-badge.pending {
  background: rgba(234, 179, 8, 0.16);
  color: #facc15;
  border: 1px solid rgba(234, 179, 8, 0.4);
}

@keyframes modalScaleUp {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* MODAL DO GOOGLE MAPS INTERATIVO */
.chip-link {
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.chip-link:hover {
  background: var(--gold-tint);
  border-color: var(--gold-light);
  color: var(--gold-light);
  box-shadow: 0 0 16px rgba(255, 189, 89, 0.25);
  transform: translateY(-1px);
}

.map-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 0, 3, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.map-modal.active {
  display: flex;
}

.map-box {
  width: 100%;
  max-width: 680px;
  background: rgba(24, 4, 13, 0.96);
  border: 1px solid rgba(255, 189, 89, 0.35);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map-header-text {
  display: flex;
  flex-direction: column;
}

.map-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: 0.04em;
}

.map-subtitle {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.map-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.map-close:hover {
  color: var(--danger);
}

.map-body {
  position: relative;
  width: 100%;
  height: 380px;
  background: #14030a;
}

.map-footer {
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: flex-end;
}

/* --------------------------------------------------------------------------
   15. ACESSIBILIDADE
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
