/* ==========================================================================
   NB SKATE SHOP — DESIGN SYSTEM & STYLES
   Construído por O COPY
   Superfície única · Dark High Contrast · Asfalto & Skate Red
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. VARIÁVEIS & TOKENS DE DESIGN (HERDADOS DO BIO LINK APROVADO)
   -------------------------------------------------------------------------- */
:root {
  /* SUPERFÍCIE ÚNICA */
  --color-asfalto-deep:        #0F0E0D;
  --color-asfalto-mid:         #141210;
  --color-grip-dark:           #171412;
  --color-grip-surface:        #1D1A17;
  --color-grip-border:         rgba(155, 147, 138, 0.14);
  --color-grip-border-light:   rgba(155, 147, 138, 0.24);

  /* MARCA */
  --color-skate-red:    #B82830;
  --color-skate-hover:  #E0363D;
  --color-skate-light:  #FF565A;
  --color-maple-warm:   #C9923F;
  --color-maple-light:  #D8A657;

  /* TEXTO */
  --color-text-main:    #F2EBDD;
  --color-text-muted:   #A69E94;

  /* STATUS */
  --color-status-open:   #2BD477;
  --color-status-closed: #E0363D;

  /* TIPOGRAFIA */
  --font-display: 'Anton', 'Impact', 'Arial Black', sans-serif;
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* ESPAÇOS */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-section: clamp(80px, 12vw, 160px);

  /* RAIO */
  --radius-card: 22px;
  --radius-pill: 4px;
  --radius-sticker: 6px;

  /* MOTION */
  --trans-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-base: 0.3s;

  /* LAYOUT */
  --container-max: 1280px;
  --container-padding: clamp(20px, 5vw, 48px);
}

/* --------------------------------------------------------------------------
   02. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

html, body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  position: relative;
  background-color: var(--color-asfalto-deep);
}

body {
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Garante que nenhum item de grid estoure em mobile */
.caminhos__grid > *,
.categorias__grid > *,
.numeros__grid > *,
.loja__grid > *,
.cta-final__grid > * {
  min-width: 0;
}

/* Background com iluminação ambiente contínua sem caixas */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(184, 40, 48, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 60%, rgba(201, 146, 63, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(184, 40, 48, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-padding);
}

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

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

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

a, button {
  transition: color var(--duration-base) var(--trans-smooth),
              background-color var(--duration-base) var(--trans-smooth),
              border-color var(--duration-base) var(--trans-smooth),
              transform var(--duration-base) var(--trans-smooth),
              box-shadow var(--duration-base) var(--trans-smooth);
}

:focus-visible {
  outline: 2px solid var(--color-skate-light);
  outline-offset: 3px;
}

.section-padding {
  padding-block: var(--space-section);
  position: relative;
}

/* --------------------------------------------------------------------------
   03. TIPOGRAFIA & COMPONENTES UTILITÁRIOS
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow--maple {
  color: var(--color-maple-light);
}

.eyebrow--red {
  color: var(--color-skate-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--color-text-main);
}

.section-sub {
  font-family: var(--font-body);
  color: var(--color-text-muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin-top: 14px;
  max-width: 580px;
}

.section-header {
  margin-bottom: clamp(36px, 6vw, 64px);
}

/* Chips / Badges */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip--red {
  background: rgba(184, 40, 48, 0.12);
  color: var(--color-skate-light);
  border: 1px solid rgba(184, 40, 48, 0.3);
}

.chip--dark {
  background: var(--color-grip-dark);
  color: var(--color-text-main);
  border: 1px solid var(--color-grip-border);
}

.chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-skate-light);
  box-shadow: 0 0 8px var(--color-skate-light);
}

.chip__star {
  width: 14px;
  height: 14px;
  color: var(--color-maple-warm);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  min-height: 48px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-skate-red);
  color: #FFFFFF;
  border: 1px solid var(--color-skate-light);
  box-shadow: 0 4px 16px rgba(184, 40, 48, 0.35);
}

.btn--primary:hover {
  background: var(--color-skate-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 54, 61, 0.45);
}

.btn--secondary {
  background: rgba(29, 26, 23, 0.8);
  color: var(--color-text-main);
  border: 1px solid var(--color-grip-border-light);
}

