/**
 * COMPONENTES DO BIO LINK PREMIUM (MÉTODO "O COPY" v13)
 * Projeto: Mumu Store
 */

/* ═══════════════════════════════════════════════════════════════
   1. HERO DA MARCA
   ═══════════════════════════════════════════════════════════════ */
.brand-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding-top: 8px;
}

/* Avatar com Anel de Glow Dourado */
.avatar-frame {
  position: relative;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-glow-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--accent-gradient);
  opacity: 0.85;
  filter: drop-shadow(0 0 16px var(--accent-glow));
  animation: pulse-glow 3.5s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: scale(0.98); opacity: 0.7; }
  100% { transform: scale(1.03); opacity: 1; filter: drop-shadow(0 0 24px var(--accent-glow)); }
}

.avatar-inner {
  position: relative;
  z-index: 2;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: #08080C;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(224, 179, 69, 0.40);
  box-shadow: 0 0 20px var(--accent-glow-subtle);
}

.avatar-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
}

/* Título Monumental & Tipografia */
.brand-title {
  font-family: 'Sora', sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.brand-tagline {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-top: -6px;
}

/* Location Tag com Pin */
.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.location-tag svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* Banner Showcase Panorâmico */
.showcase-banner {
  position: relative;
  width: 100%;
  height: 175px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-elevation);
  margin-top: 4px;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.5s var(--ease-spring);
}

.showcase-banner:hover .showcase-img {
  transform: scale(1.06);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 6, 9, 0.2) 0%, rgba(6, 6, 9, 0.85) 75%, #060609 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px;
  gap: 6px;
}

.showcase-badge {
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--accent-gradient);
  color: #060609;
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.showcase-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.showcase-subtitle {
  font-size: 0.74rem;
  color: var(--text-secondary);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   2. CARDS DE AÇÃO (Peça Central de Conversão)
   ═══════════════════════════════════════════════════════════════ */
.actions-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.action-card {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-elevation);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  overflow: hidden;
}

.action-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-gold-hover);
  box-shadow: var(--shadow-card-hover);
  background: var(--bg-card-hover);
}

/* Card Destaque (WhatsApp de Atendimento) */
.action-card--featured {
  background: linear-gradient(135deg, rgba(224, 179, 69, 0.16) 0%, rgba(14, 14, 20, 0.90) 65%);
  border-color: var(--border-gold-subtle);
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.6), 0 0 20px -2px var(--accent-glow-subtle);
}

.action-card--featured:hover {
  background: linear-gradient(135deg, rgba(224, 179, 69, 0.22) 0%, rgba(20, 20, 28, 0.95) 65%);
  box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.7), 0 0 28px -2px var(--accent-glow);
}

/* Card VIP com Imagem de Fundo Estilizada */
.action-card--vip {
  position: relative;
  background: #0B0B10;
}

.card-vip-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: saturate(1.4);
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.action-card--vip:hover .card-vip-bg {
  opacity: 0.28;
  transform: scale(1.04);
}

/* Ícone da Ação */
.action-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-primary);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.action-card--featured .action-icon {
  background: rgba(224, 179, 69, 0.15);
  color: var(--accent-gold);
  border-color: var(--border-gold-subtle);
}

.action-card:hover .action-icon {
  background: var(--accent-gradient);
  color: #060609;
  border-color: transparent;
}

/* Conteúdo Textual */
.action-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.action-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.action-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.action-subtext {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Badges e Pills nos Cards */
.action-pill {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.action-pill--gold {
  background: rgba(224, 179, 69, 0.15);
  color: var(--accent-gold);
  border-color: var(--border-gold-subtle);
}

/* Bolinha Verde Pulsante "Online Agora" */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #34D399;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #34D399;
  box-shadow: 0 0 8px #34D399;
  animation: live-pulse 2s infinite ease-in-out;
}

@keyframes live-pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* Seta Deslizante no Hover */
.action-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.action-card:hover .action-arrow {
  transform: translateX(4px);
  color: var(--accent-gold);
}

/* Card Especial: Mapa Interativo Embutido */
.action-card--map-container {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevation);
}

.map-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-fast);
}

.map-card-header:hover {
  background: rgba(255, 255, 255, 0.03);
}

.map-viewport {
  position: relative;
  width: 100%;
  height: 140px;
  background: #08080C;
  overflow: hidden;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(110%);
  opacity: 0.85;
}

.map-cta-overlay {
  position: absolute;
  bottom: 10px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--accent-gradient);
  color: #060609;
  font-family: 'Sora', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition-fast);
}

