/* ═══════════════════════════════════════════════════════════════
   BIO LINK FAROESTE | HAMBURGUERIA — DESIGN SYSTEM V14
   DNA "COPY" PRO MAX ULTRA | TEMA FAROESTE / SALOON & CHAPA QUENTE
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Cores Base e Superfícies (Madeira Escura Defumada / Chapa de Ferro / Saloon) */
  --bg-deep: #0A0604;
  --bg-surface: #120B07;
  --bg-canvas: rgba(18, 11, 7, 0.94);
  --bg-card: linear-gradient(180deg, rgba(34, 21, 14, 0.95) 0%, rgba(18, 11, 7, 0.97) 100%);
  --bg-card-hover: linear-gradient(180deg, rgba(46, 28, 18, 0.98) 0%, rgba(26, 16, 10, 0.98) 100%);
  --bg-glass: rgba(18, 11, 7, 0.82);

  /* Identidade Visual Velho Oeste & Chapa Quente (Âmbar / Cobre Forjado / Brasa / Ouro Velho) */
  --accent-amber: #E8862E;
  --accent-copper: #F0A35E;
  --accent-ember: #B3541E;
  --accent-gold: #F59E0B;
  --accent-brass: #D4A373;
  --accent-leather: #8B4513;
  --accent-gradient: linear-gradient(135deg, #F5A65B 0%, #E8862E 50%, #B3541E 100%);
  --accent-forge-gradient: linear-gradient(135deg, #FF7A1A 0%, #E8862E 50%, #8A2D08 100%);
  --accent-glow: rgba(232, 134, 46, 0.45);
  --accent-glow-subtle: rgba(232, 134, 46, 0.18);
  --accent-glow-strong: rgba(240, 163, 94, 0.65);
  --accent-ember-glow: rgba(179, 84, 30, 0.40);

  /* Tipografia e Contraste Rústico Quente (WCAG 2.2 AA) */
  --text-pure: #FFFDF9;
  --text-primary: #F8EDE3;
  --text-secondary: #D8C7B5;
  --text-muted: #A89582;
  --text-accent: #F0A35E;
  --text-gold: #FCD34D;

  /* Bordas em Camadas de Latão e Ferro Forjado */
  --border-subtle: rgba(240, 163, 94, 0.14);
  --border-card: rgba(240, 163, 94, 0.26);
  --border-card-highlight: rgba(255, 214, 150, 0.18);
  --border-accent: rgba(232, 134, 46, 0.48);
  --border-accent-hover: rgba(240, 163, 94, 0.85);
  --border-gold: rgba(245, 158, 11, 0.55);

  /* Sombras e Elevações com Resplendor de Brasa / Fogueira */
  --shadow-elevation: 0 12px 32px -4px rgba(0, 0, 0, 0.85), 0 4px 12px -2px rgba(0, 0, 0, 0.6);
  --shadow-floating: 0 24px 64px -12px rgba(0, 0, 0, 0.96), 0 0 54px -8px rgba(232, 134, 46, 0.24);
  --shadow-card-hover: 0 16px 40px -8px rgba(0, 0, 0, 0.92), 0 0 28px -2px rgba(232, 134, 46, 0.45);

  /* Raio de Curvatura Rústico Disciplinado */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-pill: 9999px;

  /* Transições e Curvas Suaves */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.28s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --canvas-max-width: 440px;
}

/* Reset Universal e Reset de Overflow Rigoroso */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow-x: hidden;
  line-height: 1.45;
  background-color: var(--bg-deep);
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button {
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

img, svg {
  display: block;
  max-width: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   ACESSIBILIDADE: SKIP-LINK
   Invisível por padrão, surge deslizando ao receber foco por Tab
   ═══════════════════════════════════════════════════════════════ */
.skip-link {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translate(-50%, -160%);
  background: var(--bg-surface);
  color: #FFFFFF;
  border: 1px solid var(--accent-copper);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.9), 0 0 16px var(--accent-glow);
  z-index: 99999;
  transition: transform var(--transition-fast);
  outline: none;
  text-decoration: none;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translate(-50%, 0);
}

/* ═══════════════════════════════════════════════════════════════
   BACKDROP AMBIENTE (3 CAMADAS FIXAS - SALOON & LANTERNA DE FORJA)
   Sempre visível em todos os viewports (mobile e desktop)
   ═══════════════════════════════════════════════════════════════ */
.ambient-backdrop {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background-color: var(--bg-deep);
}

.ambient-poster {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  filter: blur(28px) saturate(1.3);
  opacity: 0.40;
  transform: scale(1.08) translate3d(0, 0, 0);
  will-change: transform;
}

.ambient-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 18%, rgba(12, 8, 5, 0.40) 0%, rgba(10, 6, 4, 0.88) 75%, var(--bg-deep) 100%);
}

