/* ==========================================================================
   ANGELS STAR® — DESIGN SYSTEM EDITORIAL HIGH-FASHION & STREETWEAR
   Molde B: Swiss Brutalism + Editorial Luxury + Street Culture
   Cor Primária: Azul Royal / Cobalto Profundo sobre Preto Contínuo (#07080a)
   ========================================================================== */

:root {
  /* Paleta Cromática Autoral */
  --bg-dark: #07080a;
  --bg-surface: rgba(14, 18, 28, 0.65);
  --bg-surface-hover: rgba(22, 30, 48, 0.85);
  
  --accent-blue-deep: #1d4ed8;
  --accent-blue: #2563eb;
  --accent-blue-vivid: #3b82f6;
  --accent-blue-light: #60a5fa;
  --accent-cyan-glow: #38bdf8;
  
  --accent-glow: rgba(37, 99, 235, 0.45);
  --accent-glow-subtle: rgba(37, 99, 235, 0.18);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(59, 130, 246, 0.35);
  --border-glow: rgba(59, 130, 246, 0.6);
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  
  /* Tipografia */
  --font-display: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Geometria & Transições */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset Universal & Blindagem Mobile */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden !important;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background Canvas Three.js */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

/* Container Unificado (Site Tudo 1 Só) */
.page-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px; /* Alinhamento editorial de alta densidade estilo link-in-bio expandido */
  margin: 0 auto;
  padding: 0 16px 40px;
  overflow-x: hidden !important;
}

/* ==========================================================================
   HERO SECTION COM VÍDEO DE FUNDO
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 12px 30px;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
  margin-bottom: 24px;
}

/* Video Background Integrado */
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  filter: contrast(1.08) brightness(0.72) saturate(1.1);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(7, 8, 10, 0.45) 0%,
    rgba(7, 8, 10, 0.72) 45%,
    rgba(7, 8, 10, 0.94) 85%,
    var(--bg-dark) 100%
  );
  z-index: 2;
}

.hero-radial-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 320px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(55px);
  z-index: 2;
  pointer-events: none;
  opacity: 0.7;
}

/* Conteúdo Hero */
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Top Bar: Avatar Logo & Badges */
.brand-top-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.logo-circle {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--accent-blue-vivid), rgba(255, 255, 255, 0.2));
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  position: relative;
}

.brand-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
  display: block;
}

.badge-status-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 22, 38, 0.85);
  border: 1px solid var(--border-active);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent-blue-light);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.pulse-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-blue-vivid);
  box-shadow: 0 0 10px var(--accent-blue-vivid);
  animation: pulse-ring 2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.35); opacity: 1; box-shadow: 0 0 14px var(--accent-cyan-glow); }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.badge-separator {
  color: var(--text-muted);
  opacity: 0.6;
}

/* Tipografia Monumental */
.brand-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 6px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 30%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.registered-symbol {
  font-size: 0.4em;
  vertical-align: super;
  font-weight: 600;
  color: var(--accent-blue-vivid);
  -webkit-text-fill-color: var(--accent-blue-vivid);
}

.brand-statement {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 3vw, 1.15rem);
  font-weight: 700;
  color: var(--accent-blue-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-description {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 16px;
  line-height: 1.45;
  font-weight: 400;
}

/* Micro Selos de Autoridade */
.trust-metrics-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: var(--text-primary);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.metric-pill:hover {
  border-color: var(--border-active);
  transform: translateY(-1px);
  background: rgba(23, 37, 84, 0.5);
}

.metric-pill strong {
  font-weight: 700;
}

.metric-text {
  color: var(--text-muted);
}

.store-status-pill {
  border-color: rgba(34, 197, 94, 0.3);
}

.store-status-pill .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

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

.store-status-pill .status-label {
  font-weight: 600;
  font-size: 0.75rem;
}

/* ==========================================================================
   SHINY SWEEP GLOW BOTÕES & CTA WHATSAPP
   ========================================================================== */

.hero-cta-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.btn-primary-glow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-deep) 100%);
  color: #ffffff;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 36px var(--accent-glow);
  transition: var(--transition-smooth);
  overflow: hidden;
  min-height: 64px;
}

.btn-primary-glow:hover,
.btn-primary-glow:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 48px rgba(37, 99, 235, 0.65);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Efeito Shiny Sweep Glow Sofisticado */
.glow-sweep {
  position: relative;
  overflow: hidden;
}

