/* ==========================================================================
   BIO LINK — BATERAUTO BATERIAS ("ELECTRIC COBALT & OBSIDIAN")
   Design System & Master Stylesheet | WCAG 2.2 AA | Alta Conversão & Performance
   ========================================================================== */

/* 1. RESET & DESIGN TOKENS */
:root {
  /* Obsidian Carbon Base */
  --bg-deep: #07090e;
  --bg-base: #0c1017;
  --surface-card: rgba(16, 23, 34, 0.88);
  --surface-card-hover: rgba(22, 32, 48, 0.96);
  --surface-elevated: #151d2a;
  --surface-overlay: rgba(10, 14, 20, 0.85);

  /* Primary Accent: Electric Cobalt Blue (65% Hierarquia) */
  --blue-primary: #2563eb;
  --blue-bright: #3b82f6;
  --blue-glow: rgba(37, 99, 235, 0.26);
  --blue-border: rgba(59, 130, 246, 0.35);
  --blue-border-subtle: rgba(59, 130, 246, 0.18);

  /* Secondary Functional: Solar Amber / Spark (20% Hierarquia) */
  --amber-spark: #f59e0b;
  --amber-bright: #fbbf24;
  --amber-glow: rgba(245, 158, 11, 0.22);
  --amber-border: rgba(245, 158, 11, 0.35);

  /* Tertiary Accent: High-Power Crimson / Terminal (15% Hierarquia) */
  --red-terminal: #ef4444;
  --red-glow: rgba(239, 68, 68, 0.24);
  --red-border: rgba(239, 68, 68, 0.3);

  /* Neutral Spectrum */
  --white-ice: #f8fafc;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Borders & Shadows */
  --border-light: rgba(255, 255, 255, 0.08);
  --border-card-top: rgba(255, 255, 255, 0.14);
  --shadow-card: 0 12px 32px -8px rgba(0, 0, 0, 0.6), 0 0 20px -5px rgba(0, 0, 0, 0.5);
  --shadow-float: 0 24px 60px -12px rgba(0, 0, 0, 0.8), 0 0 40px -10px rgba(37, 99, 235, 0.16);

  /* Typography */
  --font-display: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Motion Curves */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.18s var(--ease-spring);
  --transition-smooth: 0.28s var(--ease-spring);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden !important;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  background-color: var(--bg-deep);
  overflow-x: hidden !important;
  padding: 0;
}

/* 2. ACCESSIBILITY: SKIP-LINK */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-bright);
  color: #07090e;
  padding: 12px 24px;
  font-weight: 700;
  border-radius: 8px;
  z-index: 9999;
  text-decoration: none;
  font-size: 0.95rem;
  transition: top 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.skip-link:focus {
  top: 16px;
}

/* 3. ATMOSPHERIC BACKDROP & PONTO FOCAL ÚNICO DE LUZ */
.backdrop-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.backdrop-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 25%, transparent 20%, rgba(7, 9, 14, 0.8) 75%, var(--bg-deep) 100%);
}

.orb-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* Ponto focal único principal no topo: Electric Cobalt Blue */
.orb-blue-top {
  width: 520px;
  height: 520px;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  filter: blur(100px);
}

/* Toque suave no rodapé */
.orb-amber-bottom {
  width: 440px;
  height: 440px;
  bottom: -140px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  filter: blur(95px);
}

/* 4. CANVAS CONTAINER (440px Mobile-first / Floating Shell no Desktop) */
.page-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 440px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 24px 16px 40px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  body {
    padding: 40px 16px;
  }
  .page-container {
    min-height: auto;
    background: rgba(12, 16, 24, 0.85);
    border: 1px solid var(--border-light);
    border-radius: 28px;
    box-shadow: var(--shadow-float);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 36px 24px 44px;
    margin: 20px auto;
  }
}

/* 5. HERO SECTION */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
}

