/* ==========================================================================
   LA BÓVEDA OSCURA DEL PUNTO DE CRUZ™ — MASTER DESIGN SYSTEM
   Gothic Fine Art Gallery · Anti-Duplication Architecture · Mobile First
   ========================================================================== */

:root {
  /* Strict Master Color Palette */
  --bg-main: #09070D;
  --bg-purple-black: #120A18;
  --bg-burgundy: #2A0C19;
  --bg-deep-plum: #30122F;
  --bg-charcoal: #19171C;
  
  --gold-antique: #C5A35A;
  --gold-muted: #8F7540;
  --gold-light: #F7E6A7;
  --gold-gradient: linear-gradient(135deg, #F7E6A7 0%, #C5A35A 50%, #8F7540 100%);
  
  --ivory-warm: #E9DFC8;
  --text-main: #F8FAFC;
  --text-muted: #CBD5E1;
  --text-dim: #94A3B8;
  
  /* Card Background Variations for Visual Rhythm */
  --card-bg-a: linear-gradient(180deg, rgba(25, 23, 28, 0.95) 0%, rgba(42, 12, 25, 0.4) 100%); /* Charcoal + Burgundy glow */
  --card-bg-b: linear-gradient(180deg, rgba(48, 18, 47, 0.85) 0%, rgba(18, 10, 24, 0.98) 100%); /* Plum + Antique Gold halo */
  --card-bg-c: linear-gradient(180deg, rgba(18, 10, 24, 0.95) 0%, rgba(10, 16, 30, 0.6) 100%); /* Midnight Black-Blue */
  
  /* Typography */
  --font-serif: 'Cinzel', serif;
  --font-display: 'Cinzel Decorative', cursive;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Cormorant Garamond', serif;
  
  /* Layout & Radii */
  --container-max: 1180px;
  --container-narrow: 840px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  /* Shadows & Illuminations */
  --glow-gold: 0 0 25px rgba(197, 163, 90, 0.25);
  --glow-gold-strong: 0 0 45px rgba(197, 163, 90, 0.45);
  --glow-purple: 0 0 35px rgba(147, 51, 234, 0.22);
  --shadow-museum: 0 20px 45px -10px rgba(0, 0, 0, 0.85);
  --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.7);
  
  /* Transitions */
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(48, 18, 47, 0.35) 0%, transparent 60%),
    radial-gradient(circle at 10% 25%, rgba(197, 163, 90, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 90% 60%, rgba(42, 12, 25, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 30% 90%, rgba(48, 18, 47, 0.25) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 26L26 30L30 34L34 30Z' fill='%23C5A35A' fill-opacity='0.02'/%3E%3Cpath d='M0 0L4 4M60 60L56 56' stroke='%23E9DFC8' stroke-width='0.5' stroke-opacity='0.015'/%3E%3C/svg%3E");
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Helpers */
h1, h2, h3, h4, .font-title {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ffffff;
  line-height: 1.2;
}

.font-display {
  font-family: var(--font-display);
}

.font-script {
  font-family: var(--font-script);
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

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

/* Section Common */
section {
  padding: 75px 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(197, 163, 90, 0.08);
  border: 1px solid rgba(197, 163, 90, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ivory-warm);
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.section-title {
  font-size: clamp(1.9rem, 4.5vw, 2.75rem);
  margin-bottom: 16px;
  text-align: center;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.16rem);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 36px auto;
  text-align: center;
  line-height: 1.55;
}

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

/* Divisores Ornamentales Góticos */
.gothic-divider-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px auto;
  color: var(--gold-antique);
  font-size: 1.1rem;
  opacity: 0.7;
  letter-spacing: 0.2em;
}

.gothic-divider-symbol::before,
.gothic-divider-symbol::after {
  content: '';
  height: 1px;
  width: 100px;
  background: linear-gradient(90deg, transparent, var(--gold-antique), transparent);
}

/* ==========================================================================
   TOP BAR (ESTRUTURA EM 2 LINHAS ELEGANTES E RESPIRADAS)
   ========================================================================== */
.top-bar {
  background: linear-gradient(180deg, rgba(14, 7, 20, 0.98) 0%, rgba(8, 4, 12, 0.98) 100%);
  border-bottom: 1px solid rgba(197, 163, 90, 0.28);
  padding: 10px 24px 9px 24px;
  position: relative;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Linha 1: Controles (Ambiente no canto esquerdo | País + Moeda no canto direito) */
.top-bar-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Botão Ambiente (Linha 1 Esquerda) */
.top-bar-ambient-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 163, 90, 0.3);
  color: var(--gold-light);
  padding: 4px 11px;
  border-radius: 16px;
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
  user-select: none;
  opacity: 0.88;
}

.top-bar-ambient-btn:hover {
  background: rgba(197, 163, 90, 0.12);
  border-color: var(--gold-antique);
  opacity: 1;
}

/* Linha 2: Frase Informativa Centralizada */
.top-bar-announcement-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding-top: 2px;
}

.top-bar .pulse-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}

