/* ==========================================================================
   PROSTICK — MINIMALIST EDITORIAL DESIGN SYSTEM (E-Force Aesthetic Standard)
   ========================================================================== */

/* 1. COLOR PALETTE & DESIGN TOKENS */
:root {
  /* Clean Premium High-End Palette (Pitch Black, Crisp White, Charcoal & Electric Cobalt Accent) */
  --bg-black: #000000;
  --bg-deep: #08080a;
  --bg-card: #101014;
  --bg-card-hover: #16161c;
  --bg-nav: rgba(0, 0, 0, 0.92);

  /* Primary Accent Colors (Unified Royal Cobalt Blue Palette) */
  --brand-blue: #2563EB;
  --brand-blue-light: #3B82F6;
  --brand-blue-hover: #1D4ED8;
  --brand-red: #E5121B;
  --accent-blue: #3B82F6;

  /* Global UI Accent Tokens */
  --accent-wood: var(--brand-blue);
  --accent-wood-light: #60A5FA;

  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;

  --border-dark: #1c1c22;
  --border-light: #2c2c34;

  /* Typography */
  --font-heading: 'Sora', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing & Sizes */
  --container-width: 1280px;
  --header-height: 80px;
  --radius-none: 0px;
  --radius-sm: 4px;
  --radius-md: 8px;

  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. GLOBAL RESET & BASE STYLES */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-black);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-black);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-smooth);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* Typography Helpers */
.title-large {
  font-family: var(--font-heading);
  font-size: 4.0rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text-primary);
}

.title-medium {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.title-small {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
}

.text-muted {
  color: var(--text-secondary);
}

.text-wood {
  color: var(--accent-wood);
}

/* Minimalist Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--text-primary);
  color: #000;
}

.btn-primary:hover {
  background: #e5e5ea;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.btn-full {
  width: 100%;
}

/* 3. HEADER & NAVIGATION (Minimalist Black Bar Style) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  z-index: 1000;
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header-globe-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.35rem;
  /* Globo minimalista em destaque */
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.header-globe-btn:hover {
  opacity: 0.8;
  transform: scale(1.08);
  color: var(--accent-wood-light);
}

.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand-logo-img:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

/* Menu Toggle Button (Oculto no Desktop, visível apenas no Mobile) */
.menu-toggle-btn {
  display: none !important;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: opacity 0.3s ease, color 0.3s ease;
}

.menu-toggle-btn i {
  font-size: 1.15rem;
}

.menu-toggle-btn:hover {
  opacity: 0.8;
  color: var(--accent-wood-light);
}

/* Cart Icon Button */
.cart-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 1.1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.cart-icon-btn:hover {
  opacity: 0.8;
}

.cart-count-pill {
  background: var(--accent-wood);
  color: #000000;
  padding: 2px 7px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-mono);
}

/* NAV DRAWER SLIDE-OVER MENU */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: -380px;
  width: 380px;
  max-width: 85vw;
  height: 100vh;
  background: #0a0a0c;
  border-left: 1px solid var(--border-dark);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.9);
}

.nav-drawer.active {
  transform: translateX(-380px);
}

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-dark);
}

.nav-drawer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #ffffff;
}

.nav-drawer-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.nav-drawer-close:hover {
  color: var(--accent-wood);
}

.nav-drawer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}

.nav-drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.nav-drawer-link i {
  font-size: 1rem;
  color: var(--accent-wood);
  width: 24px;
  text-align: center;
}

.nav-drawer-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

.nav-drawer-footer {
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
}

.nav-lang-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.nav-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* REGION / LANGUAGE MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.region-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 420px;
  max-width: 90vw;
  background: #121215;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  z-index: 1250;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
}

.region-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.region-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-dark);
}

.region-modal-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.region-modal-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
}

.region-modal-close:hover {
  color: #ffffff;
}

.region-modal-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.region-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: #18181c;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.region-option:hover,
.region-option.active {
  background: #24242a;
  border-color: var(--accent-wood);
}

.region-flag {
  font-size: 1.2rem;
}

.region-name {
  flex: 1;
}

.check-icon {
  color: var(--accent-wood);
}

/* 4. HERO SECTION (FULL VIDEO BACKGROUND) */
.hero-section {
  min-height: 96vh;
  padding-top: var(--header-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark);
  background-color: #000000;
}

.hero-bg-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(0.6) contrast(1.1);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.45) 45%,
      rgba(0, 0, 0, 0.95) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-headline {
  position: relative;
  z-index: 10;
  max-width: 920px;
  padding: 0 24px;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease;
}