/* Logo Circular com Halo Elétrico */
.logo-wrapper {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-halo {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  filter: blur(14px);
}

.logo-image {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--blue-border);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.65);
  background-color: #07090e;
}

/* Título Monumental */
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8px;
}

.title-display {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.75rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white-ice);
  text-transform: uppercase;
}

.title-subline {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 3.5vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  color: var(--blue-bright);
  text-transform: uppercase;
  margin-top: 4px;
  text-shadow: 0 0 14px var(--blue-glow);
}

.hero-tagline {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Prova Social Compacta */
.hero-proof-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.24);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.stars-amber {
  color: var(--amber-spark);
  letter-spacing: 2px;
  font-size: 0.85rem;
}

/* Location Tag */
.hero-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.hero-location-tag svg {
  width: 14px;
  height: 14px;
  stroke: var(--blue-bright);
}

/* Showcase Banner com Status Vivo */
.hero-banner-container {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: linear-gradient(135deg, rgba(21, 29, 42, 0.95), rgba(12, 16, 24, 0.98));
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
}

.banner-badge-row {
  display: flex;
  justify-content: center;
  width: 100%;
}

.banner-caption {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-align: center;
}

/* Status Pill Vivo */
.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.live-status-pill.is-open {
  background: rgba(37, 99, 235, 0.14);
  border: 1px solid var(--blue-border);
  color: #60a5fa;
}

.live-status-pill.is-open .status-dot {
  background-color: #3b82f6;
  box-shadow: 0 0 10px #3b82f6;
}

.live-status-pill.is-closed {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid var(--red-border);
  color: #fca5a5;
}

.live-status-pill.is-closed .status-dot {
  background-color: var(--red-terminal);
  box-shadow: 0 0 8px var(--red-terminal);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  animation: pulse-dot 2s infinite ease-in-out;
}

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

/* 6. MARQUEE TICKER INFINITO */
.marquee-container {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.18), rgba(245, 158, 11, 0.12), rgba(37, 99, 235, 0.18));
  border-top: 1px solid rgba(59, 130, 246, 0.25);
  border-bottom: 1px solid rgba(59, 130, 246, 0.25);
  overflow: hidden;
  padding: 10px 0;
  text-decoration: none;
  margin-bottom: 20px;
  border-radius: 12px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-anim 24s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 14px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.06em;
}

.marquee-diamond {
  color: var(--amber-spark);
  font-size: 0.75rem;
}

@keyframes marquee-anim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 7. CARDS DE AÇÃO (FULL-WIDTH COM SHINY SWEEP) */
.cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.action-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-top: 1px solid var(--border-card-top);
  border-radius: 18px;
  padding: 18px;
  text-decoration: none;
  color: var(--text-primary);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  min-height: 54px;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.action-card:hover,
.action-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--blue-border);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.75), 0 0 24px -5px var(--blue-glow);
}

/* SHINY SWEEP: Feixe diagonal de baixa opacidade */
.dex-shine-sweep {
  position: absolute;
  top: -50%;
  left: -120%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 40%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.03) 60%,
    transparent 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  transition: left 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.action-card:hover .dex-shine-sweep,
.action-card:focus-visible .dex-shine-sweep,
.action-card:active .dex-shine-sweep {
  left: 180%;
}

/* Linha de Conteúdo dos Cards */
.card-content-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.card-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-brand-site {
  background: rgba(59, 130, 246, 0.12);
  color: var(--blue-bright);
  border: 1px solid var(--blue-border-subtle);
}

.icon-brand-whatsapp {
  background: rgba(37, 99, 235, 0.14);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.icon-brand-whatsapp-sec {
  background: rgba(245, 158, 11, 0.12);
  color: var(--amber-spark);
  border: 1px solid var(--amber-border);
}

.icon-brand-instagram {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid var(--red-border);
}

.icon-brand-location {
  background: rgba(59, 130, 246, 0.12);
  color: var(--blue-bright);
  border: 1px solid var(--blue-border-subtle);
}

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

.card-text-col {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.card-header-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-bottom: 3px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--white-ice);
  line-height: 1.25;
  word-break: normal;
  overflow-wrap: break-word;
}

