/* ==========================================================================
   GARAGE LIFESTYLE BIKE — DESIGN SYSTEM "O COPY" v15
   Segmento: bike_shop | Dark Premium Imersivo | High-Conversion
   ========================================================================== */

:root {
  --bg-dark: #060609;
  --bg-surface: #0a0a0f;
  --bg-card: rgba(14, 14, 20, 0.82);
  --bg-card-hover: rgba(20, 20, 28, 0.95);
  --bg-card-active: rgba(26, 26, 36, 0.98);
  --bg-elevated: rgba(22, 22, 30, 0.88);

  /* Paleta Técnica extraída da logo oficial Garage Lifestyle Bike */
  --accent: #0088ff;
  --accent-glow: #00c2ff;
  --accent-dark: #0055aa;
  --accent-tint: rgba(0, 136, 255, 0.12);
  --accent-tint-strong: rgba(0, 136, 255, 0.22);
  --accent-border: rgba(0, 136, 255, 0.35);
  --accent-gradient: linear-gradient(135deg, #0088ff 0%, #00c2ff 100%);
  --accent-glow-subtle: 0 0 24px rgba(0, 136, 255, 0.35);

  /* Neutros e Textos */
  --text-primary: #fafaf7;
  --text-secondary: #9e9ea8;
  --text-tertiary: #686875;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.22);

  /* Status */
  --live-green: #10b981;
  --live-green-glow: rgba(16, 185, 129, 0.35);
  --star-gold: #fbbf24;

  /* Tipografia */
  --font-display: 'Archivo Black', 'Outfit', sans-serif;
  --font-sub: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Transições e Curvas */
  --ease-snappy: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.8, 0.25, 1);
  --trans-fast: 0.18s var(--ease-snappy);
  --trans-base: 0.28s var(--ease-snappy);
  --trans-slow: 0.48s var(--ease-smooth);

  /* Raios */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
}

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

html {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--bg-dark);
  overflow-x: hidden;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
}

/* Acessibilidade: Skip Link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 12px;
  outline: 2px solid #fff;
}

/* ==========================================================================
   BACKDROP AMBIENTE (4 CAMADAS "O COPY")
   ========================================================================== */
.backdrop-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.backdrop-layer-img {
  position: absolute;
  inset: -20px;
  background: url('../images/backdrop-ambient.webp') center/cover no-repeat;
  filter: blur(28px) saturate(1.25);
  opacity: 0.38;
  transform: scale(1.08);
}

.backdrop-layer-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(6, 6, 9, 0.5) 0%, rgba(6, 6, 9, 0.95) 75%, #060609 100%);
}

.backdrop-layer-glow-top {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 136, 255, 0.38) 0%, rgba(0, 194, 255, 0.1) 45%, transparent 70%);
  filter: blur(80px);
}

.backdrop-layer-glow-bottom {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 85, 170, 0.25) 0%, transparent 65%);
  filter: blur(90px);
}

.backdrop-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ==========================================================================
   CANVAS CONTAINER (440px / CARTÃO FLUTUANTE NO DESKTOP)
   ========================================================================== */
.canvas-wrapper {
  width: 100%;
  max-width: 440px;
  min-width: 0;
  min-height: 100vh;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 0 0 40px;
  box-sizing: border-box;
  overflow-x: clip;
}

@media (min-width: 600px) {
  body {
    padding: 32px 16px;
  }
  .canvas-wrapper {
    min-height: auto;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 24px 64px -12px rgba(0, 0, 0, 0.85),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                0 0 32px -8px rgba(0, 136, 255, 0.15);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    overflow: hidden;
  }
}

/* ==========================================================================
   BLOCO 2: BARRA DE STATUS EM TEMPO REAL
   ========================================================================== */
.status-bar {
  height: 32px;
  background: rgba(10, 10, 15, 0.92);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s var(--ease-snappy);
}

.status-bar.hide {
  transform: translateY(-100%);
}

.status-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--live-green);
  box-shadow: 0 0 0 0 var(--live-green-glow);
  animation: pulseLive 1.8s infinite;
}

.status-pulse-dot.closed {
  background-color: #ef4444;
  box-shadow: none;
  animation: none;
}