.scroll-hint:hover {
  color: var(--text-primary);
}

.arrow-down-icon {
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

.hero-tagline {
  margin-top: 24px;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* 5. INTRO BRIEF & VIDEO DEMO SECTION */
.intro-brief-section {
  padding: 120px 32px 48px;
  background-color: var(--bg-black);
}

.intro-video-section {
  padding: 0 32px 100px;
  background-color: var(--bg-black);
  border-bottom: 1px solid var(--border-dark);
}

.intro-video-container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.intro-video-card {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card, #121212);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.intro-video-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.intro-video-card video {
  width: 100%;
  height: auto;
  max-height: 720px;
  display: block;
  object-fit: cover;
  object-position: center 70%;
}

.intro-video-controls {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.intro-video-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary, #ffffff);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.intro-video-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  transform: scale(1.08);
}

.intro-brief-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
  text-align: left;
}

.intro-brief-left {
  flex: 1 1 48%;
  max-width: 580px;
}

.intro-brief-right {
  flex: 1 1 52%;
  max-width: 580px;
  padding-top: 6px;
}

.intro-brief-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--accent-wood);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}

.intro-brief-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.intro-brief-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

@media (max-width: 868px) {
  .intro-brief-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .intro-brief-left,
  .intro-brief-right {
    max-width: 100%;
    flex: none;
  }

  .intro-brief-right {
    border-left: none;
    padding-left: 0;
  }

  .intro-brief-title {
    font-size: 1.9rem;
  }
}

/* CATALOG GRID */
.catalog-section {
  padding: 60px 32px 100px;
  background-color: #0A0A0A;
}

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

/* MAIN CATEGORY TABS (HIGH-END SEGMENTED CONTROL SWITCH) */
.catalog-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.catalog-main-tabs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: rgba(18, 18, 22, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
}

.catalog-main-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 80px;
  color: #8E8E93;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  user-select: none;
}

.catalog-main-tab i {
  font-size: 1.05rem;
  color: #636366;
  transition: color 0.3s ease, transform 0.3s ease;
}

.main-tab-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #8E8E93;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.catalog-main-tab:hover {
  color: #FFFFFF;
}

.catalog-main-tab:hover i {
  color: var(--brand-blue-light);
  transform: scale(1.1);
}

.catalog-main-tab.active {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(29, 78, 216, 0.95) 100%);
  border-color: rgba(96, 165, 250, 0.4);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.catalog-main-tab.active i {
  color: #FFFFFF;
}

.catalog-main-tab.active .main-tab-badge {
  background: rgba(255, 255, 255, 0.25);
  border-color: transparent;
  color: #FFFFFF;
}

.catalog-filters.hidden {
  display: none !important;
}

/* FILTER PILLS */
.catalog-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  position: relative;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  color: #A1A1AA;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-red) 100%);
  opacity: 0;
  border-radius: 30px;
  z-index: -1;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.08);
}

.filter-btn.active {
  border-color: transparent;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
  transform: translateY(-1px);
}

.filter-btn.active::before {
  opacity: 1;
}

/* CATALOG GRID (4 COLUNAS PARA BAQUETAS / 3 COLUNAS PARA CAIXAS DE BATERIA) */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}



.catalog-card {
  background: #111113;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), background-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.catalog-card:hover {
  background: #17171a;
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.8), 0 0 16px rgba(255, 255, 255, 0.02);
}

.card-media {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.015);
  transition: background 0.3s ease;
}

.catalog-card:hover .card-media {
  background: rgba(255, 255, 255, 0.035);
}

.card-media img {
  max-height: 140px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.7));
  transition: transform var(--transition-smooth);
}

.catalog-card:hover .card-media img {
  transform: scale(1.06) rotate(-2deg);
}

.card-zoom-trigger {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.catalog-card:hover .card-zoom-trigger {
  opacity: 1;
  background: var(--brand-blue);
  color: #ffffff;
  transform: scale(1.1);
}

.card-code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #71717A;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.card-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.card-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #A1A1AA;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
}

.card-tag-signature {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.4);
  color: #60A5FA;
  font-weight: 600;
}

.card-view-details-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  cursor: pointer;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.card-view-details-btn i {
  color: #60A5FA;
  font-size: 0.75rem;
}

.card-view-details-btn:hover {
  color: #ffffff;
}

.card-view-details-btn:hover i {
  transform: translateX(2px);
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.card-price {
  font-family: var(--font-mono);
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
}

.card-add-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card-add-btn:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(0, 82, 196, 0.4);
}

