/* ==========================================================================
   MR STORE • DESIGN SYSTEM & LINK-IN-BIO PREMIUM (PRODUÇÃO)
   Direção de Arte: O COPY
   Cores: Preto Profundo, Azul-Marinho de Grife, Acentos Ciano/Neon & Branco
   ========================================================================== */

:root {
  /* Paleta Nobre */
  --bg-deep: #05070a;
  --bg-navy-dark: #080f1e;
  --bg-navy-surface: rgba(10, 18, 34, 0.22);
  --bg-navy-card: rgba(12, 22, 42, 0.20);
  --bg-navy-hover: rgba(22, 38, 70, 0.45);
  
  --accent-cyan: #00b4d8;
  --accent-cyan-glow: rgba(0, 180, 216, 0.4);
  --accent-blue-neon: #38bdf8;
  --accent-whatsapp: #25d366;
  --accent-whatsapp-glow: rgba(37, 211, 102, 0.35);
  
  --text-pure: #ffffff;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;
  
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-active: rgba(56, 189, 248, 0.45);
  
  /* Tipografia */
  --font-display: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transições e Easing */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset Global & Blindagem Mobile */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100%;
  background-color: var(--bg-deep);
  color: var(--text-pure);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden !important;
}

/* Foco Acessível */
:focus-visible {
  outline: 2px solid var(--accent-blue-neon);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   CAMADA AMBIENTAL DE FUNDO (Vídeo Real / Foto de Grife / Three.js)
   -------------------------------------------------------------------------- */
.bg-media-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-fallback-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/video-poster.webp');
  background-size: cover;
  background-position: center center;
  opacity: 1;
  filter: brightness(0.92) saturate(1.2);
  z-index: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

/* Quando o vídeo inicia a reprodução, o poster estático desaparece suavemente */
.video-active .bg-fallback-image {
  opacity: 0;
  visibility: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.94;
  filter: saturate(1.25) brightness(0.96);
  transition: opacity 0.8s ease;
  z-index: 1;
  pointer-events: none;
}

.bg-ambient-lights {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 25%, rgba(0, 180, 216, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(14, 30, 60, 0.18) 0%, transparent 50%);
  z-index: 2;
}

.bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0.45;
}

.bg-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.05) 0%, rgba(5, 7, 10, 0.14) 38%, rgba(5, 7, 10, 0.32) 100%);
  z-index: 4;
}

.bg-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.28);
  z-index: 5;
}

/* --------------------------------------------------------------------------
   ESTRUTURA PRINCIPAL
   -------------------------------------------------------------------------- */
.page-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 16px 48px;
}

.biolink-card {
  width: 100%;
  max-width: 440px;
  background: rgba(8, 14, 28, 0.22);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  padding: 22px 18px 20px;
  box-shadow: 
    0 20px 50px -10px rgba(0, 0, 0, 0.6),
    0 0 35px -8px rgba(0, 180, 216, 0.14);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

/* Brilho de Borda Superior */
.biolink-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.7), transparent);
}

/* --------------------------------------------------------------------------
   PLAYER DE MÚSICA EDITORIAL MINIMALISTA (Acima da Hero)
   Design autoral, sóbrio, contemporâneo e sem ruído de widget/dashboard
   -------------------------------------------------------------------------- */
.music-player-editorial {
  position: relative;
  width: 100%;
  background: rgba(14, 20, 32, 0.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  user-select: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.music-player-editorial:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(16, 24, 38, 0.52);
  box-shadow: 0 4px 16px -2px rgba(0, 0, 0, 0.4);
}

.player-editorial-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 10px;
  gap: 12px;
}

/* Grupo de Faixa (Esquerda) */
.editorial-track-group {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
  cursor: pointer;
  outline: none;
}

.editorial-track-group:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
}

/* Equalizador Hairline Minimalista */
.editorial-rhythm {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
  padding: 0 2px;
  flex-shrink: 0;
}