.card-subtitle {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.35;
  overflow-wrap: break-word;
}

.card-chevron {
  color: var(--text-muted);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.action-card:hover .card-chevron {
  transform: translateX(3px);
  color: var(--blue-bright);
}

/* Pills de Status nos Cards */
.card-pill {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.pill-blue {
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid var(--blue-border);
  color: #93c5fd;
}

.pill-amber {
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid var(--amber-border);
  color: var(--amber-bright);
}

.pill-crimson {
  background: rgba(239, 68, 68, 0.16);
  border: 1px solid var(--red-border);
  color: #fca5a5;
}

/* CARD 1: HIGHLIGHT / SITE OFICIAL */
.card-highlight {
  border-color: rgba(59, 130, 246, 0.35);
  background: linear-gradient(180deg, rgba(22, 33, 49, 0.92) 0%, rgba(14, 20, 30, 0.95) 100%);
}

/* BORDER BEAM (DEEP GLOW AUTOMÁTICO EXCLUSIVO DO CARD HIGHLIGHT) */
.card-border-beam {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  pointer-events: none;
  z-index: 1;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  overflow: hidden;
  contain: strict;
}

.beam-rotator {
  position: absolute;
  top: -80%;
  left: -40%;
  width: 180%;
  height: 260%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    transparent 280deg,
    rgba(37, 99, 235, 0.20) 315deg,
    rgba(59, 130, 246, 0.75) 345deg,
    #ffffff 352deg,
    rgba(59, 130, 246, 0.75) 358deg,
    transparent 360deg
  );
  transform-origin: center center;
  animation: beamLoop 5s linear infinite;
  will-change: transform;
}

@keyframes beamLoop {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Pausa inteligente quando fora da viewport ou aba oculta */
.card-highlight.is-paused .beam-rotator,
#card-site.is-paused .beam-rotator {
  animation-play-state: paused;
}

.browser-mockup {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(8, 11, 16, 0.9);
  margin-bottom: 14px;
}

.browser-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(18, 24, 34, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-red { background-color: #ef4444; }
.dot-amber { background-color: #f59e0b; }
.dot-green { background-color: #22c55e; }

.browser-url-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(7, 9, 14, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.browser-url-bar svg {
  width: 11px;
  height: 11px;
  stroke: var(--text-muted);
}

.browser-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--blue-bright);
}

.live-dot-pulse {
  width: 6px;
  height: 6px;
  background-color: var(--blue-bright);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}

.card-internal-cta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--blue-bright);
  letter-spacing: 0.04em;
  gap: 8px;
}

/* CARD LOCALIZAÇÃO & MAPA */
.map-card-wrapper {
  padding-bottom: 14px;
}

.map-viewport-container {
  position: relative;
  width: 100%;
  height: 190px;
  border-radius: 12px;
  overflow: hidden;
  margin: 14px 0 10px;
  background: #0d121a;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.map-iframe-live {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d121a;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--blue-border-subtle);
  border-top-color: var(--blue-bright);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.map-touch-shield {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 9, 14, 0.45);
  color: var(--white-ice);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.25s ease;
  z-index: 3;
}

.map-touch-shield.is-unlocked {
  pointer-events: none;
  opacity: 0;
}

.map-gradient-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 20px rgba(7, 9, 14, 0.7);
  z-index: 1;
}

/* Selo Google no Card Mapa */
.google-seal-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 4px;
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 12px;
}

.seal-left {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-primary);
  font-weight: 600;
}

.seal-right {
  color: var(--blue-bright);
  font-weight: 700;
}

/* Botões do Mapa */
.map-actions-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.btn-map-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  min-height: 48px;
  transition: all var(--transition-fast);
}