/* CONTAINER E BOTÃO VER MAIS BAQUETAS */
.catalog-load-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 52px;
  gap: 16px;
}

.load-more-counter {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.load-more-btn:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(229, 18, 27, 0.4);
}

.load-more-btn i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.load-more-btn:hover i {
  transform: translateY(3px);
}

.load-more-btn.hidden {
  display: none;
}

@media (max-width: 1200px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-brief-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

.metrics-horizontal-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.product-actions-bar {
  display: flex;
  align-items: center;
  gap: 20px;
}

.price-tag-large {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

/* 6. BIG EDITORIAL STATEMENT BANNER (Identical to E-Force Text Statement) */
.statement-banner {
  padding: 140px 32px;
  text-align: center;
  border-bottom: 1px solid var(--border-dark);
  background: var(--bg-deep);
}

.statement-text {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.statement-highlight {
  color: #60A5FA;
}

/* 7. CATEGORY NAVIGATION GRID (E-Force Bottom Link Blocks) */
.category-nav-section {
  padding: 100px 32px;
  max-width: var(--container-width);
  margin: 0 auto;
  border-bottom: 1px solid var(--border-dark);
}

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

.category-nav-card {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
}

.category-nav-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
}

.category-nav-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.category-nav-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.link-arrow {
  color: var(--accent-wood);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category-nav-card:hover .link-arrow {
  color: var(--text-primary);
  transform: translateX(6px);
}

/* 8. AUDIO LAB & CUSTOMIZER (CLEAN MINIMALIST EDITORIAL) */
.tool-section {
  padding: 100px 32px;
  max-width: var(--container-width);
  margin: 0 auto;
  border-bottom: 1px solid var(--border-dark);
}

.tool-header {
  margin-bottom: 48px;
}

.tool-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 48px;
  border-radius: var(--radius-md);
}

.selector-buttons-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tool-selector-btn {
  padding: 12px 20px;
  background: var(--bg-deep);
  border: 1px solid var(--border-dark);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-smooth);
}

.tool-selector-btn:hover,
.tool-selector-btn.active {
  background: var(--text-primary);
  color: #000;
  border-color: var(--text-primary);
  font-weight: 700;
}

#visualizer-canvas {
  width: 100%;
  height: 180px;
  background: #000000;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
}

/* Customizer Render Box */
.customizer-preview-box {
  background: #000000;
  border: 1px solid var(--border-dark);
  padding: 40px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.stick-render-shadow {
  position: absolute;
  bottom: 20px;
  width: 75%;
  height: 12px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.9) 0%, transparent 70%);
}

.stick-graphic {
  width: 85%;
  height: 26px;
  display: flex;
  align-items: center;
  position: relative;
  transform: rotate(-3deg);
  transition: all 0.3s ease;
}

.stick-body {
  position: absolute;
  inset: 0;
  background: #d4a373;
  border-radius: 4px 10px 10px 4px;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3), inset 0 -3px 4px rgba(0, 0, 0, 0.6);
}

.stick-grip {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 35%;
  background: transparent;
  border-radius: 4px 0 0 4px;
}

.stick-engraving {
  position: absolute;
  left: 40%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.75);
  white-space: nowrap;
}

.stick-tip {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 12px;
  background: #d4a373;
  border-radius: 50% 30% 30% 50%;
}

.input-clean {
  width: 100%;
  padding: 14px;
  background: var(--bg-deep);
  border: 1px solid var(--border-dark);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

/* 9. SPECS COMPARISON TABLE */
.table-section {
  padding: 100px 32px;
  max-width: var(--container-width);
  margin: 0 auto;
  border-bottom: 1px solid var(--border-dark);
}

.table-clean {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.table-clean th {
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-dark);
}

.table-clean td {
  padding: 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-dark);
}

.table-clean tr:hover td {
  background: var(--bg-card-hover);
}

/* 10. FOOTER */
.footer {
  padding: 80px 32px 40px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.footer-col ul li a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* 11. CART DRAWER & MODAL */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 100%;
  height: 100%;
  background: #09090b;
  border-left: 1px solid var(--border-dark);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 32px;
}

.cart-footer {
  padding: 32px;
  border-top: 1px solid var(--border-dark);
  background: #000;
}

.toast-container {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 3000;
}

.toast {
  padding: 14px 24px;
  background: #18181b;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

/* 12. SCROLL ANIMATION SYSTEM */
[data-scroll] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll].visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* 13. RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
  .title-large {
    font-size: 3.2rem;
  }

  .product-row-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .metrics-horizontal-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-nav-grid,
  .tool-layout-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
  }
}