.rhythm-bar {
  width: 1.5px;
  background-color: rgba(255, 255, 255, 0.45);
  border-radius: 1px;
  transition: height 0.25s ease, background-color 0.25s ease;
}

.rhythm-bar-1 { height: 4px; }
.rhythm-bar-2 { height: 8px; }
.rhythm-bar-3 { height: 5px; }

[data-playing="true"] .rhythm-bar {
  background-color: rgba(255, 255, 255, 0.9);
}

[data-playing="true"] .rhythm-bar-1 {
  animation: rhythm-oscillate-1 0.7s ease-in-out infinite alternate;
}

[data-playing="true"] .rhythm-bar-2 {
  animation: rhythm-oscillate-2 0.9s ease-in-out infinite alternate;
}

[data-playing="true"] .rhythm-bar-3 {
  animation: rhythm-oscillate-3 0.6s ease-in-out infinite alternate;
}

@keyframes rhythm-oscillate-1 {
  0% { height: 3px; }
  100% { height: 11px; }
}

@keyframes rhythm-oscillate-2 {
  0% { height: 12px; }
  100% { height: 4px; }
}

@keyframes rhythm-oscillate-3 {
  0% { height: 5px; }
  100% { height: 10px; }
}

/* Tipografia Editorial Sóbria */
.editorial-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.editorial-eyebrow {
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.2;
}

.editorial-title {
  font-size: 0.775rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Lado Direito: Status + Controles */
.editorial-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.editorial-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

[data-playing="true"] .editorial-status-dot {
  background-color: #34d399;
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.45);
}

.editorial-status-text {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

[data-playing="true"] .editorial-status-text {
  color: rgba(255, 255, 255, 0.72);
}

.editorial-actions {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Botões do Player Editorial Minimalista */
.editorial-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  padding: 0;
}

.editorial-icon-btn:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.editorial-icon-btn:active {
  transform: scale(0.94);
}

/* Play / Pause toggle */
[data-playing="false"] .icon-play { display: block; margin-left: 1px; }
[data-playing="false"] .icon-pause { display: none; }
[data-playing="true"] .icon-play { display: none; }
[data-playing="true"] .icon-pause { display: block; }

/* Mute / Unmute toggle */
[data-muted="false"] .icon-volume-on { display: block; }
[data-muted="false"] .icon-volume-off { display: none; }
[data-muted="true"] .icon-volume-on { display: none; }
[data-muted="true"] .icon-volume-off { display: block; }

[data-muted="true"] .btn-mute {
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.08);
}

/* Barra de Progresso Hairline na Base */
.editorial-progress-track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.06);
}

.editorial-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.85));
  transition: width 0.15s linear;
}

/* --------------------------------------------------------------------------
   HEADER & HERO COM BANNER FOTOGRÁFICO INTEGRADO
   -------------------------------------------------------------------------- */
.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 11px;
}

/* Pill de Envio */
.shipping-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-blue-neon);
}

.pulse-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-blue-neon);
  box-shadow: 0 0 8px var(--accent-blue-neon);
  animation: pulse-ring 2s infinite ease-in-out;
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.35); opacity: 1; box-shadow: 0 0 12px var(--accent-blue-neon); }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.shipping-icon {
  stroke: var(--accent-blue-neon);
}

/* Moldura do Logo Oficial */
.logo-frame-wrapper {
  position: relative;
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-aura {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-cyan-glow) 0%, transparent 70%);
  filter: blur(12px);
}

.logo-frame {
  position: relative;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  padding: 2.5px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.85), rgba(255, 255, 255, 0.15), rgba(0, 180, 216, 0.7));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background-color: #0c1524;
  display: block;
}

/* Tipografia da Marca */
.identity-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 5.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  /* Acabamento 3D Metálico Esculpido & Rim-Light de Elite */
  background: linear-gradient(180deg, #ffffff 15%, #e2e8f0 55%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.45))
          drop-shadow(0 2px 4px rgba(0, 0, 0, 0.9))
          drop-shadow(0 8px 16px rgba(0, 180, 216, 0.22));
  line-height: 1.15;
  margin-top: 2px;
}