.btn--secondary:hover {
  background: rgba(184, 40, 48, 0.12);
  border-color: rgba(184, 40, 48, 0.4);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn--header {
  padding: 10px 18px;
  min-height: 40px;
  font-size: 12px;
  background: rgba(184, 40, 48, 0.12);
  color: var(--color-skate-light);
  border: 1px solid rgba(184, 40, 48, 0.35);
}

.btn--header:hover {
  background: var(--color-skate-red);
  color: #FFFFFF;
  border-color: var(--color-skate-light);
}

.btn--full {
  width: 100%;
}

.btn__icon {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-base) var(--trans-smooth);
}

.btn:hover .btn__icon {
  transform: translate(2px, -2px);
}

/* Efeito nb-shine (sweep de brilho diagonal aprovado pelo cliente) */
.nb-shine {
  position: relative;
  overflow: hidden;
}

.nb-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 70%
  );
  transform: rotate(25deg) translateY(-100%);
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.nb-shine:hover::after {
  transform: rotate(25deg) translateY(100%);
}

/* --------------------------------------------------------------------------
   04. 01 · HEADER FIXO
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 100;
  transition: background-color 0.4s var(--trans-smooth),
              backdrop-filter 0.4s var(--trans-smooth),
              border-color 0.4s var(--trans-smooth);
  border-bottom: 1px solid transparent;
}

.header.header--scrolled {
  background-color: rgba(15, 14, 13, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--color-grip-border);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-grip-border-light);
}

.header__brand-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--color-text-main);
}

.header__nav {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 900px) {
  .header__nav {
    display: flex;
  }
}

.header__link {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding-block: 4px;
}

.header__link:hover {
  color: var(--color-text-main);
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-skate-light);
  transition: width 0.3s var(--trans-smooth);
}

.header__link:hover::after {
  width: 100%;
}

/* --------------------------------------------------------------------------
   05. 02 · HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 40px;
  overflow: hidden;
}

.hero__canvas-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero__canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.6;
}

.hero__glow--primary {
  width: 450px;
  height: 450px;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -20%);
  background: radial-gradient(circle, rgba(184, 40, 48, 0.22) 0%, transparent 70%);
}

.hero__glow--secondary {
  width: 500px;
  height: 500px;
  bottom: 10%;
  right: 15%;
  background: radial-gradient(circle, rgba(201, 146, 63, 0.14) 0%, transparent 70%);
}

.hero__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 860px;
}

.hero__eyebrow-wrapper {
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--color-text-main);
  margin-bottom: 24px;
}

.hero__title .line-mask {
  display: block;
  overflow: hidden;
}

.hero__title .line {
  display: block;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 28px;
}

.hero__proof {
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 420px;
}

@media (min-width: 600px) {
  .hero__ctas {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }
}

.hero__scroll {
  margin-top: clamp(40px, 6vh, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero__scroll-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--color-skate-red), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--color-skate-light);
  animation: scrollDown 2s infinite ease-in-out;
}

@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* --------------------------------------------------------------------------
   06. 03 · CAMINHOS
   -------------------------------------------------------------------------- */
.caminhos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .caminhos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .caminhos__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.caminho-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 24px;
  min-height: 280px;
  background: rgba(29, 26, 23, 0.4);
  border-top: 2px solid var(--color-grip-border);
  border-bottom: 1px solid var(--color-grip-border);
  border-left: 1px solid rgba(155, 147, 138, 0.06);
  border-right: 1px solid rgba(155, 147, 138, 0.06);
  border-radius: var(--radius-card);
  transition: all 0.35s var(--trans-smooth);
}

.caminho-card:hover {
  background: rgba(184, 40, 48, 0.08);
  border-top-color: var(--color-skate-red);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(184, 40, 48, 0.2);
}

.caminho-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.caminho-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sticker);
  background: rgba(15, 14, 13, 0.8);
  border: 1px solid var(--color-grip-border);
  color: var(--color-maple-light);
}

.caminho-card__icon svg {
  width: 22px;
  height: 22px;
}

.caminho-card__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-muted);
}

.caminho-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--color-text-main);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.caminho-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.caminho-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-skate-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.caminho-card__cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s var(--trans-smooth);
}

.caminho-card:hover .caminho-card__cta svg {
  transform: translate(3px, -3px);
}

/* --------------------------------------------------------------------------
   07. 04 · NÚMEROS
   -------------------------------------------------------------------------- */
.numeros {
  border-block: 1px solid var(--color-grip-border);
  background: rgba(20, 18, 16, 0.4);
}