.map-cta-overlay:hover {
  transform: scale(1.04);
}

/* ═══════════════════════════════════════════════════════════════
   3. MICRO-LINK DISCRETO
   ═══════════════════════════════════════════════════════════════ */
.micro-link-wrapper {
  text-align: center;
  margin-top: -4px;
}

.micro-link {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.micro-link:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════
   4. TRUST GRID (3 Mini-Caixas)
   ═══════════════════════════════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
}

.trust-box {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(224, 179, 69, 0.12);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.trust-subtitle {
  font-size: 0.65rem;
  color: var(--text-secondary);
  line-height: 1.2;
}

/* ═══════════════════════════════════════════════════════════════
   5. AVALIAÇÕES REAIS (Carrossel Fino)
   ═══════════════════════════════════════════════════════════════ */
.reviews-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-header-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  white-space: nowrap;
}

.reviews-carousel-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reviews-carousel-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-elevation);
}

.review-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-stars {
  display: flex;
  gap: 2px;
  color: var(--accent-gold);
}

.review-service-tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

.review-comment {
  font-size: 0.82rem;
  color: var(--text-primary);
  line-height: 1.45;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════
   6. HORÁRIO DE ATENDIMENTO (Cálculo em Tempo Real)
   ═══════════════════════════════════════════════════════════════ */
.hours-card {
  width: 100%;
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-elevation);
}

.hours-status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.hours-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.hours-status-pill.is-open {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.hours-status-pill.is-closed {
  background: rgba(239, 68, 68, 0.15);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.hours-address-summary {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
}

.hours-row.is-today {
  background: rgba(224, 179, 69, 0.12);
  color: var(--accent-gold);
  font-weight: 700;
  border: 1px solid var(--border-gold-subtle);
}

/* ═══════════════════════════════════════════════════════════════
   7. RODAPÉ (Exatamente 2 Linhas)
   ═══════════════════════════════════════════════════════════════ */
.experience-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.footer-line-1 {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.footer-line-2 {
  font-size: 0.74rem;
  color: var(--text-secondary);
}

.footer-signature {
  font-weight: 800;
  color: var(--accent-gold);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

.footer-signature:hover {
  color: #FFFFFF;
  text-shadow: 0 0 12px var(--accent-gold);
}

/* ═══════════════════════════════════════════════════════════════
   TOAST NOTIFICATION DE COPIADO
   ═══════════════════════════════════════════════════════════════ */
.toast-box {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #14141E;
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-pill);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-elevation);
  z-index: 9999;
  opacity: 0;
  transition: transform 0.3s var(--ease-spring), opacity 0.3s ease;
  pointer-events: none;
}

.toast-box.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-box svg {
  color: var(--accent-gold);
}

/* ═══════════════════════════════════════════════════════════════
   PATCH CIRÚRGICO: BRILHO PREMIUM & ÍCONES OFICIAIS (AJUSTES 3 & 5)
   ═══════════════════════════════════════════════════════════════ */

/* Brilho Sweep Diagonal nos Cards de Ação */
.action-card {
  position: relative;
  overflow: hidden;
}

.action-card::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: linear-gradient(
    65deg,
    transparent 35%,
    rgba(255, 255, 255, 0.06) 47%,
    rgba(224, 179, 69, 0.25) 50%,
    rgba(255, 255, 255, 0.06) 53%,
    transparent 65%
  );
  transform: translateX(-110%) rotate(25deg);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  z-index: 6;
}

.action-card:hover::after,
.action-card:active::after {
  transform: translateX(110%) rotate(25deg);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .action-card::after {
    display: none !important;
  }
}

/* Ícone Oficial do WhatsApp (#25D366) */
.action-icon--whatsapp {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.action-card--featured:hover .action-icon--whatsapp {
  transform: scale(1.04);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.50);
}

/* Ícone Oficial do Instagram (Gradiente Oficial) */
.action-icon--instagram {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.action-card:hover .action-icon--instagram {
  transform: scale(1.04);
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.45);
}

/* Assinatura com Área de Toque >= 44px */
.footer-signature {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 8px 14px;
  font-weight: 800;
  color: var(--accent-gold);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), text-shadow var(--transition-fast), background var(--transition-fast);
}

.footer-signature:hover {
  color: #FFFFFF;
  text-shadow: 0 0 14px var(--accent-gold);
  background: rgba(224, 179, 69, 0.10);
}