.brand-tagline {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--accent-blue-neon);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.brand-bio {
  font-size: 0.815rem;
  color: var(--text-muted);
  max-width: 360px;
  margin: 3px auto 0;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
}

/* BANNER FOTOGRÁFICO DA HERO (Tamanho Médio, Elegante e Integrado) */
.hero-banner-frame {
  width: 100%;
  height: 155px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.65);
  margin-top: 4px;
  position: relative;
  background-color: #0b1424;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transform: scale(1.01);
  transition: transform 0.5s var(--ease-spring);
}

.hero-banner-frame:hover .hero-banner-img {
  transform: scale(1.04);
}

/* --------------------------------------------------------------------------
   FLUXO SEQUENCIAL DE CARDS (Espaçamento Unificado)
   -------------------------------------------------------------------------- */
.cards-flow {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* --------------------------------------------------------------------------
   BOTÕES DE AÇÃO (WhatsApp, Grupo VIP, Instagram)
   -------------------------------------------------------------------------- */
.action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 10px 14px;
  border-radius: 16px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-spring), border-color 0.25s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.action-btn:active {
  transform: scale(0.985);
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  position: relative;
}

.icon-bubble {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.28s var(--ease-spring);
}

.action-btn:hover .icon-bubble {
  transform: scale(1.08) rotate(-3deg);
}

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

.btn-title {
  font-size: 0.925rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.btn-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.25;
  margin-top: 2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.btn-action-arrow {
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.25s var(--ease-spring), color 0.25s ease;
}

.action-btn:hover .btn-action-arrow {
  transform: translateX(3px);
  color: var(--text-pure);
}

/* 1. WHATSAPP PRIMARY */
.action-primary {
  background: linear-gradient(135deg, rgba(14, 44, 32, 0.72), rgba(8, 30, 22, 0.78));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(37, 211, 102, 0.55);
  box-shadow: 
    0 6px 20px -4px rgba(0, 0, 0, 0.5),
    0 0 20px -4px var(--accent-whatsapp-glow);
}

.action-primary .btn-title {
  color: #ffffff;
}

.action-primary .btn-desc {
  color: #a7f3d0;
}

.action-primary .whatsapp-bubble {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.action-primary .whatsapp-bubble svg {
  display: block;
  fill: #ffffff;
}

.action-primary .btn-action-arrow {
  color: #6ee7b7;
}

.action-primary:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 211, 102, 0.85);
  box-shadow: 
    0 10px 28px -4px rgba(0, 0, 0, 0.6),
    0 0 30px 2px rgba(37, 211, 102, 0.45);
}

/* SHINY SWEEP GLOW */
.shiny-btn {
  position: relative;
  overflow: hidden;
}

.btn-shine {
  position: absolute;
  top: -50%;
  left: -60%;
  width: 35%;
  height: 200%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 40%,
    rgba(255, 255, 255, 0.32) 50%,
    rgba(255, 255, 255, 0.03) 60%,
    transparent 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 3;
  animation: shine-sweep 4.2s infinite var(--ease-spring);
}

.action-primary:hover .btn-shine {
  animation: shine-sweep-fast 1s ease;
}

@keyframes shine-sweep {
  0%, 65% { left: -70%; }
  100% { left: 140%; }
}

@keyframes shine-sweep-fast {
  0% { left: -70%; }
  100% { left: 140%; }
}

/* 2 & 3. GRUPO VIP & INSTAGRAM */
.action-secondary {
  background: var(--bg-navy-surface);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--border-glass);
}

.action-secondary:hover {
  background: var(--bg-navy-hover);
  border-color: var(--border-active);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.5), 0 0 16px -4px rgba(56, 189, 248, 0.22);
}

.action-secondary .btn-title {
  color: var(--text-pure);
}

.instagram-bubble {
  background: linear-gradient(135deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(193, 53, 132, 0.28);
}

.vip-bubble {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.28);
}