.top-bar .announcement-text {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  opacity: 0.85;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

@media (max-width: 650px) {
  .top-bar {
    padding: 8px 16px 8px 16px;
  }

  .top-bar-container {
    gap: 7px;
  }

  .top-bar-ambient-btn {
    padding: 3px 9px;
    font-size: 0.68rem;
  }

  .top-bar-market-chip {
    padding: 3px 10px;
    font-size: 0.72rem;
    margin-left: 0;
  }

  .top-bar .announcement-text {
    font-size: 0.66rem;
    letter-spacing: 0.07em;
  }
}

/* ==========================================================================
   TOP BAR REFINADA — VERSÃO BRASIL (/PT-BR)
   ========================================================================== */
.top-bar-refined {
  background: linear-gradient(180deg, rgba(14, 7, 20, 0.98) 0%, rgba(7, 3, 11, 0.98) 100%);
  border-bottom: 1px solid rgba(197, 163, 90, 0.22);
  padding: 12px 24px;
  position: relative;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.top-bar-refined .top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
}

.top-bar-refined .top-bar-controls-row {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  width: auto;
}

.top-bar-refined .top-bar-ambient-btn {
  background: rgba(18, 10, 24, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(197, 163, 90, 0.25);
  color: var(--gold-light);
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  opacity: 0.9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.top-bar-refined .top-bar-ambient-btn:hover {
  background: rgba(197, 163, 90, 0.15);
  border-color: var(--gold-antique);
  color: #ffffff;
  opacity: 1;
  transform: translateY(-50%) translateY(-1px);
  box-shadow: 0 4px 14px rgba(197, 163, 90, 0.25);
}

.top-bar-refined .top-bar-announcement-row {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding-top: 0;
}

.top-bar-refined .announcement-text {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  opacity: 0.92;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  font-family: var(--font-sans);
}

@media (max-width: 768px) {
  .top-bar-refined {
    padding: 10px 16px;
  }

  .top-bar-refined .top-bar-container {
    flex-direction: column;
    gap: 8px;
    min-height: auto;
  }

  .top-bar-refined .top-bar-controls-row {
    position: static;
    transform: none;
    justify-content: center;
    width: 100%;
  }

  .top-bar-refined .top-bar-ambient-btn {
    padding: 4px 11px;
    font-size: 0.68rem;
  }

  .top-bar-refined .top-bar-ambient-btn:hover {
    transform: translateY(-1px);
  }

  .top-bar-refined .announcement-text {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }
}

/* ==========================================================================
   1. HERO SECTION (8 HERO PATTERNS CURADOS)
   ========================================================================== */
.hero-section {
  padding-top: 36px;
  padding-bottom: 64px;
  position: relative;
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 750px);
  height: 500px;
  background: radial-gradient(circle, rgba(48, 18, 47, 0.4) 0%, rgba(197, 163, 90, 0.06) 50%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: clamp(0.72rem, 1.8vw, 0.82rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-antique);
  margin-bottom: 14px;
  display: inline-block;
  background: rgba(197, 163, 90, 0.1);
  border: 1px solid rgba(197, 163, 90, 0.4);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.hero-headline-sub {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-family: var(--font-serif);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-offer-title {
  font-size: clamp(2.2rem, 6.2vw, 3.6rem);
  font-family: var(--font-display);
  line-height: 1.12;
  margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
}

.hero-subheadline {
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  color: #e2e8f0;
  max-width: 840px;
  margin: 0 auto 30px auto;
  line-height: 1.55;
}

/* Mockup Hero Principal */
.hero-image-wrapper {
  max-width: 980px;
  margin: 0 auto 36px auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 75%;
  background: radial-gradient(ellipse, rgba(197, 163, 90, 0.18) 0%, rgba(48, 18, 47, 0.4) 50%, transparent 75%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.hero-main-img {
  width: 100%;
  max-width: 940px;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 35px rgba(197, 163, 90, 0.15));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.hero-main-img:hover {
  transform: scale(1.015) translateY(-4px);
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.98)) drop-shadow(0 0 45px rgba(197, 163, 90, 0.25));
}

@media (max-width: 768px) {
  .hero-image-wrapper {
    margin-bottom: 24px;
    padding: 0 10px;
  }
}

/* Pricing Card Hero (CTA 1) */
.hero-action-card {
  background: radial-gradient(circle at 50% 0%, rgba(48, 18, 47, 0.4) 0%, rgba(18, 10, 24, 0.98) 100%);
  border: 2px solid var(--gold-antique);
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 24px;
  box-shadow: var(--shadow-museum), var(--glow-gold-strong);
  position: relative;
}

.price-strike-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 4px;
}

.price-strike {
  font-size: 1.4rem;
  color: #ef4444;
  text-decoration: line-through;
  font-weight: 700;
}

.price-deal-huge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  margin-bottom: 12px;
}

.price-deal-prefix {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold-antique);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.price-deal-amount {
  font-size: clamp(2.8rem, 7vw, 4rem);
  font-family: var(--font-serif);
  font-weight: 900;
  color: var(--gold-light);
  text-shadow: 0 0 30px rgba(197, 163, 90, 0.45);
  letter-spacing: 0.02em;
}

/* Botones CTA de Oro */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  padding: 19px 28px;
  background: var(--gold-gradient);
  color: #0f0701;
  font-family: var(--font-serif);
  font-size: clamp(1.02rem, 2.5vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(197, 163, 90, 0.45);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: shine 3.8s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(30deg); }
  28% { transform: translateX(100%) rotate(30deg); }
  100% { transform: translateX(100%) rotate(30deg); }
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(197, 163, 90, 0.65);
}

.btn-cta:active {
  transform: translateY(0) scale(0.99);
}

.microcopy-line {
  margin-top: 14px;
  font-size: clamp(0.8rem, 1.8vw, 0.88rem);
  color: var(--text-muted);
  font-weight: 500;
}

.digital-notice-pill {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gold-antique);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   2. GALERÍA PRINCIPAL "MIRA LO QUE HAY DENTRO ↓" (SALÓN DE ARTE OSCURO)
   ========================================================================== */
.impact-gallery-section {
  position: relative;
  background: radial-gradient(circle at 50% 35%, #140b1d 0%, #0c0712 55%, #060408 100%);
  border-top: 1px solid rgba(197, 163, 90, 0.18);
  border-bottom: 1px solid rgba(197, 163, 90, 0.18);
  padding: 95px 0 85px 0;
  overflow: hidden;
}

/* Subtle gallery spotlight overlay from top */
.impact-gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  height: 380px;
  background: radial-gradient(ellipse at 50% 0%, rgba(197, 163, 90, 0.09) 0%, rgba(139, 38, 53, 0.04) 45%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Subtle vignette around gallery edges */
.impact-gallery-section::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.75);
  pointer-events: none;
  z-index: 1;
}

.gallery-header-wrap {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.gallery-divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold-antique);
  font-size: 0.9rem;
  opacity: 0.65;
  margin-top: 18px;
}

.gallery-divider-ornament span {
  opacity: 0.35;
  letter-spacing: -2px;
}

/* Salon Gallery Grid Layout */
.gallery-grid-curated {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px 24px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .gallery-grid-curated {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }
}

@media (max-width: 768px) {
  .gallery-grid-curated {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 14px;
    margin-bottom: 30px;
  }
}

/* Salon Item Card Container (No Box / No Border Rectangle) */
.gallery-art-card.salon-item {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
  transform: translateY(var(--offset-y, 0px)) scale(var(--scale, 1)) rotate(var(--rotation, 0deg));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.35s ease;
  z-index: 2;
}

@media (max-width: 768px) {
  .gallery-art-card.salon-item {
    transform: translateY(0px) rotate(var(--rotation, 0deg));
  }
  .gallery-art-card.salon-item:nth-child(even) {
    transform: translateY(18px) rotate(var(--rotation, 0deg));
  }
}

.gallery-art-card.salon-item:hover {
  transform: translateY(calc(var(--offset-y, 0px) - 6px)) scale(calc(var(--scale, 1) * 1.04)) rotate(0deg) !important;
  z-index: 12;
}

@media (max-width: 768px) {
  .gallery-art-card.salon-item:hover {
    transform: translateY(-4px) scale(1.03) rotate(0deg) !important;
  }
}

/* Discreet Brass Hanger Detail above Hoop */
.hoop-hanger {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: -4px;
  z-index: 3;
  pointer-events: none;
}

.hanger-pin {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e8d08d 0%, #9e7b34 60%, #4a3610 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 5px rgba(197, 163, 90, 0.4);
}

.hanger-wire {
  width: 1px;
  height: 14px;
  background: linear-gradient(180deg, rgba(197, 163, 90, 0.6) 0%, rgba(197, 163, 90, 0.12) 100%);
}

/* Subtle Warm Ambient Halo behind Hoop */
.hoop-halo {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 163, 90, 0.14) 0%, rgba(139, 38, 53, 0.08) 50%, transparent 75%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
  filter: blur(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-art-card.salon-item:hover .hoop-halo {
  opacity: 1;
  transform: scale(1.15);
  background: radial-gradient(circle, rgba(197, 163, 90, 0.24) 0%, rgba(139, 38, 53, 0.14) 50%, transparent 75%);
}

/* Hoop Image Wrapper & Realistic Drop Shadow */
.hoop-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hoop-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.72)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
  transition: filter 0.35s ease, transform 0.35s ease;
}

