/* ==========================================================================
   BIO LINK — DEXTER MENSWEAR ("FLAGSHIP CARBON & SAGE")
   Design System & Master Stylesheet | WCAG 2.2 AA | High-Conversion Performance
   ========================================================================== */

/* 1. RESET & CSS VARIABLES */
:root {
  /* Carbon & Graphite Palette */
  --bg-deep: #0b0d0e;
  --bg-base: #111316;
  --surface-card: rgba(21, 24, 28, 0.88);
  --surface-card-hover: rgba(27, 31, 37, 0.95);
  --surface-elevated: #1a1e23;
  --surface-overlay: rgba(12, 14, 16, 0.85);

  /* Sage Green Accents (Extracted from Logo bird, WCAG AA compliant on dark base) */
  --sage-bird: #62755e;
  --sage-primary: #8da488;
  --sage-bright: #a4bea0;
  --sage-glow: rgba(141, 164, 136, 0.28);
  --sage-border: rgba(141, 164, 136, 0.35);
  --sage-border-subtle: rgba(141, 164, 136, 0.18);

  /* Supporting Colors */
  --white-ice: #f8fafc;
  --text-primary: #f1f3f5;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --amber-warm: #f59e0b;
  --amber-glow: rgba(245, 158, 11, 0.22);
  --navy-accent: #1e293b;

  /* 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.5), 0 0 20px -5px rgba(0, 0, 0, 0.4);
  --shadow-float: 0 24px 60px -12px rgba(0, 0, 0, 0.75), 0 0 40px -10px rgba(141, 164, 136, 0.12);

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

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

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

/* 2. SKIP-LINK (WCAG 2.2 AA) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage-bright);
  color: #0b0d0e;
  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. BACKDROP & AMBIENT GLOWS */
.backdrop-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.backdrop-image {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  background: url('assets/backdrop-fachada.webp') center 25% / cover no-repeat;
  filter: blur(28px) saturate(1.15);
  opacity: 0.42;
  transform: scale(1.08);
}

.backdrop-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, transparent 20%, rgba(11, 13, 14, 0.75) 75%, var(--bg-deep) 100%);
}

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

.orb-sage-top {
  width: 480px;
  height: 480px;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(141, 164, 136, 0.25) 0%, transparent 70%);
  filter: blur(90px);
}

.orb-amber-bottom {
  width: 450px;
  height: 450px;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(245, 158, 11, 0.16) 0%, transparent 70%);
  filter: blur(90px);
}

/* 4. CANVAS CONTAINER (Central 440px / Floating Card on 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(17, 20, 24, 0.82);
    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;
}

/* Emblema Circular Dexter */
.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, rgba(141, 164, 136, 0.35) 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(--sage-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  background-color: #0b0d0e;
}

/* 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: 800;
  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: 700;
  letter-spacing: 0.28em;
  color: var(--sage-bright);
  text-transform: uppercase;
  margin-top: 4px;
  padding-left: 0.28em; /* Compensa o tracking visual */
}

.hero-tagline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

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

.stars-amber {
  color: var(--amber-warm);
  letter-spacing: 0.05em;
}

.hero-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.hero-location-tag svg {
  width: 14px;
  height: 14px;
  color: var(--sage-primary);
}

/* Banner Showcase (Interior Flagship) */
.hero-banner-container {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background-color: var(--surface-elevated);
  box-shadow: var(--shadow-card);
  margin-bottom: 8px;
}

.hero-banner-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 18, 20, 0.15) 0%, rgba(15, 18, 20, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 14px;
}

.banner-badge-row {
  display: flex;
  justify-content: flex-start;
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 18, 0.85);
  border: 1px solid var(--sage-border);
  color: var(--sage-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--sage-bright);
  box-shadow: 0 0 8px var(--sage-primary);
}

.live-status-pill.is-open .status-dot {
  background-color: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: dotPulse 1.8s infinite;
}

.live-status-pill.is-closed {
  background: rgba(30, 20, 15, 0.85);
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--amber-warm);
}

.live-status-pill.is-closed .status-dot {
  background-color: var(--amber-warm);
  box-shadow: 0 0 8px var(--amber-warm);
  animation: none;
}