.ambient-glow-top {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: 540px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 134, 46, 0.40) 0%, rgba(179, 84, 30, 0.18) 45%, rgba(10, 6, 4, 0) 72%);
  filter: blur(85px);
  opacity: 0.85;
  will-change: transform;
}

.ambient-glow-bottom {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: 480px;
  height: 340px;
  background: radial-gradient(circle, rgba(179, 84, 30, 0.28) 0%, rgba(232, 134, 46, 0.12) 40%, rgba(10, 6, 4, 0) 70%);
  filter: blur(85px);
  opacity: 0.65;
  will-change: transform;
}

/* ═══════════════════════════════════════════════════════════════
   CANVAS PRINCIPAL (Mobile-First 440px / Cartão Flutuante Saloon ≥600px)
   ═══════════════════════════════════════════════════════════════ */
.experience-canvas {
  width: 100%;
  max-width: var(--canvas-max-width);
  min-width: 0;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  padding: 24px 14px 36px 14px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

@media (min-width: 600px) {
  body {
    padding: 36px 16px;
  }
  .experience-canvas {
    min-height: auto;
    margin: 28px auto;
    padding: 38px 24px 40px 24px;
    background: rgba(18, 11, 7, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1.5px solid rgba(240, 163, 94, 0.30);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-floating), inset 0 1px 0 rgba(255, 214, 150, 0.2);
  }
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION: Logo Saloon, Tipografia Monumental e Banner
   ═══════════════════════════════════════════════════════════════ */
.brand-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}

.avatar-frame {
  position: relative;
  width: 108px;
  height: 108px;
  margin-bottom: 14px;
}

.avatar-glow-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--accent-gradient);
  filter: blur(8px);
  opacity: 0.85;
}

.avatar-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #0c0805;
  border: 3px solid rgba(240, 163, 94, 0.65);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.9), 0 6px 16px rgba(0, 0, 0, 0.7);
}

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

/* Tipografia Western Disciplinada */
.brand-title {
  font-family: 'Alfa Slab One', 'Archivo Black', Georgia, serif;
  font-size: clamp(2.2rem, 8vw, 2.65rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-pure);
  line-height: 1.08;
  margin-bottom: 4px;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.9), 0 6px 20px rgba(232, 134, 46, 0.45);
}

.brand-tagline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.72rem, 2.8vw, 0.80rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-copper);
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-tagline::before,
.brand-tagline::after {
  content: '★';
  font-size: 0.65rem;
  color: var(--accent-gold);
  opacity: 0.85;
}

.brand-slogan {
  font-size: 0.84rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 10px;
  line-height: 1.35;
}

/* Tag de Localização Estilo Sinalização de Fronteira */
.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 21, 14, 0.85);
  border: 1px solid rgba(240, 163, 94, 0.32);
  border-radius: var(--radius-pill);
  padding: 5px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 214, 150, 0.15), 0 2px 8px rgba(0, 0, 0, 0.5);
}

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

/* Banner Showcase — Moldura Rústica de Taberna com Borda de Cobre */
.showcase-banner {
  position: relative;
  width: 100%;
  height: 168px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(240, 163, 94, 0.38);
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.8), var(--shadow-elevation), 0 0 20px rgba(232, 134, 46, 0.2);
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-smooth);
}

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

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 8, 5, 0.15) 0%, rgba(10, 6, 4, 0.90) 88%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 14px 16px;
  text-align: left;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #B3541E 0%, #E8862E 50%, #F0A35E 100%);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 6px;
  margin-bottom: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.showcase-badge::before {
  content: '★';
  font-size: 0.65rem;
}

.showcase-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #FFFDF9;
  line-height: 1.2;
}

