/* ==========================================================================
   DSJ MATERIAIS DE CONSTRUÇÃO — ARQUITETURA VISUAL & MOTOR DE ESTILO
   Estética: Concreto, Matéria, Precisão Estrutural, Aço & Vermelho DSJ
   Zero Clichês de IA • Zero Caixas Cinzas • 100% Mobile-First Estável
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Variáveis Globais
   -------------------------------------------------------------------------- */
:root {
  /* Cores Estruturais */
  --bg-deep: #09090C;
  --bg-surface: #101014;
  --bg-surface-elevated: #16161C;
  --bg-panel: rgba(16, 16, 20, 0.85);

  --dsj-red: #FF1A1A;
  --dsj-red-dark: #C40E0E;
  --dsj-red-subtle: rgba(255, 26, 26, 0.12);
  --dsj-red-border: rgba(255, 26, 26, 0.3);
  --dsj-red-glow: rgba(255, 26, 26, 0.22);

  --text-white: #FFFFFF;
  --text-light: #E6E6EC;
  --text-muted: #8E8E98;
  --text-dim: #545460;

  --border-line: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.22);

  /* Tipografia Arquitetural */
  --font-monumental: 'Oswald', -apple-system, sans-serif;
  --font-ui: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout & Espaçamento */
  --container-width: 520px;
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-full: 9999px;

  /* Transições Fluidas */
  --trans-fast: 0.16s cubic-bezier(0.2, 0, 0.2, 1);
  --trans-smooth: 0.28s cubic-bezier(0.25, 1, 0.5, 1);
  --trans-spring: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Normalização Rigorosa (Zero Overflow, Zero Colisão)
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-white);
  font-family: var(--font-ui);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  width: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--bg-deep);
  color: var(--text-white);
  line-height: 1.5;
  overflow-x: hidden !important;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

:focus-visible {
  outline: 2px solid var(--dsj-red);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

/* --------------------------------------------------------------------------
   3. Background Global & Textura Sutil (Zero Bloqueio de Clique)
   -------------------------------------------------------------------------- */
#ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  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.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   4. Container do Site (Fluxo Vertical Estável)
   -------------------------------------------------------------------------- */
.site-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 1.25rem 1rem 3.5rem 1rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 480px) {
  .site-container {
    padding: 1.75rem 1.25rem 4.5rem 1.25rem;
    gap: 3rem;
  }
}

.content-flow {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
  width: 100%;
}

/* --------------------------------------------------------------------------
   5. Top Bar: Identidade Técnica Discreta
   -------------------------------------------------------------------------- */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.9rem;
  background: rgba(14, 14, 18, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-full);
  width: 100%;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.live-dot {
  width: 6px;
  height: 6px;
  background-color: var(--dsj-red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--dsj-red);
  animation: pulseDot 2.4s infinite ease-in-out;
}

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

.top-bar-status {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.top-bar-location {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   6. Hero Section: Monumentalidade, Solidez & Autoridade
   -------------------------------------------------------------------------- */
.hero-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-emblem-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-emblem {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(255, 26, 26, 0.4), rgba(255, 255, 255, 0.08));
  box-shadow: 
    0 14px 36px -6px rgba(0, 0, 0, 0.8),
    0 0 20px -2px var(--dsj-red-glow);
  transition: transform var(--trans-spring);
}

.hero-emblem:hover {
  transform: scale(1.03) translateY(-2px);
}

.emblem-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 21px;
  background-color: #0b0b0e;
}

.slogan-ribbon {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  background: var(--dsj-red-subtle);
  border: 1px solid var(--dsj-red-border);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--dsj-red);
  letter-spacing: 0.08em;
}

/* Tipografia Hero com Oswald */
.hero-headline-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 1.75rem;
}