@keyframes pulseLive {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   BLOCO 3: HERO
   ========================================================================== */
.hero-section {
  padding: 32px 20px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar-wrapper {
  position: relative;
  width: 104px;
  height: 104px;
  margin-bottom: 18px;
  perspective: 600px;
}

.avatar-halo {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--accent-gradient);
  opacity: 0.6;
  filter: blur(12px);
  animation: haloBreath 4s ease-in-out infinite alternate;
}

.avatar-ring {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #00c2ff 0%, #0088ff 50%, rgba(255,255,255,0.4) 100%);
  box-shadow: 0 8px 24px -4px rgba(0, 136, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  background-clip: padding-box;
  transition: transform 0.2s var(--ease-snappy);
}

.avatar-img-box {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.avatar-img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  display: block;
}

@keyframes haloBreath {
  0% { transform: scale(0.96); opacity: 0.45; }
  100% { transform: scale(1.06); opacity: 0.75; }
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--accent-tint);
  border: 1px solid var(--accent-border);
  color: var(--accent-glow);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.hero-title-main {
  font-size: clamp(21px, 6vw, 27px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  white-space: nowrap;
}

.hero-title-sub {
  font-size: clamp(17px, 4.8vw, 21px);
  font-weight: 800;
  color: var(--accent-glow);
  letter-spacing: 0.12em;
  line-height: 1.05;
}

.hero-manifesto {
  font-family: var(--font-sub);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  max-width: 320px;
  margin: 0 auto 14px;
  line-height: 1.45;
}

.hero-manifesto strong {
  color: var(--text-primary);
  font-weight: 700;
}

.hero-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 11.5px;
  color: var(--text-tertiary);
  flex-wrap: wrap;
}

.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.pin-icon {
  width: 14px;
  height: 14px;
  fill: var(--accent);
  animation: pinPulse 1.6s infinite ease-in-out;
}

@keyframes pinPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.riders-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  color: var(--accent-glow);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   BLOCO 4: BANNER SHOWCASE
   ========================================================================== */
.banner-showcase {
  margin: 10px 16px 20px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #060609;
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.6);
}

.banner-img-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  background: radial-gradient(circle at center, #14141e 0%, #060609 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 600px) {
  .banner-img-container {
    aspect-ratio: 16 / 9;
  }
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

@media (min-width: 600px) {
  .banner-img {
    object-fit: cover;
    object-position: center 30%;
  }
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,9,0.96) 0%, rgba(6,6,9,0.6) 45%, rgba(6,6,9,0.2) 100%);
}

.banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.banner-google-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(10, 10, 15, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  padding: 3px 8px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--star-gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.banner-headline {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.15;
}

.banner-sub {
  font-size: 11.5px;
  color: var(--text-secondary);
  line-height: 1.35;
}

.banner-cta-chip {
  align-self: flex-start;
  margin-top: 4px;
  background: var(--accent-gradient);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}

.banner-cta-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 136, 255, 0.4);
}

/* ==========================================================================
   BLOCO 5: CARROSSEL DE MARCAS E SELOS
   ========================================================================== */
.marcas-section {
  width: 100%;
  max-width: 100%;
  padding: 10px 0 16px;
  overflow: hidden;
  position: relative;
}

.marcas-track-container {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marcas-track {
  display: flex;
  flex-shrink: 0;
  gap: 16px;
  width: max-content;
  will-change: transform;
  -webkit-animation: scrollTrack 16s linear infinite !important;
  animation: scrollTrack 16s linear infinite !important;
}

.marca-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 8px 18px;
  color: var(--text-secondary);
  font-family: var(--font-sub);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all var(--trans-fast);
}

.marca-badge.brand-logo-item {
  padding: 6px 16px;
  min-height: 42px;
}

.brand-official-logo {
  height: 26px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.78;
  transition: opacity var(--trans-fast), transform var(--trans-fast);
}

.marca-badge:hover .brand-official-logo {
  opacity: 1;
  transform: scale(1.05);
}

.marca-badge:hover {
  border-color: var(--accent-border);
  background: rgba(0, 136, 255, 0.1);
  box-shadow: 0 0 16px rgba(0, 136, 255, 0.2);
  color: #fff;
  transform: translateY(-1px);
}

.marca-badge svg {
  height: 18px;
  width: auto;
  fill: currentColor;
}

.marca-badge.stamp {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent-glow);
  border-color: rgba(0, 136, 255, 0.2);
}

@-webkit-keyframes scrollTrack {
  0% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
  100% { -webkit-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); }
}