/* ==========================================================================
   14. SPLASH LOADING SCREEN
   ========================================================================== */
body.splash-active {
  overflow: hidden !important;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background-color: #0D0D0D;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
  user-select: none;
}

.splash-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0D0D0D;
}

.splash-video-wrapper video {
  width: 75%;
  max-width: 440px;
  max-height: 55vh;
  object-fit: contain;
  display: block;
}

.splash-controls {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 10;
}

.splash-skip-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.splash-skip-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--brand-red);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(229, 18, 27, 0.3);
}

.splash-skip-btn i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.splash-skip-btn:hover i {
  transform: translateX(3px);
}

.splash-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 10;
}

.splash-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-red) 100%);
  box-shadow: 0 0 14px rgba(0, 82, 196, 0.6), 0 0 14px rgba(229, 18, 27, 0.4);
  transition: width 0.1s linear;
}

@media (max-width: 768px) {
  .splash-video-wrapper video {
    width: 85%;
    max-width: 280px;
  }

  .splash-controls {
    top: 20px;
    right: 20px;
  }

  .splash-skip-btn {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  .header-inner {
    padding: 0 16px;
  }

  .brand-logo-img {
    height: 36px;
    max-width: 190px;
  }

  .header-right {
    gap: 12px;
  }

  .menu-toggle-btn {
    display: inline-flex !important;
  }
}

/* ==========================================================================
   LIGHTBOX MODAL DE PRODUTO & ZOOM (REFINADO E PREMIUM)
   ========================================================================== */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  width: 94%;
  max-width: 960px;
  max-height: 90vh;
  background: linear-gradient(180deg, #0e0e12 0%, #08080b 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.85), 0 0 50px rgba(37, 99, 235, 0.15);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  overflow: hidden;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.lightbox-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 25;
  transition: all 0.25s ease;
}

.lightbox-close-btn:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: #ef4444;
  color: #ef4444;
  transform: rotate(90deg) scale(1.05);
}

.lightbox-content {
  display: grid;
  grid-template-columns: 340px 1fr;
  max-height: 90vh;
  overflow: hidden;
  gap: 0;
}

.lightbox-media-column {
  background: radial-gradient(circle at 50% 45%, rgba(37, 99, 235, 0.18) 0%, rgba(15, 23, 42, 0.35) 55%, #050507 90%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.lightbox-stage-container {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.lightbox-stage {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: transparent;
  border: none;
  padding: 10px;
}

.lightbox-stage.zoomed {
  cursor: grab;
}

.lightbox-stage.zoomed:active {
  cursor: grabbing;
}

.lightbox-img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center center;
  user-select: none;
  pointer-events: auto;
}

.lightbox-zoom-bar {
  margin-top: 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.zoom-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.zoom-badge.zoomed {
  color: #60A5FA;
  font-weight: 600;
}

.lightbox-zoom-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.zoom-btn {
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.zoom-btn-icon {
  width: 28px;
  padding: 0;
  border-radius: 50%;
}

.zoom-btn-reset {
  padding: 0 10px;
  border-radius: 999px;
}

.zoom-btn:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  transform: translateY(-1px);
}

.zoom-level-indicator {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: #60A5FA;
  min-width: 42px;
  text-align: center;
  user-select: none;
}

.lightbox-details-column {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  max-height: 90vh;
}

.lightbox-details-column::-webkit-scrollbar {
  width: 6px;
}

.lightbox-details-column::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.lightbox-details-column::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}

.lightbox-header-meta {
  margin-bottom: 2px;
}

.lightbox-code {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: #60A5FA;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.lightbox-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 10px;
}

.lightbox-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lightbox-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

.lightbox-specs-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 16px 18px;
  transition: all 0.3s ease;
}

.specs-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.specs-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #60A5FA;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.specs-toggle-btn {
  background: transparent;
  border: none;
  color: #60A5FA;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.specs-toggle-btn:hover {
  background: rgba(96, 165, 250, 0.12);
}

.specs-toggle-icon {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-specs-card.collapsed .specs-toggle-icon {
  transform: rotate(180deg);
}

.lightbox-specs-card .specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 12px;
  margin-top: 12px;
  max-height: 1200px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, margin 0.25s ease;
}

.lightbox-specs-card.collapsed .specs-grid {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  pointer-events: none;
}