.banner-caption {
  font-size: 0.75rem;
  color: var(--text-primary);
  font-weight: 500;
  text-align: left;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* 6. FAIXA MARQUEE (Combo 3 Peças) */
.marquee-container {
  width: 100%;
  overflow: hidden;
  background: rgba(141, 164, 136, 0.07);
  border: 1px solid var(--sage-border-subtle);
  border-radius: 12px;
  padding: 8px 0;
  margin-bottom: 24px;
  text-decoration: none;
  display: block;
  position: relative;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}

.marquee-item {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
}

.marquee-diamond {
  color: var(--sage-primary);
  font-size: 0.65rem;
}

/* 7. CARDS DE AÇÃO & EFEITO DEX-SHINE */
.cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.action-card {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-top-color: var(--border-card-top);
  border-radius: 20px;
  padding: 16px;
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  min-height: 48px;
}

/* DEX-SHINE: Efeito de Luz Especular (Sweep) */
.dex-shine-sweep {
  position: absolute;
  top: 0;
  left: 0;
  width: 240%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.16) 50%,
    rgba(255, 255, 255, 0) 65%,
    transparent 80%
  );
  pointer-events: none;
  transform: translateX(-100%);
  z-index: 5;
  will-change: transform;
}

/* Stagger contínuo de varredura (só roda quando visível na viewport) */
.action-card.is-visible .dex-shine-sweep {
  animation: dexSweep 4.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.action-card:nth-child(1).is-visible .dex-shine-sweep { animation-delay: 0s; }
.action-card:nth-child(2).is-visible .dex-shine-sweep { animation-delay: 0.6s; }
.action-card:nth-child(3).is-visible .dex-shine-sweep { animation-delay: 1.2s; }
.action-card:nth-child(4).is-visible .dex-shine-sweep { animation-delay: 1.8s; }

/* DEX-SHINE: Hover / Focus / Active */
.action-card:hover,
.action-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--sage-border);
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.65), 0 0 24px rgba(141, 164, 136, 0.26);
  outline: none;
}

.action-card:hover .dex-shine-sweep,
.action-card:focus-visible .dex-shine-sweep {
  animation: dexSweepFast 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1;
}

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

/* CARD DESTAQUE 1: Site / Catálogo com Respiração Permanente */
.action-card.card-highlight {
  border-color: var(--sage-border);
  animation: dexBreathe 2.8s ease-in-out infinite;
}

/* Card Mockup Browser Frame */
.browser-mockup {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #0f1215;
  border: 1px solid var(--navy-accent);
  margin-bottom: 14px;
  position: relative;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: #171b20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.dot-red { background: #d9534f; opacity: 0.8; }
.dot-amber { background: #f0ad4e; opacity: 0.8; }
.dot-green { background: #5cb85c; opacity: 0.8; }

.browser-url-bar {
  flex: 1;
  background: #101215;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 3px 8px;
  font-size: 0.68rem;
  color: var(--text-secondary);
  font-family: monospace;
}

.browser-url-bar svg {
  width: 10px;
  height: 10px;
  color: var(--sage-primary);
}

.browser-viewport {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: #121417;
}

.mockup-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s var(--ease-spring);
}

.action-card:hover .mockup-screenshot,
.action-card:focus-visible .mockup-screenshot {
  transform: scale(1.06);
}

.browser-gradient-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(21, 24, 28, 0.95) 100%);
  pointer-events: none;
}

/* Estrutura de Informação dos Cards */
.card-content-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

/* Ícones de Marca Gêmeos (Seção 1.2) */
.icon-brand-whatsapp {
  background-color: #25D366;
}

.icon-brand-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.icon-brand-site {
  background: rgba(141, 164, 136, 0.15);
  border: 1px solid var(--sage-border);
  color: var(--sage-bright);
}

.icon-brand-vip {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--amber-warm);
}

.icon-brand-location {
  background: rgba(141, 164, 136, 0.15);
  border: 1px solid var(--sage-border);
  color: var(--sage-bright);
}

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

.icon-brand-whatsapp svg,
.icon-brand-instagram svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.card-text-col {
  flex: 1;
  min-width: 0;
}

.card-header-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 3px;
  flex-wrap: wrap;
}

.card-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--white-ice);
  text-transform: uppercase;
}

.card-pill {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  white-space: nowrap;
}

.pill-sage {
  background: rgba(141, 164, 136, 0.15);
  color: var(--sage-bright);
  border: 1px solid var(--sage-border-subtle);
}

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

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

.card-chevron {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform var(--transition-fast), color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-card:hover .card-chevron,
.action-card:focus-visible .card-chevron {
  transform: translateX(4px);
  color: var(--sage-bright);
}

/* CTA Interno do Card Site */
.card-internal-cta {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--sage-bright);
  text-transform: uppercase;
}

/* 8. CARD 4: MAPPA VIVO (Localização ao Vivo & Selo Google) */
.map-card-wrapper {
  display: flex;
  flex-direction: column;
}

.map-viewport-container {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  margin: 12px 0 10px;
  border: 2px solid var(--sage-bird);
  background: #14171a;
}

/* Filtro elegante de tema escuro nos tiles do Google Maps */
.map-iframe-live {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(115%) saturate(80%);
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.map-iframe-live.is-loaded {
  opacity: 1;
}

.map-gradient-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 20px rgba(11, 13, 14, 0.6);
  border-radius: 12px;
}