.gallery-art-card.salon-item:hover .hoop-img {
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.88)) drop-shadow(0 6px 16px rgba(197, 163, 90, 0.32));
}

/* Museum Plaque Design */
.museum-plaque {
  margin-top: 12px;
  width: 88%;
  max-width: 210px;
  padding: 7px 10px;
  background: rgba(16, 9, 22, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(197, 163, 90, 0.28);
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.35s ease;
  z-index: 3;
}

.gallery-art-card.salon-item:hover .museum-plaque {
  background: rgba(26, 14, 36, 0.88);
  border-color: rgba(197, 163, 90, 0.6);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.65), 0 0 12px rgba(197, 163, 90, 0.18);
}

.plaque-title {
  font-family: var(--font-serif);
  font-size: clamp(0.8rem, 1.4vw, 0.88rem);
  color: #faf5eb;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.plaque-meta {
  font-size: 0.68rem;
  color: var(--gold-antique);
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  justify-content: center;
  gap: 4px;
  opacity: 0.9;
}

.plaque-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 4px;
  color: rgba(197, 163, 90, 0.5);
}

/* ==========================================================================
   3. BLOCO "300+ PATRONES" (EDITORIAL ABUNDANCE BLOCK — NO CTA REPETITION)
   ========================================================================== */
.abundance-section {
  text-align: center;
  background: radial-gradient(circle at 50% 50%, rgba(48, 18, 47, 0.3) 0%, rgba(9, 7, 13, 0.98) 100%);
  padding: 70px 0;
}