.spec-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.spec-row.highlight-spec-row {
  grid-column: 1 / -1;
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.1);
}

.spec-row.highlight-spec-row .spec-label {
  color: #60A5FA;
  font-weight: 600;
}

.spec-row.highlight-spec-row .spec-value {
  color: #ffffff;
}

.spec-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-label {
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.spec-value {
  font-family: var(--font-mono);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
}

.lightbox-qty-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.qty-box-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lightbox-footer-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.lightbox-price-wrapper {
  display: flex;
  flex-direction: column;
}

.price-sublabel {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
}

.lightbox-price {
  font-family: var(--font-mono);
  font-size: 1.55rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.lightbox-add-cart-btn {
  flex: 1;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: none;
}

.lightbox-add-cart-btn:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  transform: translateY(-2px);
  box-shadow: none;
}

@media (max-width: 768px) {
  .lightbox-content {
    grid-template-columns: 1fr;
    max-height: 85vh;
  }

  .lightbox-media-column {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 16px;
  }

  .lightbox-stage {
    min-height: 240px;
    height: 240px;
  }

  .lightbox-details-column {
    padding: 20px 18px 24px;
  }

  .lightbox-footer-action {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .lightbox-add-cart-btn {
    width: 100%;
  }
}

/* ==========================================================================
   SEÇÃO DE CONTATO, REVENDA & PARCERIAS (CTA)
   ========================================================================== */
.contact-cta-section {
  padding: 100px 32px;
  background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.14) 0%, #08090e 65%, #040406 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-cta-container {
  max-width: var(--container-width);
  margin: 0 auto;
  text-align: center;
}

.contact-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: #60A5FA;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.contact-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 820px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 48px;
  text-align: left;
}

.contact-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.contact-card.highlight {
  border-color: rgba(37, 99, 235, 0.35);
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.contact-card.highlight:hover {
  border-color: rgba(96, 165, 250, 0.6);
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.16) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.14);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #60A5FA;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-card.highlight .contact-card-icon {
  background: rgba(37, 99, 235, 0.25);
  border-color: rgba(96, 165, 250, 0.5);
  color: #ffffff;
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.contact-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #60A5FA;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-card-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.contact-action {
  display: flex;
  justify-content: center;
}

.contact-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 14px;
}

@media (max-width: 992px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-title {
    font-size: 2rem;
  }
}

/* ==========================================================================
   ARTISTAS ENDORSERS PATROCINADOS (CARROSSEL MANUAL ALINHADO À ESQUERDA)
   ========================================================================== */
.endorsers-section {
  padding: 80px 32px;
  background-color: #08080c;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  overflow: visible;
}

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

.endorsers-header-carousel {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  text-align: left;
}

.endorsers-carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-nav-btn:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #FFFFFF;
  transform: scale(1.08);
}

.endorsers-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 16px 8px 24px 8px;
  margin-left: -8px;
  margin-right: -8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.endorsers-carousel-track::-webkit-scrollbar {
  display: none;
}

.artist-carousel-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: #111116;
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.artist-carousel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 24px rgba(37, 99, 235, 0.15);
}

.artist-card-media {
  height: 195px;
  position: relative;
  background: #16161c;
  overflow: hidden;
}

.artist-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60A5FA;
  font-size: 3rem;
  background: radial-gradient(circle at center, #1e1e28 0%, #111116 100%);
}

.artist-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
  z-index: 2;
}

.artist-card-img.logo-card-img {
  object-fit: contain;
  object-position: center;
  padding: 24px;
}

.artist-carousel-card:hover .artist-card-img {
  transform: scale(1.06);
}

.artist-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(37, 99, 235, 0.4);
  color: #60A5FA;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.artist-card-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.artist-card-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 3px;
  text-align: left;
}

.artist-card-role {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: #60A5FA;
  display: block;
  margin-bottom: 10px;
  text-align: left;
}

.artist-card-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 18px;
  text-align: left;
}

.artist-card-instagram {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-start;
  text-align: left;
  transition: color 0.2s ease;
}

.artist-card-instagram:hover {
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .artist-carousel-card {
    flex: 0 0 280px;
  }

  .endorsers-header-carousel {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ==========================================================================
   POLÍTICA DE FRETE GRÁTIS (6+ PARES) & SELETOR DE QUANTIDADE
   ========================================================================== */

/* BANNER DE FRETE ACIMA DO CATÁLOGO */
.shipping-policy-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(16, 16, 20, 0.95) 0%, rgba(26, 26, 36, 0.95) 100%);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 12px;
  padding: 16px 22px;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.policy-icon-badge {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-red) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(0, 82, 196, 0.4);
}