.glow-sweep::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -120%;
  width: 80%;
  height: 200%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 30%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.03) 70%,
    transparent 100%
  );
  transform: rotate(20deg);
  pointer-events: none;
  animation: shiny-sweep 4.8s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes shiny-sweep {
  0% { left: -120%; }
  35% { left: 160%; }
  100% { left: 160%; }
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  flex-shrink: 0;
}

.btn-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 1;
  padding: 0 14px;
}

.btn-main-label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.btn-sub-label {
  font-size: 0.78rem;
  opacity: 0.88;
  font-weight: 500;
  margin-top: 2px;
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.btn-primary-glow:hover .btn-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   TICKER MARQUEE DA COLEÇÃO
   ========================================================================== */

.ticker-section {
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
  background: rgba(14, 20, 32, 0.5);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 34px;
  user-select: none;
}

.ticker-track {
  display: flex;
  width: max-content;
}

.ticker-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-slide 28s linear infinite;
}

.ticker-item {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
}

.ticker-bullet {
  color: var(--accent-blue-vivid);
  margin-left: 16px;
  opacity: 0.7;
}

@keyframes ticker-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ==========================================================================
   HUB CENTRAL DE LINKS & CONEXÕES
   ========================================================================== */

.links-hub-section {
  margin-bottom: 40px;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.section-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent-blue-light);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.section-accent-line {
  width: 36px;
  height: 2px;
  background: var(--accent-blue-vivid);
  margin: 8px auto 0;
  border-radius: 2px;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Cards de Link Estilo High-Fashion */
.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-decoration: none;
  color: var(--text-primary);
  backdrop-filter: blur(14px);
  transition: var(--transition-smooth);
  position: relative;
  min-height: 68px;
}

.link-card:hover,
.link-card:focus-visible {
  background: var(--bg-surface-hover);
  border-color: var(--border-active);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-glow-subtle);
}

.link-card.link-featured {
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.3) 0%, rgba(14, 18, 28, 0.8) 100%);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.link-card.link-featured:hover {
  border-color: var(--accent-blue-vivid);
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.4);
}

.link-card-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.link-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.link-card:hover .link-icon-wrap {
  background: var(--accent-blue);
  color: #fff;
  border-color: var(--accent-blue-vivid);
  transform: scale(1.05);
}