.numeros__header {
  margin-bottom: 24px;
  text-align: center;
}

.numeros__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 20px;
}

@media (min-width: 900px) {
  .numeros__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.numero-item {
  text-align: center;
  position: relative;
  padding: 20px 16px;
  min-width: 0;
}

@media (min-width: 900px) {
  .numero-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--color-grip-border);
  }
}

.numero-item__val {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.0;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.numero-item--destaque .numero-item__val {
  color: var(--color-skate-light);
}

.numero-item__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.numero-item__stars {
  color: var(--color-maple-light);
  letter-spacing: 1px;
}

.numero-item__nota {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  opacity: 0.85;
  max-width: 22ch;
  margin: 0 auto;
  line-height: 1.4;
}

.numeros__link-wrapper {
  text-align: center;
  margin-top: 36px;
}

.numeros__anchor-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-maple-light);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(201, 146, 63, 0.08);
  border: 1px solid rgba(201, 146, 63, 0.25);
  transition: all 0.25s var(--trans-smooth);
}

.numeros__anchor-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s var(--trans-smooth);
}

.numeros__anchor-link:hover {
  background: rgba(201, 146, 63, 0.16);
  border-color: var(--color-maple-light);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.numeros__anchor-link:hover svg {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   08. 05 · ORIGEM — NEGO BALA
   -------------------------------------------------------------------------- */
.origem__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .origem__container {
    grid-template-columns: 55% 45%;
    gap: 64px;
  }
}

.origem__img-frame {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--color-grip-dark);
}

.origem__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--trans-smooth);
}

.origem__img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    transparent 60%,
    rgba(15, 14, 13, 0.85) 100%
  );
  pointer-events: none;
}

.origem__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--color-text-main);
}

.origem__text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}

.origem__signature {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-skate-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 1px solid var(--color-grip-border);
}

/* --------------------------------------------------------------------------
   09. 06 · ESTOQUE / PRODUTOS (TRACK HORIZONTAL)
   -------------------------------------------------------------------------- */
/* Grade de 4 Categorias Clicáveis (Pedido direto do Rodrigo) */
.categorias__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

@media (min-width: 600px) {
  .categorias__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .categorias__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cat-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-grip-dark);
  border: 1px solid var(--color-grip-border);
  transition: all 0.35s var(--trans-smooth);
  min-width: 0;
}

.cat-card:hover {
  border-color: rgba(184, 40, 48, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6), 0 0 24px rgba(184, 40, 48, 0.25);
}

.cat-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-grip-surface);
}

.cat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--trans-smooth);
}

.cat-card:hover .cat-card__media img {
  transform: scale(1.04);
}

.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(15, 14, 13, 0.85) 100%
  );
  pointer-events: none;
}

.cat-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.cat-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.cat-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.cat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-skate-light);
}

.cat-card__cta svg {
  width: 13px;
  height: 13px;
  transition: transform 0.25s var(--trans-smooth);
}

.cat-card:hover .cat-card__cta svg {
  transform: translate(3px, -3px);
}

.estoque {
  overflow: hidden;
}

.estoque__slider-wrap {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-block: 20px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

@media (min-width: 1200px) {
  .estoque__slider-wrap {
    overflow: visible;
  }
}

.estoque__track {
  display: flex;
  gap: 24px;
  padding-inline: var(--container-padding);
  width: max-content;
}

.estoque-card {
  position: relative;
  flex: 0 0 320px;
  height: clamp(380px, 55vh, 520px);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-grip-dark);
  border: 1px solid var(--color-grip-border);
  scroll-snap-align: start;
  transition: transform 0.4s var(--trans-smooth), border-color 0.4s var(--trans-smooth);
}

@media (min-width: 768px) {
  .estoque-card {
    flex: 0 0 380px;
  }
}

.estoque-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 40, 48, 0.4);
}

.estoque-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--trans-smooth);
}

.estoque-card:hover .estoque-card__img {
  transform: scale(1.05);
}

.estoque-card__tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(15, 14, 13, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-grip-border-light);
  border-radius: var(--radius-sticker);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text-main);
  text-transform: uppercase;
}

.estoque__mobile-hint {
  text-align: center;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
}

@media (min-width: 1200px) {
  .estoque__mobile-hint {
    display: none;
  }
}

.estoque__footer {
  text-align: center;
  margin-top: 48px;
}