.policy-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.policy-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  color: #ffffff;
}

.policy-tag {
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.4);
  color: #60A5FA;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.policy-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* SELETOR DETALHADO DE QUANTIDADE NO LIGHTBOX */
.lightbox-qty-box {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qty-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.qty-box-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-shipping-badge {
  display: none;
}

.qty-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.qty-option-card {
  position: relative;
  background: rgba(255, 255, 255, 0.035);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 14px;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.qty-option-card:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.5);
  background: rgba(96, 165, 250, 0.06);
}

.qty-option-card.active {
  border-color: #3b82f6;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(37, 99, 235, 0.08) 100%);
  box-shadow: none;
}

.qty-opt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.qty-opt-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
}

.qty-opt-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(90deg, #2563eb, #dc2626);
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.qty-opt-unit-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
}

.qty-opt-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 10px;
}

.qty-opt-price {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 800;
  color: #60A5FA;
  margin-top: auto;
}

.qty-stepper-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 8px 14px;
}

.stepper-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.stepper-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stepper-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: bold;
  transition: all 0.2s ease;
  user-select: none;
}

.stepper-btn:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: scale(1.05);
}

.stepper-input {
  width: 40px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  outline: none;
  -moz-appearance: textfield;
}

.stepper-input::-webkit-outer-spin-button,
.stepper-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.stepper-unit-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* STATUS DO FRETE */
.qty-shipping-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.qty-shipping-status.success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ADE80;
}

.qty-shipping-status.notice {
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.3);
  color: #FACC15;
}

.status-icon {
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* TRACKER DE FRETE NO DRAWER DE CARRINHO */
.cart-shipping-tracker {
  background: #141418;
  border-bottom: 1px solid var(--border-dark);
  padding: 14px 20px;
}

.tracker-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.tracker-pairs-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #60A5FA;
  background: rgba(37, 99, 235, 0.15);
  padding: 2px 8px;
  border-radius: 10px;
}

.tracker-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.tracker-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-red) 100%);
  border-radius: 10px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   MODAL DE RELATÓRIO FINAL DO PEDIDO & CHECKOUT VIA WHATSAPP
   ========================================================================== */
.order-report-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 92%;
  max-width: 1040px;
  max-height: 90vh;
  background: #0d0d12;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.85);
  overflow: hidden;
}

.order-report-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.order-report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: #121218;
  border-bottom: 1px solid var(--border-dark);
}

.order-report-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.order-report-brand-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-blue-light);
}

.order-report-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
}

.order-report-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #a1a1aa;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.order-report-close:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.4);
}

.order-report-body {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  overflow-y: auto;
  max-height: calc(90vh - 80px);
}

.order-report-col {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
}

.order-report-summary-col {
  background: #0f0f14;
  border-right: 1px solid var(--border-dark);
}

.order-report-form-col {
  background: #0d0d12;
}

.report-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-dark);
}

.report-section-header h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.report-section-header h4 i {
  color: var(--brand-blue-light);
}

.report-items-count-badge,
.report-form-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.15);
  color: var(--brand-blue-light);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.report-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 6px;
}

.report-item-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: #15151c;
  border: 1px solid var(--border-dark);
  border-radius: 10px;
}

.report-item-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: #1a1a24;
  border-radius: 6px;
  padding: 4px;
  flex-shrink: 0;
}

.report-item-details {
  flex: 1;
  min-width: 0;
}

.report-item-code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--brand-blue-light);
  font-weight: 700;
  display: block;
}