@keyframes scrollTrack {
  0% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
  100% { -webkit-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   BLOCO 6: CARDS DE AÇÃO (MOTOR DE CONVERSÃO)
   ========================================================================== */
.actions-section {
  padding: 8px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.action-card {
  min-height: 76px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  transition: transform var(--trans-fast), border-color var(--trans-base), box-shadow 0.4s var(--ease-snappy), background-color var(--trans-fast);
}

/* Efeito Shine Sweep (Pseudo-elemento diagonal) */
.action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.12) 40%,
    rgba(0, 136, 255, 0.28) 50%,
    rgba(255, 255, 255, 0.12) 60%,
    transparent 80%
  );
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 1;
}

.action-card:hover::before,
.action-card:focus-visible::before {
  animation: shineSweep 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.action-card:hover {
  transform: translateY(-2px);
  background: var(--bg-card-hover);
  border-color: var(--accent-border);
  box-shadow: 0 0 24px 2px rgba(0, 136, 255, 0.35),
              0 8px 24px -6px rgba(0, 0, 0, 0.5);
}

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

.action-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Card Destaque #1 (WhatsApp Primário com Glow Pulsante) */
.action-card.featured-card {
  background: linear-gradient(135deg, rgba(0, 136, 255, 0.16) 0%, rgba(14, 14, 20, 0.95) 100%);
  border-color: var(--accent-border);
  box-shadow: 0 0 0 0 rgba(0, 136, 255, 0.45),
              0 10px 28px -6px rgba(0, 136, 255, 0.25);
  animation: pulseCardGlow 2s infinite ease-out;
}

@keyframes pulseCardGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 136, 255, 0.45),
                0 10px 28px -6px rgba(0, 136, 255, 0.25);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(0, 136, 255, 0),
                0 10px 28px -6px rgba(0, 136, 255, 0.25);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 136, 255, 0),
                0 10px 28px -6px rgba(0, 136, 255, 0.25);
  }
}

.action-card.featured-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 28px 4px rgba(0, 136, 255, 0.5),
              0 12px 32px -4px rgba(0, 136, 255, 0.4);
}

.card-icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-glow);
  transition: transform var(--trans-fast), background var(--trans-fast);
}

.action-card:hover .card-icon-box {
  transform: scale(1.05);
  background: var(--accent-tint);
  border-color: var(--accent-border);
}

.action-card.featured-card .card-icon-box {
  background: var(--accent-gradient);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 136, 255, 0.4);
}

.card-icon-box svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.card-content-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

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

.card-title {
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.card-pill {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.action-card.featured-card .card-pill {
  background: rgba(0, 136, 255, 0.25);
  color: #fff;
  border: 1px solid rgba(0, 194, 255, 0.35);
}

.card-sub {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-chevron {
  color: var(--text-tertiary);
  transition: transform var(--trans-fast), color var(--trans-fast);
}

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

/* Ripple Effect */
.ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 136, 255, 0.3);
  transform: scale(0);
  animation: rippleAnim 0.48s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(3.5);
    opacity: 0;
  }
}

/* ==========================================================================
   BLOCO 7: TRUST GRID (3 MINI-CAIXAS TÉCNICAS)
   ========================================================================== */
.trust-section {
  padding: 10px 16px 20px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.trust-card {
  min-height: 96px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  transition: transform var(--trans-fast), border-color var(--trans-fast);
}

.trust-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-border);
}

.trust-icon-wrap {
  width: 28px;
  height: 28px;
  color: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon-wrap svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.trust-title {
  font-family: var(--font-sub);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.2;
}

.trust-sub {
  font-size: 10px;
  color: var(--text-tertiary);
  line-height: 1.3;
}

/* ==========================================================================
   BLOCO 8: PROVA SOCIAL COM REVIEWS REAIS
   ========================================================================== */
.social-proof-section {
  padding: 8px 16px 24px;
}

.reviews-carousel-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}

.reviews-title {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.google-tag-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--star-gold);
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.25);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.reviews-slider-track {
  position: relative;
  min-height: 100px;
}

.review-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-snappy), transform 0.4s var(--ease-snappy);
  transform: translateX(16px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.review-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.review-stars {
  color: var(--star-gold);
  font-size: 13px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 12.5px;
  font-style: italic;
  color: #dedee3;
  line-height: 1.45;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-secondary);
}