/* --------------------------------------------------------------------------
   10. 07 · AVALIAÇÕES — ESTEIRA AUTOMÁTICA SOFISTICADA
   -------------------------------------------------------------------------- */
.avaliacoes {
  background: rgba(20, 18, 16, 0.3);
  border-block: 1px solid var(--color-grip-border);
  overflow: hidden;
}

.avaliacoes__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avaliacoes__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: var(--color-grip-surface);
  border: 1px solid var(--color-grip-border);
  border-radius: 9999px;
  margin-bottom: 16px;
}

.google-icon {
  width: 18px;
  height: 18px;
}

.google-icon svg {
  width: 100%;
  height: 100%;
}

.avaliacoes__badge-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text-main);
}

.avaliacoes__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.star-icon {
  width: 22px;
  height: 22px;
  color: var(--color-maple-light);
}

.avaliacoes__score {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--color-text-main);
  margin-bottom: 14px;
}

.avaliacoes__sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Esteira Wrapper & Tracks */
.esteira-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.esteira-row {
  width: 100%;
  overflow: hidden;
}

.esteira-track {
  display: flex;
  width: max-content;
  user-select: none;
  will-change: transform;
}

.esteira-track__inner {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  flex: 0 0 auto;
}

/* Animação com GPU Transform Translate3d e medição dinâmica em JS */
.esteira-track--left {
  animation: marqueeLeft 26s linear infinite;
}

.esteira-track--right {
  animation: marqueeRight 34s linear infinite;
}

@media (max-width: 768px) {
  .esteira-track--left {
    animation-duration: 20s;
  }
  .esteira-track--right {
    animation-duration: 26s;
  }
}

.esteira-wrapper:hover .esteira-track {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-1 * var(--esteira-shift, 50%)), 0, 0); }
}

@keyframes marqueeRight {
  from { transform: translate3d(calc(-1 * var(--esteira-shift, 50%)), 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}

/* Review Card (Texto) */
.review-card {
  width: 380px;
  padding: 24px;
  background: var(--color-grip-surface);
  border: 1px solid var(--color-grip-border);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 auto;
  transition: border-color 0.3s var(--trans-smooth), transform 0.3s var(--trans-smooth);
}

@media (max-width: 768px) {
  .review-card {
    width: 300px;
    padding: 20px;
  }
}

.review-card:hover {
  border-color: rgba(201, 146, 63, 0.4);
  transform: translateY(-4px);
}

/* Feedback Card (Imagem) */
.feedback-card {
  position: relative;
  width: 300px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-grip-border);
  background: var(--color-grip-surface);
  flex: 0 0 auto;
  transition: border-color 0.3s var(--trans-smooth), transform 0.3s var(--trans-smooth);
}

@media (max-width: 768px) {
  .feedback-card {
    width: 260px;
  }
}

.feedback-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.feedback-card:hover {
  border-color: rgba(201, 146, 63, 0.4);
  transform: translateY(-4px);
}

.feedback-card__seal {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-main);
  background: rgba(15, 14, 13, 0.85);
  border: 1px solid var(--color-grip-border);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: var(--color-grip-dark);
  border: 1px solid var(--color-grip-border-light);
  color: var(--color-maple-light);
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card__name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.2;
}

.review-card__role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-text-muted);
}

.review-card__stars {
  color: var(--color-maple-light);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.review-card__footer {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(166, 158, 148, 0.6);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   11. 08 · LOJA FÍSICA + HORÁRIOS — SEM MAPA EMBEDADO
   -------------------------------------------------------------------------- */
.loja__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .loja__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
  }
}

.loja__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--color-text-main);
}

.loja__address-main {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--color-text-main);
  line-height: 1.5;
  margin-bottom: 6px;
}

.loja__address-ref {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.loja__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(43, 212, 119, 0.08);
  border: 1px solid rgba(43, 212, 119, 0.3);
  border-radius: 9999px;
  margin-bottom: 32px;
}

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

.status-dot--open {
  background: var(--color-status-open);
  box-shadow: 0 0 10px var(--color-status-open);
  animation: pulseOpen 2s infinite ease-in-out;
}

.status-dot--closed {
  background: var(--color-status-closed);
  box-shadow: 0 0 10px var(--color-status-closed);
}

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

.status-text {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-status-open);
}