.report-item-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.report-item-specs {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.report-item-financial {
  text-align: right;
  flex-shrink: 0;
}

.report-item-qty {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 700;
  display: block;
}

.report-item-price {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: #60A5FA;
  font-weight: 700;
}

.report-financial-summary {
  margin-top: auto;
  background: #14141c;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.report-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.mono-val {
  font-family: var(--font-mono);
  font-weight: 700;
  color: #ffffff;
}

.shipping-tag-free {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: #4ADE80;
  background: rgba(74, 222, 128, 0.15);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.shipping-tag-calc {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: #FACC15;
  background: rgba(250, 204, 21, 0.15);
  padding: 3px 8px;
  border-radius: 6px;
}

.report-summary-divider {
  height: 1px;
  background: var(--border-dark);
  margin: 4px 0;
}

.total-row {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.total-val {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 800;
  color: #60A5FA;
}

/* FORMULÁRIO DE CHECKOUT */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label i {
  color: var(--brand-blue-light);
}

.form-group input,
.checkout-select {
  width: 100%;
  padding: 11px 14px;
  background: #14141c;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.checkout-select:focus {
  border-color: var(--brand-blue);
  background: #181824;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.checkout-select option {
  background: #14141c;
  color: #ffffff;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-row-2col.flex-2-1 {
  grid-template-columns: 2fr 1fr;
}

.order-report-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.btn-send-whatsapp {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 20px -4px rgba(37, 211, 102, 0.4);
  border: none;
}

.btn-send-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -4px rgba(37, 211, 102, 0.6);
  filter: brightness(1.08);
}

.btn-send-whatsapp i {
  font-size: 1.3rem;
}

.btn-back-cart {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-back-cart:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

@media (max-width: 860px) {
  .order-report-body {
    grid-template-columns: 1fr;
  }

  .order-report-summary-col {
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
  }

  .form-row-2col,
  .form-row-2col.flex-2-1 {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   REFINAMENTO DE USABILIDADE MÓBILE & RESPONSIVIDADE (Mobile First & Touch UX)
   ========================================================================== */

/* Prevenção de transbordamento horizontal global */
html,
body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  -webkit-tap-highlight-color: transparent;
}

/* 1. MEDIA QUERY — TABLETS & SMARTPHONES GRANDES (max-width: 768px) */
@media (max-width: 768px) {

  /* HEADER & NAVEGAÇÃO */
  .header {
    height: 64px;
  }

  .header-inner {
    padding: 0 16px;
  }

  .brand-logo-img {
    height: 38px !important;
  }

  .header-globe-btn,
  .cart-icon-btn,
  .menu-toggle-btn {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
  }

  .menu-toggle-btn span {
    display: none;
    /* Mantém apenas o ícone de hambúrguer para economizar espaço */
  }

  /* HERO SECTION (MÓBILE AMPLIADO & CINEMÁTICO) */
  .hero-section {
    min-height: 88vh;
    padding-top: 110px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .title-large {
    font-size: clamp(2.4rem, 8.5vw, 3.8rem);
    letter-spacing: -1.2px;
    line-height: 1.1;
  }

  .hero-tagline {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 90%;
  }

  .scroll-hint {
    bottom: 40px;
    font-size: 0.85rem;
  }

  /* BREVE INTRODUÇÃO & VÍDEO DEMO */
  .intro-brief-section {
    padding: 64px 24px 32px;
  }

  .intro-video-section {
    padding: 0 24px 64px;
  }

  .intro-video-card {
    border-radius: 14px;
  }

  .intro-video-controls {
    bottom: 16px;
    right: 16px;
    gap: 8px;
  }

  .intro-video-btn {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .intro-brief-container {
    gap: 24px;
  }

  .intro-brief-title {
    font-size: 1.8rem;
    line-height: 1.25;
  }

  /* SEÇÃO CATÁLOGO & BARRA DE FILTROS SLIDER POR TOQUE */
  .catalog-section {
    padding: 40px 16px;
  }

  .catalog-tabs-wrapper {
    margin-bottom: 24px;
    width: 100%;
  }

  .catalog-main-tabs {
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    padding: 4px;
    gap: 4px;
    border-radius: 60px;
  }

  .catalog-main-tab {
    flex: 1;
    justify-content: center;
    padding: 10px 14px;
    font-size: 0.85rem;
    gap: 6px;
    border-radius: 40px;
  }

  .catalog-main-tab i {
    font-size: 0.95rem;
  }

  .main-tab-badge {
    font-size: 0.68rem;
    padding: 1px 6px;
  }

  .catalog-filters {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 6px 16px 14px 16px;
    margin: 0 -16px 24px -16px;
    width: calc(100% + 32px);
    max-width: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }

  .catalog-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 18px;
    font-size: 0.82rem;
    border-radius: 20px;
  }

  /* GRID DE PRODUTOS — 2 COLUNAS RESPONSIVAS */
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .catalog-card {
    padding: 12px;
    border-radius: 12px;
  }

  .card-media {
    height: 150px;
  }

  .card-code {
    font-size: 0.7rem;
  }

  .card-title {
    font-size: 0.88rem;
    line-height: 1.2;
    margin: 4px 0 6px;
  }

  .card-tags {
    gap: 4px;
  }

  .card-tag {
    font-size: 0.65rem;
    padding: 2px 6px;
  }

  .card-view-details-btn {
    font-size: 0.75rem;
    padding: 6px 10px;
    margin: 8px 0;
  }

  .card-price {
    font-size: 0.95rem;
  }

  .card-add-btn {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  /* ARTISTAS ENDORSERS CARROSSEL */
  .endorsers-section {
    padding: 48px 16px;
  }

  .endorsers-header-carousel {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .endorsers-title {
    font-size: 1.6rem;
  }

  .endorsers-carousel-track {
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .artist-carousel-card {
    width: 270px;
    scroll-snap-align: start;
  }

  /* SEÇÃO DE CONTATO & PARCERIAS */
  .contact-section {
    padding: 48px 16px;
  }

  .contact-title {
    font-size: 1.7rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .contact-main-btn {
    width: 100%;
    padding: 16px;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* LIGHTBOX / MODAL DO PRODUTO (BOTTOM-SHEET MÓBILE) */
  .lightbox-modal {
    width: 96%;
    max-height: 94vh;
    border-radius: 20px 20px 0 0;
    top: auto;
    bottom: 0;
    transform: translate(-50%, 0) scale(1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.9);
  }

  .lightbox-modal.active {
    transform: translate(-50%, 0) scale(1);
  }

  .lightbox-content {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 16px;
    max-height: calc(94vh - 20px);
    overflow-y: auto;
  }

  .lightbox-stage-container {
    height: 200px;
  }

  .lightbox-title {
    font-size: 1.3rem;
  }

  .lightbox-specs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .purchase-option-card {
    padding: 12px;
  }

  .lightbox-footer-action {
    flex-direction: column;
    gap: 12px;
  }

  .lightbox-add-cart-btn {
    width: 100%;
    height: 50px;
    font-size: 0.95rem;
  }

  /* MODAL DE RELATÓRIO DO PEDIDO & CHECKOUT WHATSAPP (MÓBILE) */
  .order-report-modal {
    width: 96%;
    max-height: 94vh;
    border-radius: 16px;
  }

  .order-report-header {
    padding: 16px 20px;
  }

  .order-report-title {
    font-size: 1.15rem;
  }

  .order-report-body {
    grid-template-columns: 1fr;
  }

  .order-report-col {
    padding: 18px 20px;
  }

  .report-items-list {
    max-height: 200px;
  }

  /* Prevenção de Auto-Zoom do iOS Safari em inputs */
  .form-group input,
  .checkout-select {
    font-size: 16px !important;
    padding: 12px 14px;
  }

  .btn-send-whatsapp {
    height: 52px;
    font-size: 1rem;
  }

  /* DRAWER DE CARRINHO FULLSCREEN EM MÓBILE */
  .cart-drawer {
    width: 100vw;
    max-width: 100vw;
  }
}

/* 2. MEDIA QUERY — SMARTPHONES COMPACTOS (max-width: 400px) */
@media (max-width: 400px) {
  .catalog-grid {
    grid-template-columns: 1fr;
    /* 1 coluna em telas extremamente pequenas */
  }

  .card-media {
    height: 180px;
  }

  .title-large {
    font-size: 1.9rem;
  }

  .form-row-2col,
  .form-row-2col.flex-2-1 {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   QUIZ RECOMENDADOR DE BAQUETAS (BANNER & MODAL)
   ========================================================================== */
.quiz-banner-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #08080c 0%, #101018 100%);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.quiz-banner-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.12) 0%, transparent 70%), #13131c;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 44px 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.quiz-banner-tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--brand-blue-light);
  background: rgba(37, 99, 235, 0.15);
  padding: 4px 12px;
  border-radius: 14px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.quiz-banner-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.quiz-banner-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* MODAL DO QUIZ */
.quiz-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 92%;
  max-width: 580px;
  background: #0f0f16;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.quiz-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.quiz-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #14141d;
  border-bottom: 1px solid var(--border-dark);
}

.quiz-modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quiz-modal-header h3 i {
  color: var(--brand-blue-light);
}

.quiz-modal-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #a1a1aa;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-modal-close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.quiz-modal-body {
  padding: 24px;
}

.quiz-step-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-blue-light);
  background: rgba(37, 99, 235, 0.15);
  padding: 3px 10px;
  border-radius: 10px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  display: inline-block;
  margin-bottom: 12px;
}

.quiz-step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.quiz-options-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-option-btn {
  width: 100%;
  padding: 14px 18px;
  background: #161622;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quiz-option-btn:hover {
  background: #1e1e2d;
  border-color: var(--brand-blue);
  transform: translateX(4px);
}

.quiz-option-btn i {
  color: var(--brand-blue-light);
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}