.author-name {
  font-weight: 700;
  color: var(--text-primary);
}

.verified-icon {
  width: 12px;
  height: 12px;
  fill: var(--accent);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.dot-btn {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.dot-btn.active {
  width: 18px;
  border-radius: var(--radius-pill);
  background: var(--accent);
}

/* Faixa "Visto por último" */
.ticker-activity-bar {
  margin-top: 14px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-tertiary);
}

.activity-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-glow);
  animation: pulseLive 2s infinite;
}

.activity-text-slider {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-secondary);
}

/* ==========================================================================
   BLOCO 9: HORÁRIO DE ATENDIMENTO & RODAPÉ O COPY
   ========================================================================== */
.hours-section {
  padding: 8px 16px 28px;
}

.hours-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.hours-header {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-secondary);
  transition: background var(--trans-fast);
}

.hour-row.current-day {
  background: rgba(0, 136, 255, 0.12);
  color: #fff;
  font-weight: 700;
  border-left: 3px solid var(--accent);
}

.hours-microcopy {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 11px;
  color: var(--text-tertiary);
  text-align: center;
}

/* Rodapé Canônico (2 linhas exatas) */
.footer-canonical {
  margin-top: 24px;
  text-align: center;
  font-size: 11px;
  color: var(--text-tertiary);
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.4;
  padding: 0 16px;
}

.footer-canonical p {
  margin: 0;
}

.footer-agency-link {
  color: var(--accent-glow);
  text-decoration: none;
  font-weight: 700;
  transition: color var(--trans-fast);
}

.footer-agency-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* ==========================================================================
   MODAIS & DRAWERS: CATÁLOGO, GALERIA, INDICAÇÃO, LGPD, DASHBOARD
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 9, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-snappy);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-sheet {
  width: 100%;
  max-width: 480px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-hover);
  border-radius: 28px 28px 0 0;
  padding: 24px 20px 36px;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease-snappy);
  box-shadow: 0 -16px 48px rgba(0, 0, 0, 0.9);
}

@media (min-width: 600px) {
  .modal-overlay {
    align-items: center;
    padding: 20px;
  }
  .modal-sheet {
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-hover);
    transform: scale(0.94) translateY(12px);
  }
  .modal-overlay.open .modal-sheet {
    transform: scale(1) translateY(0);
  }
}

.modal-overlay.open .modal-sheet {
  transform: translateY(0);
}

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

.sheet-title {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
}

.sheet-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background var(--trans-fast), color var(--trans-fast);
}

.sheet-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Itens do Catálogo */
.catalogo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.catalogo-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.catalogo-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-glow);
  font-size: 20px;
}

.catalogo-item-info {
  flex: 1;
}

.catalogo-item-name {
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.catalogo-item-desc {
  font-size: 11.5px;
  color: var(--text-secondary);
}

.catalogo-item-btn {
  background: var(--accent-gradient);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  white-space: nowrap;
}

/* Galeria de Fotos */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #000;
  aspect-ratio: 4 / 3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-base);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  padding: 6px 8px;
  font-size: 10px;
  color: #fff;
  font-family: var(--font-sub);
}

/* Modal Indicação */
.referral-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.referral-reward-badge {
  background: var(--accent-tint);
  border: 1px solid var(--accent-border);
  color: var(--accent-glow);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 15px;
}

.referral-code-display {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.4);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 2px dashed var(--accent);
  color: #fff;
  letter-spacing: 0.1em;
  user-select: all;
}

.referral-actions {
  display: flex;
  gap: 10px;
  width: 100%;
}

.btn-primary {
  flex: 1;
  background: var(--accent-gradient);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: var(--radius-md);
  font-family: var(--font-sub);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid var(--border-subtle);
  padding: 12px;
  border-radius: var(--radius-md);
  font-family: var(--font-sub);
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
}

/* LGPD Banner: Oculto por padrão */
.lgpd-banner {
  display: none !important;
}

.lgpd-text {
  font-size: 11.5px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.lgpd-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.lgpd-btn {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

.lgpd-btn.accept {
  background: var(--accent);
  color: #fff;
}

.lgpd-btn.settings {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
}

/* Dashboard Interno Modal */
.dashboard-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.metric-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
}

.metric-number {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-glow);
}

.metric-label {
  font-size: 10.5px;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

/* Prefer-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;
  }
}