.loja__buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 600px) {
  .loja__buttons {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Horários */
.hours-card {
  background: var(--color-grip-dark);
  border: 1px solid var(--color-grip-border);
  border-radius: var(--radius-card);
  padding: 24px;
}

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

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  transition: all 0.2s var(--trans-smooth);
}

.hours-row__day {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-muted);
}

.hours-row__time {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-main);
}

.hours-row__time--closed {
  color: var(--color-skate-light);
}

/* Destaque do dia atual (recurso elogiado pelo cliente) */
.hours-row.is-today {
  background: rgba(184, 40, 48, 0.12);
  border-left: 3px solid var(--color-skate-light);
}

.hours-row.is-today .hours-row__day {
  color: var(--color-text-main);
  font-weight: 700;
}

.hours-row.is-today .hours-row__time {
  color: var(--color-maple-light);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   12. 09 · CTA FINAL + FOOTER
   -------------------------------------------------------------------------- */
.cta-final__header {
  text-align: center;
  margin-bottom: clamp(36px, 6vw, 64px);
}

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--color-text-main);
  margin-top: 10px;
}

.cta-final__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  .cta-final__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 48px);
  background: rgba(184, 40, 48, 0.06);
  border: 1px solid rgba(184, 40, 48, 0.25);
  border-radius: var(--radius-card);
  transition: all 0.35s var(--trans-smooth);
}

.cta-box:hover {
  background: rgba(184, 40, 48, 0.14);
  border-color: var(--color-skate-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(184, 40, 48, 0.25);
}

.cta-box__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-maple-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.cta-box__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  color: var(--color-text-main);
  line-height: 1.1;
  margin-bottom: 10px;
}

.cta-box__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 380px;
  line-height: 1.5;
}

.cta-box__arrow {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(15, 14, 13, 0.8);
  border: 1px solid var(--color-grip-border-light);
  color: var(--color-skate-light);
  flex-shrink: 0;
  transition: all 0.3s var(--trans-smooth);
}

.cta-box__arrow svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--trans-smooth);
}

.cta-box:hover .cta-box__arrow {
  background: var(--color-skate-red);
  color: #FFFFFF;
  border-color: var(--color-skate-light);
}

.cta-box:hover .cta-box__arrow svg {
  transform: translate(3px, -3px);
}

/* Footer */
.footer {
  border-top: 1px solid var(--color-grip-border);
  padding-top: 64px;
  padding-bottom: 40px;
  background: var(--color-asfalto-deep);
}

.footer__main {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer__main {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-grip-border-light);
}

.footer__brand-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--color-text-main);
  display: block;
  margin-bottom: 4px;
}

.footer__brand-address,
.footer__brand-phone {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer__socials-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-maple-light);
  display: block;
  margin-bottom: 12px;
}

.footer__socials-links {
  display: flex;
  gap: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--color-grip-dark);
  border: 1px solid var(--color-grip-border);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-text-main);
}

.social-link svg {
  width: 16px;
  height: 16px;
  color: var(--color-skate-light);
}

.social-link:hover {
  border-color: var(--color-skate-red);
  background: rgba(184, 40, 48, 0.1);
  transform: translateY(-2px);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(155, 147, 138, 0.08);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
}

.credits-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-maple-light);
  padding: 4px 10px;
  background: rgba(201, 146, 63, 0.08);
  border: 1px solid rgba(201, 146, 63, 0.25);
  border-radius: var(--radius-pill);
}

/* --------------------------------------------------------------------------
   13. BOTÃO FLUTUANTE DO WHATSAPP
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  pointer-events: none;
  transition: opacity 0.35s var(--trans-smooth), transform 0.35s var(--trans-smooth);
}

.whatsapp-float.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.whatsapp-float__link {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0, 0, 0, 0.4);
  position: relative;
}

.whatsapp-float__link:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__icon {
  width: 28px;
  height: 28px;
  animation: pulseIcon 3s infinite ease-in-out;
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 68px;
  background: var(--color-grip-surface);
  color: var(--color-text-main);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-grip-border);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s var(--trans-smooth);
}

.whatsapp-float__link:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------------------------------------------------------------
   14. REDUCED MOTION (OBRIGATÓRIO)
   -------------------------------------------------------------------------- */
@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;
  }

  [data-scroll] {
    opacity: 1 !important;
    transform: none !important;
  }

  .esteira-track {
    animation: none !important;
  }

  .esteira-wrapper {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero__scroll-line::after {
    animation: none !important;
  }

  .status-dot--open {
    animation: none !important;
  }
}