.showcase-subtitle {
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.35;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   SALOON DIVIDERS — Ornamentos de Latão & Velho Oeste
   ═══════════════════════════════════════════════════════════════ */
.saloon-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 14px 0 16px 0;
  width: 100%;
}

.saloon-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 163, 94, 0.32), transparent);
}

.saloon-divider-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-copper);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   CARDS DE AÇÃO ESTILO PLACA DE SALOON & SHINY SWEEP GLOW (SEÇÃO 1.3)
   Aparência de madeira nobre tostada, borda de latão e fogueira
   ═══════════════════════════════════════════════════════════════ */
.actions-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  width: 100%;
}

.action-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 13px 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(32, 20, 13, 0.95) 0%, rgba(18, 11, 7, 0.97) 100%);
  border: 1px solid rgba(240, 163, 94, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 214, 150, 0.16), inset 0 0 0 1px rgba(0, 0, 0, 0.65), 0 10px 28px -4px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

.action-card:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 163, 94, 0.70);
  box-shadow: inset 0 1px 0 rgba(255, 220, 170, 0.25), 0 14px 36px -4px rgba(0, 0, 0, 0.92), 0 0 24px -2px rgba(232, 134, 46, 0.35);
}

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

/* 1º CARD PRINCIPAL "CHAPA QUENTE" (Yooga Delivery — Fogo & Brasa) */
.action-card--featured {
  background: linear-gradient(180deg, rgba(58, 26, 12, 0.97) 0%, rgba(32, 14, 7, 0.98) 60%, rgba(18, 8, 4, 0.99) 100%);
  border: 1.5px solid #E8862E;
  box-shadow: inset 0 1px 0 rgba(255, 200, 120, 0.35), inset 0 0 18px rgba(232, 134, 46, 0.18), 0 14px 36px -4px rgba(0, 0, 0, 0.9), 0 0 28px rgba(232, 134, 46, 0.35);
  animation: chapaQuentePulse 3.2s infinite ease-in-out;
}

.action-card--featured:hover {
  border-color: #F0A35E;
  box-shadow: inset 0 1px 0 rgba(255, 225, 160, 0.45), inset 0 0 24px rgba(232, 134, 46, 0.25), 0 16px 42px -4px rgba(0, 0, 0, 0.95), 0 0 36px rgba(240, 163, 94, 0.55);
}

@keyframes chapaQuentePulse {
  0%, 100% {
    box-shadow: inset 0 1px 0 rgba(255, 200, 120, 0.3), inset 0 0 16px rgba(232, 134, 46, 0.15), 0 12px 32px -4px rgba(0, 0, 0, 0.85), 0 0 20px -2px rgba(232, 134, 46, 0.30);
    border-color: #E8862E;
  }
  50% {
    box-shadow: inset 0 1px 0 rgba(255, 220, 150, 0.45), inset 0 0 22px rgba(240, 163, 94, 0.25), 0 14px 38px -4px rgba(0, 0, 0, 0.9), 0 0 34px 2px rgba(240, 163, 94, 0.52);
    border-color: #F0A35E;
  }
}

/* SHINY SWEEP GLOW — Varredura a 60FPS com Brilho Âmbar de Lanterna (Seção 1.3) */
.action-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80px;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 215, 140, 0.24) 50%, transparent 100%);
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 2;
  will-change: transform;
}

/* Ciclo Automático com Stagger de ~700ms */
.action-card.sweep-active::after,
.action-card:hover::after,
.action-card:focus-visible::after {
  animation: shinySweep 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes shinySweep {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(600px);
  }
}

