/**
 * COMPONENTES DO BIO LINK PREMIUM (MÉTODO "COPY" v13 PRO MAX ULTRA)
 * Projeto: Modéstia Joias
 */

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

/* Avatar com Anel de Glow Dourado e Halo Protetor */
.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: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(248, 248, 124, 0.40);
  box-shadow: 0 0 24px var(--accent-glow-subtle);
}

/* Halo difuso fundindo o fundo preto cozido da logo ao canvas escuro */
.avatar-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 14px 6px rgba(0, 0, 0, 0.85);
  pointer-events: none;
}

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

/* Título Monumental & Tipografia de Alta Joalheria */
.brand-title {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
}

.brand-tagline {
  font-family: 'Sora', var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  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);
}

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

.showcase-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s var(--ease-spring);
}

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

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

.showcase-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: rgba(248, 248, 124, 0.18);
  border: 1px solid rgba(248, 248, 124, 0.45);
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.showcase-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.showcase-subtitle {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

/* ═══════════════════════════════════════════════════════════════
   2. CARDS DE AÇÃO (Padrão Banco Digital & Acabamento Cartão)
   ═══════════════════════════════════════════════════════════════ */
.actions-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.action-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  min-height: 68px;
  background: linear-gradient(180deg, rgba(20, 20, 28, 0.86) 0%, rgba(14, 14, 20, 0.82) 100%);
  border: 1px solid var(--border-card);
  border-top: 1px solid rgba(248, 248, 124, 0.35);
  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);
  overflow: hidden;
}

/* Sweep shine suave a 60fps */
.action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transform: skewX(-20deg);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.action-card:hover::before {
  transform: translateX(320%) skewX(-20deg);
}

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

.action-card:active {
  transform: translateY(0);
}

/* Card Destaque Principal (Conversão Ouro) */
.action-card--featured {
  background: linear-gradient(180deg, rgba(35, 35, 20, 0.90) 0%, rgba(14, 14, 20, 0.88) 100%);
  border-color: rgba(248, 248, 124, 0.50);
  box-shadow: 0 8px 32px -4px rgba(0, 0, 0, 0.7), 0 0 20px -2px var(--accent-glow-subtle);
}

.action-card--featured:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 16px 44px -6px rgba(0, 0, 0, 0.85), 0 0 32px -2px var(--accent-glow);
}

/* Ícones Gêmeos de Ação */
.action-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--accent-gold);
  overflow: hidden;
}

.action-icon svg {
  width: 22px;
  height: 22px;
}

.action-icon--whatsapp,
.action-icon--instagram {
  padding: 0;
  background: none;
  border: none;
}

.action-icon--whatsapp svg,
.action-icon--instagram svg {
  width: 100%;
  height: 100%;
}

/* Conteúdo do Card */
.action-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.action-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.action-label {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.action-subtext {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Pills e Badges de Ação */
.action-pill {
  font-size: 0.66rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.action-pill--gold {
  background: rgba(248, 248, 124, 0.15);
  border-color: rgba(248, 248, 124, 0.40);
  color: var(--accent-gold);
}

/* Live Badge com Bolinha Verde Pulsante */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.66rem;
  font-weight: 700;
  color: #25D366;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #25D366;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; filter: drop-shadow(0 0 4px #25D366); }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* Seta Deslizante ">" */
.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 Mapa com Viewport Expansível */
.action-card--map-container {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-top: 1px solid rgba(248, 248, 124, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevation);
  transition: border-color var(--transition-fast);
}

.action-card--map-container:hover {
  border-color: var(--border-gold-hover);
}

.map-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
}

.map-viewport {
  position: relative;
  width: 100%;
  height: 140px;
  background: #09090E;
  border-top: 1px solid var(--border-subtle);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(80%) invert(90%) contrast(120%);
  opacity: 0.85;
}

.map-cta-overlay {
  position: absolute;
  bottom: 10px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(6, 6, 9, 0.90);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.map-cta-overlay:hover {
  background: var(--accent-gold);
  color: #060609;
  transform: scale(1.04);
}

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

.micro-link {
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
  padding: 8px 16px;
  display: inline-block;
}

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

/* ═══════════════════════════════════════════════════════════════
   3.5 MÓDULO VITRINE HORIZONTAL (Scroll-Snap Touch Nativo)
   ═══════════════════════════════════════════════════════════════ */
.vitrine-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.vitrine-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  padding: 0 4px;
}

.vitrine-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.vitrine-carousel-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 14px 2px;
  scrollbar-width: none;
}

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

.vitrine-card {
  flex: 0 0 175px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-top: 1px solid rgba(248, 248, 124, 0.30);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-elevation);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.vitrine-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold-hover);
  box-shadow: var(--shadow-card-hover);
}