.abundance-box-editorial {
  background: linear-gradient(180deg, rgba(25, 23, 28, 0.9) 0%, rgba(18, 10, 24, 0.98) 100%);
  border: 1.5px solid var(--gold-antique);
  border-radius: var(--radius-lg);
  padding: 44px 28px;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: var(--shadow-museum), var(--glow-gold);
}

.huge-abundance-title {
  font-size: clamp(4rem, 14vw, 7.5rem);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin: 10px 0 4px 0;
  text-shadow: 0 0 35px rgba(197, 163, 90, 0.4);
}

.abundance-sub-editorial {
  font-size: clamp(0.92rem, 2vw, 1.15rem);
  font-weight: 800;
  color: var(--ivory-warm);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.abundance-categories-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .abundance-categories-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

.abundance-cat-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 163, 90, 0.3);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ivory-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ==========================================================================
   4. "SEAMOS SINCERAS…" (COMPARAÇÃO CUTE VS DARK EDITORIAL)
   ========================================================================== */
.identity-section {
  position: relative;
  background: radial-gradient(circle at 50% 40%, #110918 0%, #08060b 60%, #050307 100%);
  padding: 95px 0 85px 0;
  overflow: hidden;
  border-top: 1px solid rgba(197, 163, 90, 0.15);
  border-bottom: 1px solid rgba(197, 163, 90, 0.15);
}

.identity-header-wrap {
  margin-bottom: 45px;
}

.identity-main-title {
  font-size: clamp(1.9rem, 4.2vw, 2.7rem);
  margin-bottom: 14px;
  line-height: 1.2;
}

.identity-title-sub {
  color: var(--gold-antique);
  font-size: 0.88em;
  display: block;
  margin-top: 4px;
  font-weight: 700;
}

.identity-supporting-text {
  font-size: clamp(0.96rem, 1.8vw, 1.08rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Panel Comparativo Principal */
.identity-comparison-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(14, 9, 20, 0.95);
  border: 1px solid rgba(197, 163, 90, 0.32);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.75), 0 0 25px rgba(0, 0, 0, 0.5);
  position: relative;
  margin-bottom: 35px;
}

/* Divisor Central Ornamental */
.panel-center-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

.divider-line-top,
.divider-line-bottom {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(197, 163, 90, 0.4) 30%, rgba(197, 163, 90, 0.4) 70%, transparent 100%);
}