/* Moldura Rústica dos Ícones */
.action-icon {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 163, 94, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* Ícone de Delivery (Yooga / Burger Chapa Quente) */
.action-icon--delivery {
  background: linear-gradient(135deg, #FF6B00 0%, #E8862E 50%, #A83808 100%);
  color: #FFFFFF;
  border-color: rgba(255, 200, 120, 0.4);
  box-shadow: 0 4px 16px rgba(232, 134, 46, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* Ícone Oficial WhatsApp (Seção 1.2: Container #25D366 sólido + Glifo Branco) */
.action-icon--whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
}

/* Ícone Oficial Instagram (Seção 1.2: Squircle com Gradiente Oficial 45° + Glifo Branco) */
.action-icon--instagram {
  background: linear-gradient(45deg, #FFDC80, #FCAF45, #F77737, #F56040, #FD1D1D, #E1306C, #C13584, #833AB4, #5851DB, #405DE6);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
}

/* Ícone GPS / Rota Loja do Cavalo */
.action-icon--map {
  background: linear-gradient(135deg, rgba(46, 28, 18, 0.9) 0%, rgba(26, 16, 10, 0.95) 100%);
  border: 1px solid rgba(240, 163, 94, 0.35);
  color: var(--accent-copper);
}

/* Ícone Pizzaria Texas Faroeste */
.action-icon--pizzaria {
  background: linear-gradient(135deg, rgba(64, 32, 16, 0.9) 0%, rgba(36, 18, 9, 0.95) 100%);
  border: 1px solid rgba(240, 163, 94, 0.4);
  color: var(--accent-copper);
}

.action-content {
  position: relative;
  z-index: 3;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

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

.action-card--featured .action-label {
  font-weight: 800;
  color: #FFFFFF;
}

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

/* Badges estilizados como placas de latão / couro gravado do Velho Oeste */
.action-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 3px 9px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(46, 28, 18, 0.85) 0%, rgba(26, 16, 10, 0.9) 100%);
  border: 1px solid rgba(240, 163, 94, 0.32);
  color: var(--text-secondary);
  box-shadow: inset 0 1px 0 rgba(255, 214, 150, 0.15), 0 2px 4px rgba(0, 0, 0, 0.4);
}

.action-pill--accent {
  background: linear-gradient(180deg, rgba(64, 32, 16, 0.9) 0%, rgba(36, 18, 9, 0.95) 100%);
  border-color: rgba(240, 163, 94, 0.55);
  color: var(--accent-copper);
}

.live-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(180deg, rgba(20, 48, 28, 0.85) 0%, rgba(10, 28, 16, 0.9) 100%);
  border: 1px solid rgba(74, 222, 128, 0.4);
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #4ADE80;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 2px 6px rgba(0, 0, 0, 0.4);
}

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

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.55; }
}

.action-arrow {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  color: var(--accent-copper);
  opacity: 0.75;
  transition: transform var(--transition-fast), color var(--transition-fast), opacity var(--transition-fast);
}

.action-card:hover .action-arrow {
  transform: translateX(4px);
  color: #FFFDF9;
  opacity: 1;
}

/* Card Rota com Ação Secundária "Copiar Endereço" */
.gps-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.copy-address-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(34, 21, 14, 0.75);
  border: 1px solid rgba(240, 163, 94, 0.24);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: inset 0 1px 0 rgba(255, 214, 150, 0.1), 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-fast);
}

.copy-address-btn:hover {
  background: rgba(64, 32, 16, 0.85);
  border-color: var(--accent-copper);
  color: var(--text-pure);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6), 0 0 12px rgba(232, 134, 46, 0.25);
}

.copy-address-btn svg {
  color: var(--accent-copper);
}

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

.micro-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 6px 16px;
  font-size: 0.80rem;
  color: var(--text-muted);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.micro-link:hover {
  color: var(--accent-copper);
}

/* ═══════════════════════════════════════════════════════════════
   TRUST GRID: 3 Mini-Placas de Saloon
   ═══════════════════════════════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 22px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.trust-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 6px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(32, 20, 13, 0.94) 0%, rgba(18, 11, 7, 0.96) 100%);
  border: 1px solid rgba(240, 163, 94, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 214, 150, 0.14), 0 6px 18px rgba(0, 0, 0, 0.7);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.trust-box:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 163, 94, 0.5);
}

.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(232, 134, 46, 0.25) 0%, rgba(179, 84, 30, 0.3) 100%);
  border: 1px solid rgba(240, 163, 94, 0.32);
  color: var(--accent-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.trust-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  color: #FFFDF9;
  line-height: 1.2;
  margin-bottom: 2px;
}

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

/* ═══════════════════════════════════════════════════════════════
   AVALIAÇÕES REAIS: Carrossel & Placas de Clientes
   ═══════════════════════════════════════════════════════════════ */
.reviews-section {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  margin-bottom: 22px;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.reviews-header-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 163, 94, 0.35), transparent);
}