/* --------------------------------------------------------------------------
   4. CARD DE LOCALIZAÇÃO (MAPS)
   -------------------------------------------------------------------------- */
.section-heading {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-pure);
}

.location-card {
  width: 100%;
  background: var(--bg-navy-card);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.location-title-wrap, .hours-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-address {
  font-size: 0.825rem;
  color: #cbd5e1;
  line-height: 1.35;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.75);
}

.map-interactive-frame {
  position: relative;
  width: 100%;
  height: 195px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background-color: #0c1524;
}

.google-maps-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: contrast(1.05) saturate(1.1);
}

.map-scroll-barrier {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: rgba(10, 18, 34, 0.4);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.map-scroll-barrier.unlocked {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.btn-enable-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 20, 38, 0.92);
  border: 1px solid var(--border-active);
  color: var(--text-pure);
  font-family: var(--font-body);
  font-size: 0.775rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-enable-map:hover {
  transform: scale(1.04);
  background: rgba(18, 36, 68, 0.95);
}

.route-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.2), rgba(14, 165, 233, 0.1));
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 14px;
  color: var(--text-pure);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.25s var(--ease-spring);
  -webkit-tap-highlight-color: transparent;
}

.route-cta-btn:hover {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.35), rgba(14, 165, 233, 0.2));
  border-color: var(--accent-blue-neon);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(0, 180, 216, 0.25);
}

.route-cta-btn:active {
  transform: scale(0.985);
}

.route-cta-btn .arrow-ext {
  color: var(--accent-blue-neon);
}

/* --------------------------------------------------------------------------
   5. CARD DE HORÁRIOS DE FUNCIONAMENTO (ÚLTIMO CARD)
   -------------------------------------------------------------------------- */
.hours-card {
  width: 100%;
  background: var(--bg-navy-card);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.store-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.725rem;
  font-weight: 700;
  color: #34d399;
  transition: all 0.3s ease;
}

.store-status-pill.status-closed {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #f87171;
}

.store-status-pill .status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #34d399;
  box-shadow: 0 0 8px #34d399;
}

.store-status-pill.status-closed .status-dot {
  background-color: #f87171;
  box-shadow: 0 0 8px #f87171;
}

.hours-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.8rem;
}

.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 8px;
  border-radius: 8px;
  color: var(--text-muted);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.75);
  transition: background 0.2s ease, color 0.2s ease;
}

.schedule-row.current-day-row {
  background: rgba(56, 189, 248, 0.12);
  color: var(--text-pure);
  font-weight: 700;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.schedule-row.current-day-row .day-name::before {
  content: '● ';
  color: var(--accent-blue-neon);
  font-size: 0.65rem;
}

.closed-text {
  color: #94a3b8;
  font-style: italic;
}

.current-day-row .closed-text {
  color: #f87171;
}

/* --------------------------------------------------------------------------
   CARD DE AVALIAÇÕES DO GOOGLE (Premium, Escuro & Editorial)
   -------------------------------------------------------------------------- */
.google-reviews-card {
  position: relative;
  background: linear-gradient(145deg, rgba(14, 23, 42, 0.22), rgba(7, 13, 24, 0.26));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 20px;
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  box-shadow: 
    0 12px 28px -6px rgba(0, 0, 0, 0.45),
    0 0 20px -6px rgba(245, 158, 11, 0.08);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.google-reviews-card:hover {
  border-color: rgba(245, 158, 11, 0.38);
  box-shadow: 
    0 16px 32px -6px rgba(0, 0, 0, 0.75),
    0 0 28px -4px rgba(245, 158, 11, 0.14);
}

.google-reviews-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.5), transparent);
}

.reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.google-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 70%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.google-svg-icon {
  width: 26px;
  height: 26px;
  display: block;
}

.stars-gold-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.star-icon {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.45));
}

.reviews-copy-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 340px;
}

.reviews-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-pure);
  letter-spacing: -0.01em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.reviews-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.75);
}