.divider-emblem {
  font-size: 0.75rem;
  color: var(--gold-antique);
  background: rgba(14, 9, 20, 0.95);
  border: 1px solid rgba(197, 163, 90, 0.35);
  border-radius: 12px;
  padding: 4px 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
  margin: 10px 0;
  letter-spacing: 1px;
}

/* Lados Esquerdo e Direito */
.comp-side-panel {
  padding: 38px 30px 34px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Lado Esquerdo - Convencional */
.comp-side-panel.left-side {
  background: radial-gradient(circle at 50% 30%, rgba(30, 26, 36, 0.6) 0%, rgba(16, 13, 22, 0.8) 100%);
}

/* Lado Direito - Bóveda Oscura */
.comp-side-panel.right-side {
  background: radial-gradient(circle at 50% 30%, rgba(54, 16, 36, 0.5) 0%, rgba(22, 10, 28, 0.9) 100%);
}

.side-glowing-ambient {
  position: absolute;
  top: 15%;
  right: 15%;
  width: 70%;
  height: 60%;
  background: radial-gradient(circle, rgba(197, 163, 90, 0.1) 0%, rgba(139, 38, 53, 0.08) 50%, transparent 75%);
  filter: blur(25px);
  pointer-events: none;
}

/* Badges / Labels Superiores */
.comp-side-badge {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 24px;
}

.comp-side-badge.cute-badge {
  background: rgba(255, 255, 255, 0.06);
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.comp-side-badge.dark-badge {
  background: linear-gradient(135deg, rgba(197, 163, 90, 0.25) 0%, rgba(139, 38, 53, 0.3) 100%);
  color: var(--gold-light);
  border: 1px solid rgba(197, 163, 90, 0.5);
  box-shadow: 0 0 14px rgba(197, 163, 90, 0.15);
}

/* Exibição dos Bastidores (Sem Caixas Rígidas!) */
.comp-hoop-display {
  position: relative;
  width: 100%;
  max-width: 270px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.comp-hoop-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.comp-hoop-img.desaturated-img {
  filter: saturate(0.65) brightness(0.85) drop-shadow(0 14px 25px rgba(0, 0, 0, 0.65));
  opacity: 0.88;
}

.left-side:hover .comp-hoop-img.desaturated-img {
  transform: translateY(-4px) scale(1.03);
  filter: saturate(0.75) brightness(0.9) drop-shadow(0 18px 30px rgba(0, 0, 0, 0.75));
}

.comp-hoop-img.gothic-img {
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.85)) drop-shadow(0 4px 12px rgba(197, 163, 90, 0.25));
}

.right-side:hover .comp-hoop-img.gothic-img {
  transform: translateY(-6px) scale(1.05);
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.95)) drop-shadow(0 6px 18px rgba(197, 163, 90, 0.4));
}

.right-warm-halo {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 163, 90, 0.18) 0%, rgba(139, 38, 53, 0.12) 50%, transparent 75%);
  filter: blur(15px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.right-side:hover .right-warm-halo {
  transform: scale(1.15);
  opacity: 1;
}

/* Conteúdo abaixo dos bastidores */
.comp-side-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 8px;
  line-height: 1.3;
}

.comp-side-title.left-title {
  color: #94a3b8;
}

.comp-side-title.right-title {
  color: #ffffff;
}

.comp-side-desc {
  font-size: clamp(0.84rem, 1.5vw, 0.92rem);
  line-height: 1.48;
  margin-bottom: 16px;
  max-width: 320px;
}

.comp-side-desc.left-desc {
  color: #64748b;
}