.vitrine-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #0A0A0F;
  overflow: hidden;
}

.vitrine-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s var(--ease-spring);
}

.vitrine-card:hover .vitrine-card-img {
  transform: scale(1.06);
}

.vitrine-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(6, 6, 9, 0.85);
  border: 1px solid var(--border-gold-subtle);
  color: var(--accent-gold);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vitrine-card-body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vitrine-card-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vitrine-card-category {
  font-size: 0.70rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.vitrine-card-cta {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.vitrine-card:hover .vitrine-card-cta {
  color: var(--accent-gold);
}

/* Card Especial: Ver Catálogo Completo */
.vitrine-card--catalog {
  background: linear-gradient(180deg, rgba(25, 25, 35, 0.95) 0%, rgba(14, 14, 20, 0.90) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 14px;
  gap: 12px;
}

.vitrine-catalog-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(248, 248, 124, 0.12);
  border: 1px solid var(--border-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.vitrine-card--catalog .vitrine-card-title {
  font-size: 0.88rem;
  text-transform: uppercase;
  color: var(--accent-gold);
}

/* Indicadores / Dots da Vitrine */
.vitrine-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: -4px;
}

.vitrine-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  transition: all var(--transition-fast);
}

.vitrine-dot.is-active {
  width: 18px;
  border-radius: var(--radius-pill);
  background: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-glow);
}

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

.trust-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 12px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-icon {
  color: var(--accent-gold);
}

.trust-title {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.trust-subtitle {
  font-size: 0.66rem;
  color: var(--text-muted);
  line-height: 1.25;
}

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

.section-header-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 248, 124, 0.35), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.reviews-carousel-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 10px 2px;
  scrollbar-width: none;
}

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

.review-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

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

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

.review-service-tag {
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: var(--radius-pill);
}

.review-comment {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
  font-style: italic;
}

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

/* ═══════════════════════════════════════════════════════════════
   6. HORÁRIO DE ATENDIMENTO (Status em Tempo Real)
   ═══════════════════════════════════════════════════════════════ */
.hours-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  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: 3px 10px;
  border-radius: var(--radius-pill);
}

.hours-status-pill.is-open {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.35);
}

.hours-status-pill.is-closed {
  background: rgba(255, 75, 75, 0.12);
  color: #FF5555;
  border: 1px solid rgba(255, 75, 75, 0.35);
}

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

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

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

.hours-row.is-today {
  color: var(--accent-gold);
  font-weight: 700;
  background: rgba(248, 248, 124, 0.10);
  border-left: 2px solid var(--accent-gold);
}

/* ═══════════════════════════════════════════════════════════════
   7. RODAPÉ (EXATAMENTE 2 LINHAS — LEI DO MÉTODO COPY)
   ═══════════════════════════════════════════════════════════════ */
.experience-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  padding-top: 12px;
}

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

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

.footer-signature {
  color: var(--accent-gold);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 6px;
  transition: opacity var(--transition-fast);
}

.footer-signature:hover {
  text-decoration: underline;
  opacity: 0.9;
}