.btn-route-primary {
  background: var(--blue-primary);
  color: var(--white-ice);
  border: 1px solid var(--blue-bright);
  box-shadow: 0 4px 14px var(--blue-glow);
}

.btn-route-primary:hover {
  background: var(--blue-bright);
  transform: translateY(-1px);
}

.btn-copy-address {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-copy-address:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-ice);
}

.map-meta-links {
  margin-top: 10px;
  text-align: center;
}

.link-ver-google {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.link-ver-google:hover {
  color: var(--blue-bright);
}

/* 8. MICRO-LINK DISCRETO */
.micro-link-container {
  text-align: center;
  margin-bottom: 22px;
}

.micro-link {
  font-size: 0.82rem;
  color: var(--blue-bright);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.micro-link:hover {
  color: var(--white-ice);
  background: rgba(59, 130, 246, 0.12);
}

/* 9. TRUST GRID (3 ITENS) */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.trust-item {
  background: rgba(16, 23, 34, 0.65);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--blue-bright);
  margin-bottom: 2px;
}

.trust-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--white-ice);
  line-height: 1.25;
}

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

/* 10. SEÇÃO HORÁRIOS DE ATENDIMENTO */
.hours-section {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}

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

.hours-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white-ice);
}

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

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

.hours-row.is-today {
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid var(--blue-border-subtle);
  color: var(--white-ice);
  font-weight: 700;
}

.hours-row.is-today .hours-day::after {
  content: " (Hoje)";
  font-size: 0.7rem;
  color: var(--blue-bright);
}

.hours-time {
  font-weight: 600;
}

/* 11. RODAPÉ — EXATAMENTE 2 LINHAS */
.footer-section {
  text-align: center;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

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

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

.footer-agency-link:hover {
  color: var(--white-ice);
}

/* 12. TOAST NOTIFICATION */
.toast-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  opacity: 0;
  visibility: hidden;
  background: #111827;
  border: 1px solid var(--blue-border);
  color: var(--white-ice);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px var(--blue-glow);
  z-index: 99999;
  transition: transform 0.3s var(--ease-spring), opacity 0.3s ease, visibility 0.3s;
}

.toast-notice svg {
  stroke: var(--blue-bright);
}

.toast-notice.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* 13. PREFERS-REDUCED-MOTION (ACESSIBILIDADE) */
@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;
  }
  .marquee-track {
    animation: none !important;
  }
  .dex-shine-sweep {
    display: none !important;
  }
  .beam-rotator {
    animation: none !important;
    display: none !important;
  }
  .card-border-beam {
    border: 1px solid var(--blue-border-subtle);
    padding: 0;
    -webkit-mask: none;
    mask: none;
  }
}

/* 14. AJUSTES RESPONSIVOS CIRÚRGICOS (TELAS ESTREITAS) */
@media (max-width: 480px) {
  .page-container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .card-content-row {
    gap: 12px;
  }
  .card-header-line {
    gap: 4px 6px;
  }
  .card-title {
    font-size: 0.92rem;
  }
  .card-subtitle {
    font-size: 0.8rem;
  }
  .trust-grid {
    gap: 8px;
  }
  .trust-item {
    padding: 10px 4px;
  }
  .trust-title {
    font-size: 0.67rem;
  }
  .trust-sub {
    font-size: 0.64rem;
  }
}

@media (max-width: 360px) {
  .page-container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .action-card {
    padding: 14px 12px;
  }
  .card-icon-box {
    width: 40px;
    height: 40px;
  }
  .card-icon-box svg {
    width: 20px;
    height: 20px;
  }
  .title-display {
    font-size: 2.1rem;
  }
  .title-subline {
    font-size: 0.85rem;
  }
  .card-title {
    font-size: 0.88rem;
  }
  .card-subtitle {
    font-size: 0.76rem;
  }
  .card-pill {
    font-size: 0.6rem;
    padding: 2px 6px;
  }
  .trust-grid {
    gap: 6px;
  }
}