.comp-side-desc.right-desc {
  color: var(--ivory-warm);
}

/* Micro Tags / Pílulas Comparativas */
.comp-micro-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.comp-micro-tags span {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.left-tags span {
  background: rgba(255, 255, 255, 0.04);
  color: #64748b;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.right-tags span {
  background: rgba(197, 163, 90, 0.12);
  color: var(--gold-antique);
  border: 1px solid rgba(197, 163, 90, 0.28);
}

/* Frase de Transição & Conclusão Final */
.identity-closing-wrap {
  margin-top: 25px;
}

.identity-transition-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
  font-family: var(--font-serif);
  color: var(--gold-antique);
  background: rgba(197, 163, 90, 0.08);
  border: 1px solid rgba(197, 163, 90, 0.25);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.identity-closing-sentence {
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 500;
}

/* Adaptação Mobile */
@media (max-width: 768px) {
  .identity-comparison-panel {
    grid-template-columns: 1fr;
  }

  .panel-center-divider {
    position: relative;
    left: 0;
    transform: none;
    width: 100%;
    height: 40px;
    flex-direction: row;
    margin: 10px 0;
  }

  .divider-line-top,
  .divider-line-bottom {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(197, 163, 90, 0.4) 50%, transparent 100%);
  }

  .comp-side-panel {
    padding: 30px 20px;
  }

  .comp-hoop-display {
    max-width: 230px;
  }
}

/* ==========================================================================
   5. 8 COLECCIONES CLASIFICADAS (ÍNDICE TIPOGRÁFICO MINIMALISTA)
   ========================================================================== */
.categories-section {
  background: linear-gradient(180deg, var(--bg-main) 0%, #120A18 50%, var(--bg-main) 100%);
  border-top: 1px solid rgba(197, 163, 90, 0.12);
  border-bottom: 1px solid rgba(197, 163, 90, 0.12);
  padding: 70px 0;
}

.vault-index-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

@media (max-width: 980px) {
  .vault-index-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 540px) {
  .vault-index-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.vault-type-card {
  background: linear-gradient(180deg, rgba(25, 23, 28, 0.9) 0%, rgba(18, 10, 24, 0.98) 100%);
  border: 1px solid rgba(197, 163, 90, 0.25);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  position: relative;
}

.vault-type-card:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 163, 90, 0.65);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8), 0 0 20px rgba(147, 51, 234, 0.15);
}

.vault-type-card-premium {
  border-color: rgba(197, 163, 90, 0.45);
  background: linear-gradient(180deg, rgba(48, 18, 47, 0.4) 0%, rgba(18, 10, 24, 0.98) 100%);
}

.vault-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.vault-card-icon {
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vault-card-count {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold-antique);
  background: rgba(197, 163, 90, 0.1);
  border: 1px solid rgba(197, 163, 90, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.vault-card-title {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.vault-card-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Línea de Resumen Editorial */
.vault-summary-line {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(0.82rem, 1.8vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-antique);
  opacity: 0.85;
}

/* ==========================================================================
   8. COMPARAÇÃO DE PREÇO (CTA 2 MID-PAGE)
   ========================================================================== */
.price-comp-box {
  background: radial-gradient(circle at 50% 0%, rgba(48, 18, 47, 0.35) 0%, rgba(18, 10, 24, 0.98) 100%);
  border: 2px solid var(--gold-antique);
  border-radius: var(--radius-lg);
  padding: 44px 28px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-museum), var(--glow-gold-strong);
}

.comp-pills-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

@media (max-width: 600px) {
  .comp-pills-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.comp-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
}

.comp-pill-qty {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.comp-pill-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ef4444;
}

.comp-boveda-banner {
  background: linear-gradient(135deg, rgba(48, 18, 47, 0.5) 0%, rgba(197, 163, 90, 0.2) 100%);
  border: 1px solid var(--gold-antique);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  margin-bottom: 24px;
}

/* ==========================================================================
   9. BÔNUS EXCLUSIVOS
   ========================================================================== */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
  margin-top: 36px;
}

.bonus-single-card {
  background: linear-gradient(180deg, rgba(25, 23, 28, 0.9) 0%, rgba(18, 10, 24, 0.98) 100%);
  border: 1px solid rgba(197, 163, 90, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.bonus-single-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-antique);
  box-shadow: var(--shadow-museum), var(--glow-gold);
}

.bonus-thumb-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #000;
}