/* Placeholder com CLS zero */
.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: url('assets/backdrop-fachada.webp') center/cover no-repeat;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.map-placeholder-blur {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 20, 0.82);
  backdrop-filter: blur(8px);
}

.map-placeholder-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.spinner {
  width: 22px;
  height: 22px;
  border: 2.5px solid rgba(141, 164, 136, 0.2);
  border-top-color: var(--sage-bright);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Overlay Mobile Touch-to-Pan (evita sequestro de scroll no mobile, invisível no desktop) */
.map-touch-shield {
  display: none;
}

@media (max-width: 599px) {
  .map-touch-shield {
    position: absolute;
    inset: 0;
    background: rgba(11, 13, 14, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-ice);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    z-index: 3;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.25s ease;
  }
  .map-touch-shield.is-unlocked {
    opacity: 0;
    pointer-events: none;
  }
}

/* Faixa de Selo Google */
.google-seal-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid var(--border-light);
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.seal-left {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.seal-right {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Rodapé de Ações do Mapa */
.map-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 6px;
}

.btn-map-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  min-height: 44px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.btn-route-primary {
  background: var(--sage-bright);
  color: #0b0d0e;
}

.btn-route-primary:hover,
.btn-route-primary:focus-visible {
  background: #b5ceb1;
  box-shadow: 0 4px 16px rgba(141, 164, 136, 0.35);
}

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

.btn-copy-address:hover,
.btn-copy-address:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--sage-border);
}

.map-meta-links {
  text-align: center;
  padding-top: 4px;
}

.link-ver-google {
  font-size: 0.76rem;
  color: var(--sage-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  padding: 8px 12px;
  min-height: 44px;
  line-height: 28px;
  transition: color var(--transition-fast);
}

.link-ver-google:hover,
.link-ver-google:focus-visible {
  color: var(--white-ice);
  text-decoration: underline;
}

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

.micro-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sage-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  min-height: 44px;
  transition: color var(--transition-fast);
}

.micro-link:hover,
.micro-link:focus-visible {
  color: var(--white-ice);
}

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

.trust-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trust-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 6px;
  color: var(--sage-primary);
}

.trust-title {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--white-ice);
  margin-bottom: 3px;
  line-height: 1.2;
}

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

/* 11. DEPOIMENTOS REAIS (Carrossel Fino) */
.testimonials-section {
  margin-bottom: 28px;
}

.section-header-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 4px;
}

.section-title-sm {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.carousel-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: all var(--transition-fast);
}

.carousel-dot.is-active::before {
  width: 20px;
  border-radius: 5px;
  background: var(--sage-bright);
}

.testimonial-card-frame {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 16px;
  min-height: 110px;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-slide.is-active {
  display: block;
  opacity: 1;
}

.testimonial-stars {
  color: var(--amber-warm);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

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

.testimonial-author {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sage-bright);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 12. HORÁRIO SEMANAL & STATUS AO VIVO */
.hours-section {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 32px;
}

.hours-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.hours-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-ice);
}

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

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

.hours-row.is-today {
  background: rgba(141, 164, 136, 0.12);
  color: var(--white-ice);
  font-weight: 700;
  border: 1px solid var(--sage-border-subtle);
}

.hours-row.is-today .hours-day {
  color: var(--sage-bright);
}

/* 13. RODAPÉ (EXATAMENTE 2 LINHAS) */
.footer-section {
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

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

.footer-agency-link {
  color: var(--sage-bright);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  padding: 8px 12px;
  min-height: 44px;
  line-height: 28px;
  transition: color var(--transition-fast);
}

.footer-agency-link:hover,
.footer-agency-link:focus-visible {
  color: var(--white-ice);
  text-decoration: underline;
}

/* 14. TOAST NOTIFICATION (Copiar Endereço) */
.toast-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1c2024;
  color: var(--white-ice);
  border: 1px solid var(--sage-border);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s var(--ease-spring);
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/* 15. KEYFRAME ANIMATIONS */
@keyframes dexSweep {
  0% { transform: translateX(-120%); }
  45% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

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

@keyframes dexBreathe {
  0%, 100% {
    box-shadow: var(--shadow-card), 0 0 16px rgba(141, 164, 136, 0.18);
  }
  50% {
    box-shadow: var(--shadow-card), 0 0 28px rgba(141, 164, 136, 0.38);
    border-color: rgba(141, 164, 136, 0.5);
  }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

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

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

/* 16. ACCESSIBILITY: 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;
  }
  .dex-shine-sweep {
    display: none !important;
  }
  .marquee-track {
    animation: none !important;
    transform: none !important;
  }
  .action-card.card-highlight {
    animation: none !important;
    box-shadow: 0 0 16px rgba(141, 164, 136, 0.25) !important;
  }
}