.hero-title {
  font-family: var(--font-monumental);
  font-size: clamp(4.5rem, 18vw, 7rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: 0.02em;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.hero-category {
  font-family: var(--font-mono);
  font-size: clamp(0.78rem, 2.8vw, 0.92rem);
  letter-spacing: 0.22em;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-main-copy {
  font-size: clamp(1.05rem, 3.8vw, 1.22rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-light);
  max-width: 440px;
  margin: 0 auto 0.4rem auto;
}

.hero-sub-copy {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   7. Botões de Ação com Shiny Sweep Visível & Funcional
   -------------------------------------------------------------------------- */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

/* Base do Botão de Conversão */
.action-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 60px;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: 
    transform var(--trans-smooth), 
    box-shadow var(--trans-smooth), 
    border-color var(--trans-fast),
    background-color var(--trans-fast);
}

.action-btn-main {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  position: relative;
  z-index: 3;
  padding-right: 0.75rem;
}

.action-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.action-label {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.action-desc {
  font-size: 0.76rem;
  line-height: 1.25;
}

.action-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  transition: transform var(--trans-spring);
}

/* Efeito Shiny Sweep — O Sheen Visível e Periódico */
.btn-primary-sheen,
.btn-secondary-sheen,
.btn-sweep {
  position: relative;
  overflow: hidden;
}

.btn-primary-sheen::before,
.btn-secondary-sheen::before,
.btn-sweep::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 15%,
    rgba(255, 255, 255, 0.0) 35%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.0) 65%,
    transparent 85%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 2;
  animation: shinySweepContinuous 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes shinySweepContinuous {
  0%, 65% {
    left: -150%;
  }
  85%, 100% {
    left: 150%;
  }
}

.btn-primary-sheen:hover::before,
.btn-primary-sheen:active::before,
.btn-secondary-sheen:hover::before,
.btn-secondary-sheen:active::before,
.btn-sweep:hover::before,
.btn-sweep:active::before {
  animation: shinySweepActive 0.75s cubic-bezier(0.2, 0, 0.2, 1);
}

@keyframes shinySweepActive {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* Estilo: Botão Primário WhatsApp */
.btn-primary-sheen {
  background: linear-gradient(135deg, #FF1A1A 0%, #D40A0A 100%);
  border: 1px solid rgba(255, 120, 120, 0.5);
  box-shadow: 
    0 10px 28px -6px rgba(255, 26, 26, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.6);
}

.btn-primary-sheen .action-tag {
  color: rgba(255, 255, 255, 0.85);
}

.btn-primary-sheen .action-label {
  color: #FFFFFF;
}

.btn-primary-sheen .action-desc {
  color: rgba(255, 255, 255, 0.82);
}

.btn-primary-sheen .action-icon-circle {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.btn-primary-sheen:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 
    0 14px 34px -4px rgba(255, 26, 26, 0.55),
    0 4px 10px rgba(0, 0, 0, 0.7);
}

.btn-primary-sheen:hover .action-icon-circle {
  transform: scale(1.08);
}

/* Estilo: Botão Secundário Catálogo */
.btn-secondary-sheen {
  background: var(--bg-surface);
  border: 1px solid var(--border-line);
}

.btn-secondary-sheen .action-tag {
  color: var(--dsj-red);
}

.btn-secondary-sheen .action-label {
  color: var(--text-white);
}

.btn-secondary-sheen .action-desc {
  color: var(--text-muted);
}

.btn-secondary-sheen .action-icon-circle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-line);
  color: var(--text-light);
}

.btn-secondary-sheen:hover {
  transform: translateY(-2px);
  background: var(--bg-surface-elevated);
  border-color: var(--dsj-red-border);
  box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.7);
}

.btn-secondary-sheen:hover .action-icon-circle {
  color: var(--dsj-red);
  background: var(--dsj-red-subtle);
  border-color: var(--dsj-red-border);
}

/* Linha Direta Telefone Fixo */
.phone-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 50px;
  padding: 0.85rem 1.15rem;
  background: rgba(16, 16, 20, 0.6);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-sm);
  transition: all var(--trans-fast);
}

.phone-strip-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-muted);
}

.phone-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.phone-number {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dsj-red);
  letter-spacing: 0.04em;
}

.phone-strip:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.phone-strip:hover .phone-strip-left {
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   8. Seções de Fluxo Editorial & Linhas Arquiteturais
   -------------------------------------------------------------------------- */
.flow-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  position: relative;
}

.section-title-line {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  border-bottom: 1px solid var(--border-line);
  padding-bottom: 0.5rem;
  width: 100%;
}

.section-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--dsj-red);
  letter-spacing: 0.08em;
}

.section-heading {
  font-family: var(--font-monumental);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-white);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   9. Diretório de Setores (Estrutura de Linhas Arquiteturais)
   -------------------------------------------------------------------------- */
.directory-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-line);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  overflow: hidden;
}

.directory-item {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1.15rem 1.15rem;
  border-bottom: 1px solid var(--border-line);
  transition: all var(--trans-fast);
}

.directory-item:last-child {
  border-bottom: none;
}

.directory-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  transition: color var(--trans-fast);
}

.directory-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.directory-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.directory-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.directory-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--dsj-red);
  background: var(--dsj-red-subtle);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.directory-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.directory-action {
  color: var(--text-dim);
  transition: all var(--trans-fast);
  flex-shrink: 0;
}

.directory-item:hover {
  background: var(--bg-surface-elevated);
}

.directory-item:hover .directory-num {
  color: var(--dsj-red);
}

.directory-item:hover .directory-action {
  color: var(--dsj-red);
  transform: translate(2px, -2px);
}

/* --------------------------------------------------------------------------
   10. Loja Física & Beacon de Localização
   -------------------------------------------------------------------------- */
.store-beacon-block {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 1.35rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px -8px rgba(0, 0, 0, 0.7);
}

.store-meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.store-pin-indicator {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--dsj-red);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.store-cep {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
}