.bonus-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bonus-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* ==========================================================================
   10. OFERTA / STACK (CTA 3)
   ========================================================================== */
.stack-offer-box {
  background: radial-gradient(circle at 50% 0%, rgba(48, 18, 47, 0.4) 0%, rgba(18, 10, 24, 0.98) 100%);
  border: 2px solid var(--gold-antique);
  border-radius: var(--radius-lg);
  padding: 44px 28px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-museum), var(--glow-gold-strong);
}

.stack-list-compact {
  margin: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
}

.stack-list-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
}

.stack-list-row:last-child {
  border-bottom: none;
}

/* ==========================================================================
   11. GARANTÍA
   ========================================================================== */
.guarantee-badge-box {
  background: rgba(18, 10, 24, 0.9);
  border: 1px solid rgba(197, 163, 90, 0.35);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow-card);
}

@media (max-width: 650px) {
  .guarantee-badge-box {
    flex-direction: column;
    text-align: center;
  }
}

.seal-gold-circle {
  width: 116px;
  height: 116px;
  flex-shrink: 0;
  background: radial-gradient(circle, #30122F 0%, #120A18 100%);
  border: 2px solid var(--gold-antique);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ivory-warm);
  box-shadow: 0 0 25px rgba(197, 163, 90, 0.35);
}

/* ==========================================================================
   12. PROVA SOCIAL — "MIRA CÓMO SE VE UN PROYECTO TERMINADO"
   ========================================================================== */
.finished-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

@media (max-width: 640px) {
  .finished-projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 400px) {
  .finished-projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.finished-project-card {
  background: rgba(18, 10, 24, 0.95);
  border: 1px solid rgba(197, 163, 90, 0.28);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.finished-project-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-antique);
  box-shadow: var(--shadow-museum), 0 0 15px rgba(197, 163, 90, 0.25);
}

.finished-project-img {
  width: 100%;
  aspect-ratio: 1122 / 1402;
  object-fit: cover;
  display: block;
}

.finished-project-caption {
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.finished-project-caption strong {
  color: #fff;
  display: block;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

/* ==========================================================================
   13. FAQ ACCORDION
   ========================================================================== */
.faq-wrap-condensed {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(18, 10, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(197, 163, 90, 0.4);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: clamp(0.98rem, 2vw, 1.1rem);
  color: #ffffff;
  gap: 14px;
}

.faq-toggle-icon {
  font-size: 1.25rem;
  color: var(--gold-antique);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 22px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding: 0 22px 20px 22px;
}

/* ==========================================================================
   14. CTA FINAL (CTA 4) & FOOTER
   ========================================================================== */
.final-cta-block {
  background: linear-gradient(180deg, var(--bg-main) 0%, #160A24 100%);
  text-align: center;
  padding: 90px 0 65px;
}

.footer-clean {
  background: #040306;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px 0;
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-dim);
}

.footer-nav-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 14px 0;
  flex-wrap: wrap;
}

.footer-nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-nav-links a:hover {
  color: var(--gold-antique);
}



/* ==========================================================================
   SISTEMA AUTOMÁTICO DE LOCALIZAÇÃO DE PAÍS + MOEDA (LA BÓVEDA OSCURA)
   ========================================================================== */

/* Top Bar Pill / Chip Premium */
.top-bar-market-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(38, 20, 52, 0.95) 0%, rgba(18, 10, 26, 0.98) 100%);
  border: 1px solid rgba(197, 163, 90, 0.5);
  color: var(--ivory-warm);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  margin-left: 10px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 0 8px rgba(197, 163, 90, 0.08);
}

.top-bar-market-chip:hover {
  background: linear-gradient(135deg, rgba(54, 28, 74, 0.98) 0%, rgba(28, 14, 40, 1) 100%);
  border-color: var(--gold-antique);
  box-shadow: 0 0 14px rgba(197, 163, 90, 0.35);
  transform: translateY(-1px);
}

.top-bar-market-chip .chip-flag {
  font-size: 1.15rem;
  line-height: 1;
}

.top-bar-market-chip .chip-market-name {
  color: #ffffff;
  font-weight: 700;
}

.top-bar-market-chip .chip-divider {
  color: var(--gold-antique);
  opacity: 0.6;
}