.icon-whatsapp { color: #22c55e; }
.icon-instagram { color: #f43f5e; }
.icon-outlet { color: #eab308; }
.icon-barber { color: #38bdf8; }
.icon-maps { color: #3b82f6; }

.link-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

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

.link-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.link-pill-tag {
  background: var(--accent-blue);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.link-pill-meta {
  color: var(--accent-blue-light);
  font-size: 0.75rem;
  font-weight: 600;
}

.link-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.35;
}

.link-arrow {
  color: var(--text-muted);
  opacity: 0.7;
  transition: var(--transition-smooth);
  margin-left: 10px;
}

.link-card:hover .link-arrow {
  color: var(--accent-blue-light);
  opacity: 1;
  transform: translate(3px, -3px);
}

/* ==========================================================================
   LOOKBOOK SHOWCASE EDITORIAL
   ========================================================================== */

.lookbook-section {
  margin-bottom: 40px;
}

.lookbook-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lookbook-image-frame {
  position: relative;
  width: 100%;
  max-height: 380px;
  overflow: hidden;
}

.lookbook-img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lookbook-image-frame:hover .lookbook-img {
  transform: scale(1.03);
}

.lookbook-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(14, 18, 28, 0.95), transparent);
}

.lookbook-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 8, 10, 0.85);
  border: 1px solid var(--border-active);
  color: var(--accent-blue-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.lookbook-text-content {
  padding: 24px;
}

.lookbook-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 6px 0 10px;
  line-height: 1.2;
}

.lookbook-body {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 18px;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.category-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.category-badge:hover {
  border-color: var(--border-active);
  color: #fff;
  background: rgba(37, 99, 235, 0.15);
}

.btn-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-secondary-link:hover {
  background: var(--accent-blue-deep);
  border-color: var(--accent-blue-vivid);
  box-shadow: 0 8px 24px var(--accent-glow);
}

/* ==========================================================================
   LOCALIZAÇÃO & HORÁRIOS AO VIVO
   ========================================================================== */

.location-section {
  margin-bottom: 40px;
}

.location-editorial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.location-details {
  padding: 24px;
}

.address-group {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.address-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid var(--border-active);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.address-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent-blue-light);
}

.address-line {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-top: 2px;
}

.address-city {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hours-group {
  background: rgba(7, 8, 10, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
}

.hours-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent-blue-light);
  margin-bottom: 12px;
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.day-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.time-label {
  color: #ffffff;
  font-weight: 600;
  font-family: monospace;
}

.time-label.status-closed {
  color: #f43f5e;
}

.btn-route-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  background: var(--accent-blue);
  color: #fff;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 24px var(--accent-glow);
  transition: var(--transition-smooth);
}

.btn-route-action:hover {
  background: var(--accent-blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.6);
}

/* Card Visual do Mapa */
.map-visual-box {
  position: relative;
  height: 180px;
  background: #090d16;
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}

.map-bg-graphics {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.map-marker-pulse {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.marker-core {
  width: 14px;
  height: 14px;
  background: var(--accent-blue-vivid);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 16px var(--accent-cyan-glow);
}

.marker-wave {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 38px;
  height: 38px;
  border: 2px solid var(--accent-blue-vivid);
  border-radius: 50%;
  animation: map-wave 2.2s ease-out infinite;
}

@keyframes map-wave {
  0% { transform: scale(0.4); opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}

.map-badge-float {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -100%);
  background: rgba(7, 8, 10, 0.9);
  border: 1px solid var(--border-active);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.map-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 16px;
  background: linear-gradient(to top, rgba(7, 8, 10, 0.92), transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-info-text {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.map-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent-blue-light);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}

.map-direct-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   ESTEIRA INFINITA DE AVALIAÇÕES GOOGLE (MARQUEE DRAGGABLE)
   ========================================================================== */

.reviews-section {
  margin-bottom: 40px;
}

.reviews-badge-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.stars-gold {
  color: #eab308;
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.reviews-count {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.reviews-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: grab;
  padding: 14px 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.reviews-carousel-wrapper:active {
  cursor: grabbing;
}

.reviews-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: reviews-scroll 32s linear infinite;
  will-change: transform;
}

.reviews-carousel-wrapper:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes reviews-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  width: 290px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  user-select: none;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.review-card:hover {
  border-color: var(--border-active);
  transform: translateY(-2px);
  background: var(--bg-surface-hover);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.stars-row {
  color: #eab308;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  color: var(--accent-blue-light);
  font-weight: 700;
}

.review-quote {
  font-size: 0.86rem;
  color: #ffffff;
  line-height: 1.45;
  margin-bottom: 12px;
  font-style: italic;
}

.review-author {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.review-cta-wrap {
  text-align: center;
  margin-top: 18px;
}

.btn-review-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-full);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.btn-review-google:hover {
  background: var(--accent-blue-deep);
  border-color: var(--accent-blue-vivid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

/* ==========================================================================
   RODAPÉ EDITORIAL
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 28px 12px 14px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--accent-blue-light);
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-address {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-copyright {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

/* ==========================================================================
   RESPONSIVIDADE RIGOROSA (320px, 360px, 390px, 414px, 768px+)
   ========================================================================== */

@media (max-width: 480px) {
  .hero-section {
    min-height: 84vh;
    padding: 30px 8px 20px;
    border-radius: 0 0 20px 20px;
  }

  .logo-circle {
    width: 72px;
    height: 72px;
  }

  .brand-title {
    font-size: 2.35rem;
  }

  .btn-primary-glow {
    padding: 15px 16px;
  }

  .btn-main-label {
    font-size: 0.95rem;
  }

  .btn-sub-label {
    font-size: 0.72rem;
  }

  .link-card {
    padding: 14px 16px;
  }

  .link-title {
    font-size: 0.92rem;
  }

  .review-card {
    width: 260px;
    padding: 15px;
  }
}

@media (min-width: 768px) {
  .page-container {
    max-width: 640px;
  }
}

/* Acessibilidade: 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;
    scroll-behavior: auto !important;
  }

  .glow-sweep::after {
    display: none !important;
  }

  .ticker-content,
  .reviews-track {
    animation: none !important;
  }

  .reviews-carousel-wrapper {
    overflow-x: auto;
  }
}