/* CTA Dourado Escuro de Alta Hierarquia */
.google-review-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.14) 0%, rgba(217, 119, 6, 0.08) 100%);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: #fbbf24;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s var(--ease-spring);
  box-shadow: 0 4px 14px -2px rgba(245, 158, 11, 0.12);
}

.google-review-cta-btn:hover {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.22) 0%, rgba(217, 119, 6, 0.14) 100%);
  border-color: rgba(245, 158, 11, 0.85);
  color: #fef08a;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.25);
  transform: translateY(-1.5px);
}

.google-review-cta-btn:active {
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   RODAPÉ
   -------------------------------------------------------------------------- */
.card-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding-top: 4px;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.status-indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-blue-neon);
  box-shadow: 0 0 6px var(--accent-blue-neon);
}

.footer-copy {
  font-size: 0.725rem;
  color: var(--text-subtle);
}

.footer-copy-link {
  color: var(--text-subtle);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-copy-link:hover {
  color: var(--accent-blue-neon);
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

/* --------------------------------------------------------------------------
   RESPONSIVIDADE (320px a 1920px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .bg-video {
    opacity: 0.96;
    filter: saturate(1.28) brightness(0.98);
  }

  .bg-gradient-overlay {
    background: linear-gradient(180deg, rgba(5, 7, 10, 0.04) 0%, rgba(5, 7, 10, 0.12) 35%, rgba(5, 7, 10, 0.28) 100%);
  }

  .bg-vignette {
    box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.20);
  }

  .biolink-card {
    background: rgba(5, 9, 20, 0.16);
    backdrop-filter: blur(3.5px);
    -webkit-backdrop-filter: blur(3.5px);
    border-color: rgba(255, 255, 255, 0.20);
  }

  .action-primary {
    background: linear-gradient(135deg, rgba(14, 44, 32, 0.65), rgba(8, 30, 22, 0.70));
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  .action-secondary {
    background: rgba(8, 15, 30, 0.16);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  .location-card,
  .hours-card {
    background: rgba(6, 13, 26, 0.16);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  .google-reviews-card {
    background: linear-gradient(145deg, rgba(14, 23, 42, 0.16), rgba(7, 13, 24, 0.20));
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  .player-editorial-content {
    padding: 7px 10px 8px;
    gap: 8px;
  }

  .editorial-title {
    font-size: 0.75rem;
  }
}

@media (max-width: 380px) {
  .page-wrapper {
    padding: 16px 10px 32px;
  }
  
  .biolink-card {
    padding: 18px 12px 16px;
    gap: 14px;
  }

  .player-editorial-content {
    padding: 6px 8px 7px;
    gap: 6px;
  }

  .editorial-status-text {
    display: none;
  }

  .editorial-title {
    font-size: 0.71875rem;
  }

  .editorial-icon-btn {
    width: 26px;
    height: 26px;
  }

  
  .brand-name {
    font-size: 1.6rem;
  }

  .hero-banner-frame {
    height: 135px;
  }
  
  .action-btn {
    min-height: 54px;
    padding: 8px 12px;
  }
  
  .icon-bubble {
    width: 36px;
    height: 36px;
  }
  
  .map-interactive-frame {
    height: 175px;
  }
}

@media (min-width: 768px) {
  .page-wrapper {
    padding-top: 48px;
    padding-bottom: 60px;
  }
  
  .biolink-card {
    max-width: 480px;
    padding: 26px 24px 22px;
  }

  .hero-banner-frame {
    height: 175px;
  }
  
  .map-interactive-frame {
    height: 215px;
  }
}

@media (min-width: 1280px) {
  .page-wrapper {
    padding-top: 60px;
  }
}

/* --------------------------------------------------------------------------
   PREFERS-REDUCED-MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .bg-video {
    display: none !important;
  }
  
  .bg-fallback-image {
    opacity: 0.45 !important;
  }
  
  .btn-shine {
    display: none !important;
  }

  [data-playing="true"] .rhythm-bar {
    animation: none !important;
    height: 6px !important;
  }
}