.top-bar-market-chip .chip-code {
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.top-bar-market-chip .chip-caret {
  font-size: 0.68rem;
  color: var(--gold-antique);
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.top-bar-market-chip:hover .chip-caret {
  transform: translateY(1px);
}

/* Selo de Localização Premium nos Cards de Oferta */
.market-location-seal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(135deg, rgba(30, 16, 42, 0.95) 0%, rgba(14, 8, 22, 0.98) 100%);
  border: 1px solid rgba(197, 163, 90, 0.4);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  margin: 12px 0 16px 0;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4), inset 0 0 12px rgba(197, 163, 90, 0.06);
  user-select: none;
  text-align: left;
}

.market-location-seal:hover {
  border-color: var(--gold-antique);
  background: linear-gradient(135deg, rgba(42, 22, 58, 0.98) 0%, rgba(20, 11, 32, 1) 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 16px rgba(197, 163, 90, 0.25);
  transform: translateY(-1px);
}

.seal-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.seal-flag {
  font-size: 1.85rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  flex-shrink: 0;
}

.seal-text-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.seal-label-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-antique);
  text-transform: uppercase;
}

.seal-country-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.seal-currency-highlight {
  color: var(--gold-light);
  font-weight: 800;
}

/* Botão Pílula "Cambiar País" */
.btn-change-market-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(197, 163, 90, 0.12);
  border: 1px solid rgba(197, 163, 90, 0.45);
  color: var(--gold-light);
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.btn-change-market-pill:hover,
.market-location-seal:hover .btn-change-market-pill {
  background: rgba(197, 163, 90, 0.25);
  border-color: var(--gold-antique);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(197, 163, 90, 0.3);
}

.btn-change-market-pill i {
  font-size: 0.72rem;
  color: var(--gold-antique);
}

/* Sticky Bar Flag Indicator */
.sticky-bar-flag {
  font-size: 1.5rem;
  line-height: 1;
  margin-right: 4px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* Modal Selector Backdrop */
.market-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: opacity 0.25s ease;
}

/* Modal Container (Desktop) */
.market-modal-container {
  background: linear-gradient(180deg, #180e26 0%, #0c0814 100%);
  border: 1px solid var(--gold-antique);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-museum), var(--glow-gold);
  position: relative;
  overflow: hidden;
  animation: marketModalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes marketModalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Bottom Sheet Mode for Mobile */
@media (max-width: 768px) {
  .market-modal-backdrop {
    align-items: flex-end;
    padding: 0;
  }

  .market-modal-container {
    max-width: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
    max-height: 88vh;
    animation: marketSheetIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes marketSheetIn {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
}

.market-modal-header {
  padding: 18px 22px 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.market-modal-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.market-modal-close {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.market-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold-antique);
}

.market-modal-subtitle {
  padding: 12px 22px 6px 22px;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.btn-auto-detect {
  margin: 10px 22px 12px 22px;
  background: rgba(197, 163, 90, 0.12);
  border: 1px solid rgba(197, 163, 90, 0.4);
  color: var(--gold-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.85rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-auto-detect:hover {
  background: rgba(197, 163, 90, 0.22);
  border-color: var(--gold-antique);
}

.market-search-wrap {
  margin: 0 22px 14px 22px;
  position: relative;
}

.market-search-wrap .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-antique);
  font-size: 0.85rem;
  pointer-events: none;
}

.market-search-wrap input {
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(197, 163, 90, 0.3);
  border-radius: var(--radius-sm);
  padding: 10px 14px 10px 38px;
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.market-search-wrap input:focus {
  border-color: var(--gold-antique);
}

.market-list-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 0 14px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 380px;
}

/* Custom Scrollbar for Market List */
.market-list-scroll::-webkit-scrollbar {
  width: 6px;
}
.market-list-scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}
.market-list-scroll::-webkit-scrollbar-thumb {
  background: rgba(197, 163, 90, 0.3);
  border-radius: 3px;
}

.market-item-row {
  padding: 11px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
}

.market-item-row:hover {
  background: rgba(197, 163, 90, 0.1);
  border-color: rgba(197, 163, 90, 0.3);
}

.market-item-row.active {
  background: rgba(197, 163, 90, 0.18);
  border-color: var(--gold-antique);
}

.market-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #fff;
}

.market-item-flag {
  font-size: 1.25rem;
}

.market-item-country {
  font-weight: 500;
}

.market-item-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
}

.market-item-code {
  color: var(--gold-antique);
  font-weight: 600;
}

.market-item-price {
  color: #faf5eb;
  font-weight: 700;
  font-family: var(--font-serif);
}