.store-address-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.store-street {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.store-district {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* Schematic Vector Map Preview (100% Robusto, Sem Iframe, Sem Erro) */
.map-schematic-preview {
  position: relative;
  width: 100%;
  height: 100px;
  background: #0B0B0E;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.schematic-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

.schematic-road {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
}

.road-horizontal {
  top: 50%;
  left: 0;
  width: 100%;
  height: 12px;
  transform: translateY(-50%);
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.road-vertical {
  left: 35%;
  top: 0;
  height: 100%;
  width: 10px;
  border-left: 1px dashed rgba(255, 255, 255, 0.15);
  border-right: 1px dashed rgba(255, 255, 255, 0.15);
}

.schematic-beacon {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.beacon-dot {
  width: 12px;
  height: 12px;
  background: var(--dsj-red);
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 10px var(--dsj-red);
}

.beacon-pulse {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--dsj-red);
  animation: beaconPulse 2s infinite ease-out;
}

@keyframes beaconPulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.beacon-name {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.85);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--dsj-red-border);
  white-space: nowrap;
}

.store-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

.btn-maps-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  background: #FFFFFF;
  color: #09090C;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--trans-smooth);
}

.btn-maps-action:hover {
  background: #EBEBEF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.18);
}

.btn-copy-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: all var(--trans-fast);
}

.btn-copy-address:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   11. Canais Digitais Oficiais (Lista Contínua)
   -------------------------------------------------------------------------- */
.social-flow-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-line);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  overflow: hidden;
}

.social-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid var(--border-line);
  transition: all var(--trans-fast);
}

.social-row:last-child {
  border-bottom: none;
}

.social-row-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-light);
}

.social-row-text {
  display: flex;
  flex-direction: column;
}

.social-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-white);
}

.social-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.social-arrow {
  color: var(--text-dim);
  transition: all var(--trans-fast);
}

.social-row:hover {
  background: var(--bg-surface-elevated);
}

.social-row:hover .social-row-left {
  color: var(--dsj-red);
}

.social-row:hover .social-arrow {
  color: var(--dsj-red);
  transform: translate(2px, -2px);
}

/* --------------------------------------------------------------------------
   12. Experiência do Cliente & Avaliações (Split Box)
   -------------------------------------------------------------------------- */
.feedback-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 440px) {
  .feedback-split {
    grid-template-columns: 1fr 1fr;
  }
}

.feedback-action-box {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-sm);
  transition: all var(--trans-smooth);
}

.star-rating {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.2rem;
}

.feedback-icon-tag {
  color: var(--dsj-red);
  margin-bottom: 0.2rem;
}

.box-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-white);
}

.box-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
  flex: 1;
}

.box-cta-link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--dsj-red);
  letter-spacing: 0.04em;
  padding-top: 0.4rem;
  transition: transform var(--trans-fast);
}

.feedback-action-box:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--dsj-red-border);
  transform: translateY(-2px);
}

.feedback-action-box:hover .box-cta-link {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   13. Bloco Monumental de Fechamento (Closing Banner)
   -------------------------------------------------------------------------- */
.closing-banner {
  background: linear-gradient(135deg, rgba(255, 26, 26, 0.15), rgba(16, 16, 20, 0.95));
  border: 1px solid var(--dsj-red-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.35rem;
  text-align: center;
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.8);
}

.closing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.closing-kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--dsj-red);
  letter-spacing: 0.09em;
}

.closing-title {
  font-family: var(--font-monumental);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-white);
  line-height: 1;
  text-transform: uppercase;
}

.closing-copy {
  font-size: 0.85rem;
  color: var(--text-light);
  max-width: 380px;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.closing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 360px;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  background: var(--dsj-red);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(255, 26, 26, 0.4);
  transition: all var(--trans-smooth);
}

.closing-btn:hover {
  background: var(--dsj-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 26, 26, 0.55);
}

/* --------------------------------------------------------------------------
   14. Rodapé Oficial (Fluxo Natural Garantido)
   -------------------------------------------------------------------------- */
.site-footer {
  width: 100%;
  margin-top: 1rem;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--border-line);
  margin-bottom: 1.5rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: center;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-brand img {
  border-radius: 6px;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.footer-title {
  font-family: var(--font-monumental);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-white);
}

.footer-slogan {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.footer-address {
  font-size: 0.76rem;
  color: var(--text-dim);
  max-width: 420px;
  line-height: 1.35;
}

.footer-phone {
  font-size: 0.76rem;
  color: var(--text-dim);
}

.footer-phone a {
  color: var(--text-muted);
  font-family: var(--font-mono);
  transition: color var(--trans-fast);
}

.footer-phone a:hover {
  color: var(--dsj-red);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   15. Toast Notificação
   -------------------------------------------------------------------------- */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #181820;
  border: 1px solid var(--dsj-red-border);
  color: #FFFFFF;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  white-space: nowrap;
}

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

/* --------------------------------------------------------------------------
   16. Scroll Reveal Base & Reduced Motion
   -------------------------------------------------------------------------- */
/* Os itens são 100% visíveis por padrão em CSS, evitando tela em branco */
.reveal-item {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  #ambient-canvas {
    display: none;
  }
}