.reviews-header-title {
  font-size: 0.80rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-copper);
}

.reviews-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 12px;
  padding-bottom: 8px;
  scrollbar-width: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  scroll-snap-align: center;
  background: linear-gradient(180deg, rgba(32, 20, 13, 0.94) 0%, rgba(18, 11, 7, 0.96) 100%);
  border: 1px solid rgba(240, 163, 94, 0.26);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 214, 150, 0.14), 0 8px 24px rgba(0, 0, 0, 0.75);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #F59E0B;
  font-size: 0.95rem;
  margin-bottom: 8px;
  text-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

.review-comment {
  font-size: 0.78rem;
  color: var(--text-primary);
  line-height: 1.45;
  margin-bottom: 10px;
  font-style: italic;
}

.review-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
}

.review-author-name {
  font-weight: 700;
  color: #FFFDF9;
}

.review-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-copper);
  background: rgba(64, 32, 16, 0.85);
  border: 1px solid rgba(240, 163, 94, 0.32);
  padding: 3px 8px;
  border-radius: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   HORÁRIO DE ATENDIMENTO DINÂMICO (TABELA SALOON)
   ═══════════════════════════════════════════════════════════════ */
.hours-card {
  width: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(32, 20, 13, 0.94) 0%, rgba(18, 11, 7, 0.96) 100%);
  border: 1px solid rgba(240, 163, 94, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 214, 150, 0.14), 0 12px 32px rgba(0, 0, 0, 0.8);
  padding: 16px 14px;
  margin-bottom: 24px;
  overflow: hidden;
}

.hours-status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(240, 163, 94, 0.15);
}

.hours-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hours-status-pill.is-open {
  background: linear-gradient(180deg, rgba(20, 52, 30, 0.9) 0%, rgba(12, 32, 18, 0.95) 100%);
  border: 1px solid rgba(74, 222, 128, 0.45);
  color: #4ADE80;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

.hours-status-pill.is-closed {
  background: linear-gradient(180deg, rgba(64, 48, 14, 0.9) 0%, rgba(36, 26, 8, 0.95) 100%);
  border: 1px solid rgba(250, 204, 21, 0.45);
  color: #FACC15;
  box-shadow: 0 2px 8px rgba(234, 179, 8, 0.2);
}

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

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

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.74rem;
  color: var(--text-secondary);
}

.hours-row span:last-child {
  flex-shrink: 0;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.hours-row.is-today {
  background: linear-gradient(90deg, rgba(232, 134, 46, 0.26) 0%, rgba(179, 84, 30, 0.18) 100%);
  border: 1px solid rgba(240, 163, 94, 0.5);
  color: #FFFDF9;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 214, 150, 0.2);
}

.hours-row.is-today span:first-child::after {
  content: ' (Hoje)';
  font-size: 0.68rem;
  color: var(--accent-copper);
}

/* ═══════════════════════════════════════════════════════════════
   RODAPÉ RIGOROSO (2 LINHAS)
   "© [ANO] Faroeste • Todos os direitos reservados."
   "Site por COPY"
   ═══════════════════════════════════════════════════════════════ */
.experience-footer {
  margin-top: auto;
  text-align: center;
  padding-top: 18px;
  border-top: 1px solid rgba(240, 163, 94, 0.18);
  width: 100%;
}

.footer-line-1 {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 4px;
}

.footer-line-2 {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.footer-signature {
  font-weight: 700;
  color: var(--accent-copper);
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.footer-signature:hover {
  color: #FFFFFF;
  background: rgba(232, 134, 46, 0.22);
}

/* ═══════════════════════════════════════════════════════════════
   TOAST DE NOTIFICAÇÃO (Acessível via aria-live)
   ═══════════════════════════════════════════════════════════════ */
.toast-feedback {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 150%);
  background: rgba(26, 16, 10, 0.96);
  border: 1.5px solid var(--accent-copper);
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9), 0 0 18px var(--accent-glow);
  z-index: 9999;
  opacity: 0;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  pointer-events: none;
}

.toast-feedback.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

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

/* Suporte a Redução de Movimento */
@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;
  }
  .action-card::after {
    display: none !important;
  }
  .action-card--featured {
    animation: none !important;
  }
  .live-dot {
    animation: none !important;
  }
}
