/* ==========================================================================
   LOS SANTOS GAMES | FINAL SURGICAL REFINEMENT (PORTFOLIO CASE DE AGÊNCIA)
   Developed by LEM Digital Studio
   ========================================================================== */

/* --- TOKENS DE DESIGN PREMIUM --- */
:root {
  /* Dark Colors */
  --bg-deep: #07090B;
  --bg-surface-1: #0D1115;
  --bg-surface-2: #141920;
  --bg-surface-3: #1B222B;
  --bg-overlay: rgba(7, 9, 11, 0.85);
  
  /* Accent Colors (Controlled Glow) */
  --color-grove-green: #00E676;
  --color-grove-dark: #12382B;
  --color-gta-gold: #FFD700;
  --color-gta-orange: #FF8F00;
  --color-ammu-red: #FF3D00;
  --color-star-yellow: #FFEA00;
  
  /* Typography Colors */
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-dark: #0F172A;
  
  /* Typography Families & Scale */
  --font-display: 'Changa One', 'Permanent Marker', cursive, sans-serif;
  --font-badge: 'Permanent Marker', cursive;
  --font-hud: 'VT323', monospace;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Container & Grid System */
  --container-max-width: 1280px;
  --gutter-desktop: 24px;
  
  /* Shadows & Borders */
  --shadow-subtle: 0 12px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow-green: 0 0 25px rgba(0, 230, 118, 0.2);
  --shadow-glow-gold: 0 0 25px rgba(255, 215, 0, 0.25);
  --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
  --border-active: 1px solid rgba(0, 230, 118, 0.4);
  
  /* Motion & Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s var(--ease-in-out);
  --transition-normal: 0.35s var(--ease-out-expo);
}

/* --- RESET BASE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.65;
}

/* --- CONTAINER SYSTEM --- */
.section-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--gutter-desktop);
}

/* --- HUD HEADER BAR --- */
.gta-hud-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 9, 11, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-subtle);
  padding: 14px 0;
  transition: var(--transition-normal);
}

.hud-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--gutter-desktop);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.hud-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hud-center {
  position: absolute;
  left: calc(50% + 50px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

/* BRAND LOGO */
.brand-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.logo-los-santos {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #FFF;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0px #000;
}

.logo-games {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-gta-gold);
  letter-spacing: 2px;
  text-shadow: 2px 2px 0px #000;
  margin-top: -3px;
}

/* NAVIGATION LINKS (PACK EXPANSÍVEL - HORIZONTAL) */
.nav-pack {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-subtle);
  border-radius: 30px;
  padding: 6px 16px;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-pack:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.nav-pack-visible {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-pack-toggle {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.6rem;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-out-expo), color 0.3s ease;
}

.nav-pack-toggle:hover {
  color: var(--color-gta-gold);
}

.nav-pack.open .nav-pack-toggle {
  transform: rotate(180deg);
  color: var(--color-grove-green);
}

.nav-pack-hidden {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: max-width 0.6s var(--ease-out-expo), opacity 0.4s ease, margin-left 0.4s ease;
}

.nav-pack.open .nav-pack-hidden {
  max-width: 300px;
  opacity: 1;
  margin-left: 24px;
  pointer-events: auto;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-grove-green);
}

/* RADIO WIDGET */
.radio-widget {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 12px;
  border-radius: 30px;
  border: var(--border-subtle);
}

.radio-btn {
  background: none;
  border: none;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: var(--font-hud);
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: var(--transition-fast);
}

.radio-btn:hover {
  color: var(--color-gta-gold);
}

.radio-equalizer {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 10px;
}

.eq-bar {
  width: 3px;
  height: 100%;
  background: var(--color-grove-green);
  border-radius: 2px;
  animation: equalize 1s infinite alternate ease-in-out;
}

.eq-bar:nth-child(1) { animation-delay: 0.1s; }
.eq-bar:nth-child(2) { animation-delay: 0.3s; }
.eq-bar:nth-child(3) { animation-delay: 0.2s; }

@keyframes equalize {
  0% { height: 20%; }
  100% { height: 100%; }
}

/* HUD STATS CONTAINER */
.hud-stats {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hud-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  height: 38px;
  justify-content: space-between;
}

.hud-label {
  font-family: var(--font-hud);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* RESPECT BAR */
.respect-box {
  width: 100px;
}

.respect-bar-container {
  width: 100%;
  height: 10px;
  background: #141920;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.respect-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #12382B, var(--color-grove-green));
  transition: width 0.5s ease;
}

/* WANTED STARS */
.stars-box {
  flex-direction: row;
  gap: 2px;
}

.star {
  font-size: 1.3rem;
  color: #262D35;
  text-shadow: 1px 1px 0 #000;
  transition: color 0.3s ease;
}

.star.active {
  color: var(--color-star-yellow);
  text-shadow: 0 0 6px rgba(255, 234, 0, 0.6);
}

/* CASH COUNTER */
.cash-box {
  font-family: var(--font-hud);
}

.cash-amount {
  font-size: 1.25rem;
  color: var(--color-grove-green);
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(0, 230, 118, 0.4), 1px 1px 0 #000;
  line-height: 1;
}

/* ARSENAL DRAWER TOGGLE BTN */
.hud-arsenal-btn {
  margin-left: 64px;
  background: var(--bg-surface-2);
  border: 1px solid var(--color-grove-green);
  color: #FFF;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.hud-arsenal-btn:hover {
  background: var(--color-grove-green);
  color: #000;
}

.cart-badge {
  background: var(--color-gta-gold);
  color: #000;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 10px;
}

/* --- HERO SECTION (+15% IMPACTO VISUAL) --- */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 24px 70px 24px;
  background: var(--bg-deep);
  overflow: hidden;
  border-bottom: var(--border-subtle);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  opacity: 0.5;
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: url('assets/gta_sa_definitive_1786236783327.jpg') center/cover no-repeat;
  opacity: 0.15;
  mix-blend-mode: overlay;
  z-index: 1;
  pointer-events: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 15%, var(--bg-deep) 85%),
              linear-gradient(180deg, rgba(7, 9, 11, 0.5) 0%, var(--bg-deep) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 960px;
  text-align: center;
}

.hero-micro-label {
  display: inline-block;
  background: rgba(255, 61, 0, 0.15);
  color: var(--color-ammu-red);
  border: 1px solid rgba(255, 61, 0, 0.4);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1.05;
  color: #FFF;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-shadow: 4px 4px 0 #000, 0 0 30px rgba(0,0,0,0.9);
}

.hero-title .text-highlight {
  color: var(--color-gta-gold);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 740px;
  margin: 0 auto 40px auto;
  font-weight: 400;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* BUTTONS SYSTEM */
.gta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.gta-btn-primary {
  background: var(--color-grove-green);
  color: #000;
  box-shadow: var(--shadow-glow-green);
}

.gta-btn-primary:hover {
  transform: translateY(-2px);
  background: #00FF77;
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.5);
}

.gta-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #FFF;
  border: var(--border-subtle);
}

.gta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.gta-btn-tertiary {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.cheat-code-tag {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--color-gta-gold);
  font-family: var(--font-hud);
  font-size: 1.1rem;
  padding: 8px 14px;
  border-radius: 4px;
  letter-spacing: 2px;
  transition: var(--transition-fast);
}

.cheat-code-tag:hover {
  border-color: var(--color-gta-gold);
  background: rgba(255, 215, 0, 0.1);
}

.gta-btn-gold {
  background: linear-gradient(135deg, var(--color-gta-gold), var(--color-gta-orange));
  color: #000;
  font-weight: 900;
  box-shadow: var(--shadow-glow-gold);
}

.gta-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.gta-btn-xl {
  padding: 20px 42px;
  font-size: 1.05rem;
}

/* HERO MICRO PROOFS */
.hero-micro-proofs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.proof-divider {
  width: 4px;
  height: 4px;
  background: var(--text-muted);
  border-radius: 50%;
}

/* --- CATÁLOGO DE JOGOS (3 COLUNAS x 2 LINHAS EM DESKTOP) --- */
.catalog-section {
  padding: 100px 0;
  background: var(--bg-deep);
}

.catalog-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
  gap: 20px;
}

.ammu-badge {
  background: var(--color-ammu-red);
  color: #FFF;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 3px;
  letter-spacing: 2px;
}

.ammu-badge.gold {
  background: var(--color-gta-gold);
  color: #000;
}

.catalog-title-box h2 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: #FFF;
  margin-top: 8px;
}

.catalog-title-box p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* CATEGORY FILTERS */
.category-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  background: var(--bg-surface-1);
  border: var(--border-subtle);
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
  letter-spacing: 1px;
}

.filter-btn:hover {
  border-color: var(--color-grove-green);
  color: #FFF;
}

.filter-btn.active {
  background: var(--color-grove-green);
  color: #000;
  border-color: var(--color-grove-green);
  font-weight: 900;
}

/* PRODUCTS GRID REFORMULADA (EXATAMENTE 3 COLUNAS EM DESKTOP) */
.products-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: var(--text-muted);
}

/* PRODUCT CARD STYLING REFINADO */
.product-card {
  background: var(--bg-surface-1);
  border: var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 230, 118, 0.35);
  box-shadow: var(--shadow-subtle);
}

.product-thumb {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.45s var(--ease-out-expo);
}

.product-card:hover .product-thumb img {
  transform: scale(1.025);
}

.platform-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 9, 11, 0.88);
  color: var(--color-gta-gold);
  font-weight: 800;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 215, 0, 0.4);
  letter-spacing: 1px;
}

.hype-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--color-ammu-red);
  color: #FFF;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 4px;
}

.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.product-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
  line-height: 1.3;
}

.product-title:hover {
  color: var(--color-grove-green);
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* STATS BARS IN CARD */
.card-stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 12px;
  border-radius: 6px;
}

.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.stat-bar {
  width: 55%;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  background: var(--color-grove-green);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: var(--border-subtle);
}

.product-price {
  font-family: var(--font-hud);
  font-size: 1.6rem;
  color: var(--color-grove-green);
  font-weight: 700;
}

.add-cart-btn {
  background: rgba(0, 230, 118, 0.1);
  color: var(--color-grove-green);
  border: 1px solid var(--color-grove-green);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.add-cart-btn:hover {
  background: var(--color-grove-green);
  color: #000;
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.4);
  transform: translateY(-2px);
}

.add-cart-btn:active {
  transform: translateY(0);
}

/* --- MONTE SEU ARSENAL GAMER (LOADOUT CONFIGURATOR WITH SLOTS) --- */
.armory-builder-section {
  padding: 100px 0;
  background: var(--bg-surface-1);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
}

.builder-header {
  text-align: center;
  margin-bottom: 40px;
}

.builder-header h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--color-gta-gold);
  margin-top: 8px;
}

.builder-box {
  background: var(--bg-deep);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-subtle);
}

.builder-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.builder-step-col {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface-2);
  padding: 20px;
  border-radius: 10px;
  border: var(--border-subtle);
  transition: var(--transition-fast);
}

.builder-step-col.completed {
  border-color: var(--color-grove-green);
  background: linear-gradient(180deg, rgba(18, 56, 43, 0.3), var(--bg-surface-2));
}

.step-num-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.step-num {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--color-gta-gold);
  letter-spacing: 2px;
}

.step-status-icon {
  font-size: 0.85rem;
}

.step-label {
  font-size: 0.9rem;
  color: #FFF;
  font-weight: 800;
  margin-bottom: 12px;
}

.gta-select {
  width: 100%;
  background: var(--bg-deep);
  border: var(--border-subtle);
  color: #FFF;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.gta-select:focus, .gta-select:hover {
  border-color: var(--color-grove-green);
}

/* SEU LOADOUT SUMMARY CARD (INVENTORY SLOTS) */
.builder-summary-card {
  background: var(--bg-surface-2);
  border: var(--border-subtle);
  padding: 28px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.summary-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--border-subtle);
  padding-bottom: 12px;
}

.summary-title-row h4 {
  font-size: 1.05rem;
  color: #FFF;
  font-weight: 800;
  letter-spacing: 1px;
}

.loadout-status-badge {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--color-gta-gold);
  background: rgba(255, 215, 0, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.loadout-status-badge.complete {
  color: var(--color-grove-green);
  background: rgba(0, 230, 118, 0.1);
  border-color: var(--color-grove-green);
}

.loadout-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.inventory-slot {
  background: var(--bg-deep);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  padding: 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: var(--transition-fast);
}

.inventory-slot.active {
  border-style: solid;
  border-color: var(--color-grove-green);
  background: rgba(18, 56, 43, 0.2);
}

.slot-cat {
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.slot-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFF;
  display: block;
}

.slot-price {
  font-family: var(--font-hud);
  font-size: 1.1rem;
  color: var(--color-grove-green);
}

.summary-action-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: var(--border-subtle);
}

.summary-price-tag {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-original-row, .price-final-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
}

.price-original-val {
  font-family: var(--font-hud);
  font-size: 1.3rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-val {
  font-family: var(--font-hud);
  font-size: 2.4rem;
  color: var(--color-grove-green);
  line-height: 1;
}

.discount-badge {
  background: var(--color-grove-green);
  color: #000;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 4px;
  align-self: flex-start;
}

/* --- DEPOIMENTOS E REPUTAÇÃO --- */
.social-proof-section {
  padding: 100px 0;
  background: var(--bg-deep);
}

.stats-banner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--bg-surface-1);
  border: var(--border-subtle);
  padding: 32px 20px;
  border-radius: 12px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--color-grove-green);
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 700;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-header h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-gta-gold);
}

.reviews-header p {
  color: var(--text-secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-surface-1);
  border: var(--border-subtle);
  padding: 24px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

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

.user-avatar {
  width: 42px;
  height: 42px;
  background: var(--color-grove-dark);
  border: 1px solid var(--color-grove-green);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-hud);
  font-size: 1.1rem;
  overflow: hidden;
}

.user-avatar.pixel-avatar {
  background: #000;
  border-color: var(--color-gta-gold);
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
}

.user-meta h5 {
  color: #FFF;
  font-size: 0.95rem;
}

.user-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
}

.review-rating {
  color: var(--color-star-yellow);
  letter-spacing: 2px;
}

/* --- SECRET CHEAT BANNER --- */
.cheat-banner-section {
  padding: 60px 0;
  background: var(--bg-surface-1);
}

.cheat-banner-card {
  background: linear-gradient(135deg, var(--bg-surface-2), var(--bg-deep));
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 36px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cheat-badge {
  background: var(--color-gta-gold);
  color: #000;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 2px;
}

.cheat-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #FFF;
  margin: 8px 0;
}

.cheat-code-glow {
  color: var(--color-grove-green);
  font-family: var(--font-hud);
  font-size: 2.2rem;
  letter-spacing: 2px;
}

.cheat-content p {
  color: var(--text-secondary);
  max-width: 600px;
  font-size: 0.95rem;
}

/* ==========================================================================
   ATO 02 — REVEAL ESTRATÉGICO LEM DIGITAL STUDIO
   ========================================================================== */

.reveal-section {
  position: relative;
  padding: 120px 0;
  background: #040507;
  border-top: 2px solid var(--color-gta-gold);
}

.reveal-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(27, 77, 62, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.reveal-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* MISSION PASSED HEADER */
.mission-passed-box {
  margin-bottom: 50px;
}

.mission-passed-title {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--color-gta-gold);
  letter-spacing: 4px;
  text-shadow: 4px 4px 0 #000, 0 0 40px rgba(255, 215, 0, 0.5);
  line-height: 1;
}

.mission-passed-sub {
  font-family: var(--font-hud);
  font-size: 2rem;
  color: var(--color-grove-green);
  letter-spacing: 3px;
}

/* REVEAL MANIFESTO */
.reveal-manifesto {
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.manifesto-lead {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 12px;
}

.manifesto-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.8;
}

.manifesto-highlight {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-gta-gold);
  letter-spacing: 2px;
}

/* EXPERIENCE REPORT CARD (SESSION ID + PROGRESS) */
.experience-report-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--color-grove-green);
  border-radius: 14px;
  padding: 30px;
  margin-bottom: 70px;
  box-shadow: var(--shadow-glow-green);
  text-align: left;
}

.report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: var(--border-subtle);
  flex-wrap: wrap;
  gap: 15px;
}

.report-header h4 {
  font-size: 1.05rem;
  color: #FFF;
  font-weight: 800;
}

.report-session-id {
  font-family: var(--font-hud);
  font-size: 1rem;
  color: var(--color-gta-gold);
  letter-spacing: 1px;
}

.report-progress-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.progress-lbl {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
}

.progress-bar-bg {
  width: 100px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--color-grove-green);
  transition: width 0.5s ease;
}

.progress-pct {
  font-family: var(--font-hud);
  font-size: 1rem;
  color: var(--color-grove-green);
}

.report-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

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

.metric-num {
  font-family: var(--font-hud);
  font-size: 2.2rem;
  color: var(--color-grove-green);
  font-weight: 700;
}

.metric-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
}

/* LEM REVEAL CONTENT */
.lem-reveal-content {
  margin-bottom: 70px;
}

.lem-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--color-gta-gold);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.lem-symbol-box {
  width: 24px;
  height: 24px;
  background: var(--color-gta-gold);
  color: #000;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.lem-brand-title {
  font-weight: 900;
  font-size: 0.85rem;
  color: #FFF;
  letter-spacing: 2px;
}

.lem-reveal-headline {
  font-size: 2.2rem;
  color: #FFF;
  margin-bottom: 20px;
  line-height: 1.3;
}

.lem-reveal-headline .text-gold {
  color: var(--color-gta-gold);
}

.lem-reveal-body {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* STRATEGIC COMPARISON */
.strategic-comparison {
  margin-bottom: 70px;
  text-align: left;
}

.comp-header {
  text-align: center;
  margin-bottom: 40px;
}

.comp-header h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #FFF;
}

.comp-header p {
  color: var(--text-secondary);
}

.comp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.comp-card {
  background: var(--bg-surface-1);
  border: var(--border-subtle);
  padding: 30px;
  border-radius: 12px;
}

.comp-card h4 {
  font-size: 1.2rem;
  color: #FFF;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comp-icon {
  font-size: 1.1rem;
  font-family: var(--font-hud);
  font-weight: 800;
}

.traditional .comp-icon { color: var(--color-ammu-red); }
.strategic .comp-icon { color: var(--color-grove-green); }

.comp-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 20px;
}

.comp-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comp-card li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.custom-list-traditional li::before, .custom-list-strategic li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

.custom-list-traditional li::before {
  background: rgba(255, 61, 0, 0.2);
  border: 1px solid var(--color-ammu-red);
}

.custom-list-strategic li::before {
  background: rgba(0, 230, 118, 0.2);
  border: 1px solid var(--color-grove-green);
}

.comp-card.strategic {
  border: 1px solid var(--color-grove-green);
  background: linear-gradient(135deg, rgba(18, 56, 43, 0.4), var(--bg-surface-1));
}

/* FINAL CTA BOX */
.final-cta-box {
  background: var(--bg-surface-1);
  border: 2px solid var(--color-gta-gold);
  padding: 50px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-glow-gold);
}

.final-cta-box h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: #FFF;
  margin-bottom: 12px;
}

.final-cta-box p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 30px auto;
}

.microcopy-note {
  display: block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- ARSENAL DRAWER (CARRINHO LATERAL) --- */
.arsenal-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--bg-surface-1);
  border-left: var(--border-active);
  z-index: 2500;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out-expo);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

.arsenal-drawer.open {
  transform: translateX(0);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 2400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  padding: 20px 24px;
  background: var(--bg-surface-2);
  border-bottom: var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--color-gta-gold);
}

.drawer-count-tag {
  background: var(--color-grove-green);
  color: #000;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
}

.close-drawer-btn, .close-modal-btn {
  background: none;
  border: none;
  color: #FFF;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-drawer-btn span, .close-modal-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.close-drawer-btn:hover span, .close-modal-btn:hover span {
  border-color: var(--color-ammu-red);
  color: var(--color-ammu-red);
  box-shadow: 0 0 10px rgba(255, 51, 51, 0.4);
  transform: rotate(90deg);
}

.drawer-body {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.empty-drawer-msg {
  text-align: center;
  color: var(--text-muted);
  margin: auto;
}

.drawer-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface-2);
  padding: 12px;
  border-radius: 8px;
  border: var(--border-subtle);
}

.drawer-item-info h5 {
  font-size: 0.9rem;
  color: #FFF;
}

.drawer-item-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.drawer-item-price {
  font-family: var(--font-hud);
  font-size: 1.3rem;
  color: var(--color-grove-green);
}

.remove-drawer-btn {
  background: none;
  border: none;
  color: var(--color-ammu-red);
  cursor: pointer;
  font-size: 1rem;
  margin-left: 10px;
}

.drawer-footer {
  padding: 24px;
  background: var(--bg-surface-2);
  border-top: var(--border-subtle);
}

.drawer-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  margin-bottom: 20px;
}

.drawer-total-price {
  font-family: var(--font-hud);
  font-size: 2rem;
  color: var(--color-grove-green);
}

.drawer-actions {
  display: flex;
  gap: 10px;
}

/* --- QUICK VIEW MODAL --- */
.quickview-modal {
  max-width: 750px;
}

.modal-subtitle-tag {
  color: var(--color-gta-gold);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.qv-body {
  padding: 30px;
}

.qv-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
}

.qv-img-box {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.qv-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qv-details h3 {
  font-size: 1.4rem;
  color: #FFF;
  margin-bottom: 10px;
}

.qv-desc-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.qv-stats-box {
  background: var(--bg-surface-2);
  padding: 14px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
}

.qv-stat-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

.stat-highlight {
  color: var(--color-grove-green);
  font-weight: 800;
}

.qv-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qv-price {
  font-family: var(--font-hud);
  font-size: 2rem;
  color: var(--color-grove-green);
}

/* --- FEEDBACK TOAST --- */
.toast-container {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.feedback-toast {
  background: var(--bg-surface-2);
  border: 1px solid var(--color-grove-green);
  color: #FFF;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-subtle);
  animation: toastSlideIn 0.3s var(--ease-out-expo), toastFadeOut 0.3s ease 2.7s forwards;
}

@keyframes toastSlideIn {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes toastFadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-10px); }
}

/* --- MISSION PASSED OVERLAY --- */
.mission-passed-overlay {
  position: fixed;
  inset: 0;
  z-index: 3500;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}

.mission-passed-overlay.hidden {
  display: none;
}

.mission-passed-card {
  text-align: center;
  animation: missionZoom 0.5s var(--ease-out-expo);
}

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

.mission-title {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--color-gta-gold);
  text-shadow: 4px 4px 0 #000, 0 0 40px rgba(255, 215, 0, 0.6);
  margin-bottom: 8px;
}

.mission-subtitle {
  font-family: var(--font-hud);
  font-size: 2.5rem;
  color: var(--color-grove-green);
  margin-bottom: 20px;
}

.mission-reward {
  font-size: 1.1rem;
  color: #FFF;
  margin-bottom: 30px;
}

/* --- FOOTER --- */
.lem-footer {
  background: #030405;
  border-top: var(--border-subtle);
  padding: 60px 0 24px 0;
}

.footer-container {
  max-width: var(--container-max-width);
  margin: 0 auto 40px auto;
  padding: 0 var(--gutter-desktop);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.lem-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.lem-symbol {
  width: 32px;
  height: 32px;
  background: var(--color-gta-gold);
  color: #000;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-family: var(--font-display);
}

.lem-name {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  color: #FFF;
}

.lem-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-cta-col h4 {
  color: var(--color-gta-gold);
  font-size: 1rem;
  margin-bottom: 8px;
}

.footer-cta-col p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.footer-divider {
  width: 50px;
  height: 2px;
  background: var(--color-grove-green);
  margin: 16px 0;
}

.footer-case-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.4;
}

.footer-links-title {
  color: var(--color-gta-gold);
  font-size: 1rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-grove-green);
  padding-left: 5px;
}

.footer-cta-btn {
  display: inline-block;
  background: rgba(0, 230, 118, 0.1);
  color: var(--color-grove-green);
  border: 1px solid var(--color-grove-green);
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.8rem;
  margin-top: 16px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-cta-btn:hover {
  background: var(--color-grove-green);
  color: #000;
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.4);
  transform: translateY(-2px);
}

.footer-bottom-disclaimer {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 24px var(--gutter-desktop) 0 var(--gutter-desktop);
  border-top: var(--border-subtle);
}

.disclaimer-box {
  background: rgba(255, 61, 0, 0.05);
  border: 1px solid rgba(255, 61, 0, 0.2);
  padding: 12px 18px;
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.disclaimer-box strong {
  color: var(--color-ammu-red);
}

.copyright {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   NOVOS RECURSOS — SPRINT 2 & 3
   ========================================================================== */

/* --- CUSTOM GTA CURSOR --- */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease;
  mix-blend-mode: difference;
}

.cursor-crosshair {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor-crosshair::before,
.cursor-crosshair::after {
  content: '';
  position: absolute;
  background: var(--color-grove-green);
  border-radius: 2px;
}

.cursor-crosshair::before {
  width: 2px;
  height: 100%;
}

.cursor-crosshair::after {
  width: 100%;
  height: 2px;
}

.cursor-ring {
  position: absolute;
  inset: 4px;
  border: 1.5px solid rgba(0, 230, 118, 0.4);
  border-radius: 50%;
  animation: cursorPulse 2s infinite ease-in-out;
}

@keyframes cursorPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.4); opacity: 0.1; }
}

/* Hide default cursor on desktop */
@media (pointer: fine) {
  body, a, button, select, input, [role="button"] {
    cursor: none !important;
  }
  .custom-cursor { display: block; }
}

@media (pointer: coarse) {
  .custom-cursor { display: none; }
}

/* Cursor scale on interactive elements */
body.cursor-hover .custom-cursor {
  transform: translate(-50%, -50%) scale(1.6);
}

body.cursor-click .custom-cursor {
  transform: translate(-50%, -50%) scale(0.8);
}

/* --- STICKY PROGRESS BAR --- */
.sticky-progress-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1100;
  pointer-events: none;
}

.sticky-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-grove-green), var(--color-gta-gold));
  transition: width 0.5s ease;
  box-shadow: 0 0 8px rgba(0, 230, 118, 0.6);
}

/* --- SKELETON LOADING CARDS --- */
@keyframes skeletonPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.skeleton-card {
  animation: skeletonPulse 1.5s infinite ease-in-out;
  pointer-events: none;
}

.skeleton-thumb {
  width: 100%;
  height: 240px;
  background: linear-gradient(90deg, var(--bg-surface-2) 25%, var(--bg-surface-3) 50%, var(--bg-surface-2) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.8s infinite;
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skeleton-line {
  height: 12px;
  background: var(--bg-surface-2);
  border-radius: 6px;
  animation: skeletonShimmer 1.8s infinite;
}

.skeleton-line.wide { width: 90%; }
.skeleton-line.medium { width: 65%; }
.skeleton-line.short { width: 40%; }

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.product-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo),
              border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.product-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- FLOATING WHATSAPP FAB --- */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 2200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #000;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s ease;
  animation: fabEntrance 0.6s 1s var(--ease-out-expo) both;
}

@keyframes fabEntrance {
  from { transform: scale(0) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.whatsapp-fab:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.fab-icon {
  font-size: 1.2rem;
}

.fab-label {
  letter-spacing: 0.5px;
}

/* --- HAMBURGER / MOBILE MENU BUTTON --- */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  border: var(--border-subtle);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #FFF;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.mobile-menu-btn.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- MOBILE NAV PANEL --- */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg-surface-1);
  border-top: var(--border-subtle);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out-expo);
}

.mobile-nav.open {
  max-height: 300px;
}

.mobile-nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 16px 24px;
  border-bottom: var(--border-subtle);
  transition: var(--transition-fast);
  display: block;
}

.mobile-nav-link:hover {
  background: var(--bg-surface-2);
  color: var(--color-grove-green);
  padding-left: 32px;
}

/* --- MISSION PASSED CTA GROUP --- */
.mission-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

/* --- RESPONSIVIDADE MÓVEL --- */
@media (max-width: 1024px) {
  .products-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
  .builder-steps {
    grid-template-columns: 1fr;
  }
  .loadout-slots-grid {
    grid-template-columns: 1fr;
  }
  .comp-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* TYPOGRAPHY CLAMP */
  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .mission-passed-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  /* HUD: Mostrar apenas logo, arsenal e hamburger */
  .hud-nav { display: none; }
  .radio-widget { display: none; }
  .respect-box { display: none; }
  .cash-box { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-nav { display: flex; }

  /* HUD CONTAINER */
  .hud-container { gap: 12px; }

  /* PRODUCTS GRID: 1 coluna em mobile */
  .products-grid-3col {
    grid-template-columns: 1fr;
  }

  /* BUILDER: Stacked layout */
  .builder-box {
    padding: 20px;
  }

  .builder-steps {
    grid-template-columns: 1fr;
  }

  .loadout-slots-grid {
    grid-template-columns: 1fr;
  }

  .summary-action-box {
    flex-direction: column;
    align-items: flex-start;
  }

  /* REVIEWS: 1 coluna */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* COMPARISON: 1 coluna */
  .comp-grid {
    grid-template-columns: 1fr;
  }

  /* STATS BANNER: stack vertical */
  .stats-banner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .stat-divider { display: none; }

  /* ARSENAL DRAWER */
  .arsenal-drawer { max-width: 100%; }

  /* QUICK VIEW: modal stacked */
  .qv-grid { grid-template-columns: 1fr; }
  .qv-img-box { height: 200px; }
  .quickview-modal { max-width: 95vw; margin: 16px; }

  /* CHEAT BANNER: stack */
  .cheat-banner-card {
    flex-direction: column;
    text-align: center;
  }

  /* HERO */
  .hero-section { padding: 90px 20px 50px 20px; }
  .hero-actions { gap: 12px; }
  .hero-micro-proofs { gap: 12px; font-size: 0.78rem; }
  .proof-divider { display: none; }

  /* SECTIONS */
  .catalog-section, .armory-builder-section, .social-proof-section, .reveal-section {
    padding: 60px 0;
  }

  /* FAB positioning (above mobile bottom nav clearance) */
  .whatsapp-fab { bottom: 20px; right: 16px; }
  .fab-label { display: none; }
  .whatsapp-fab { padding: 16px; border-radius: 50%; }

  /* TOAST: from bottom center */
  .toast-container { right: 16px; bottom: 80px; }

  /* MISSION PASSED */
  .mission-title { font-size: clamp(2rem, 10vw, 3rem); }
  .mission-cta-group { padding: 0 16px; width: 100%; }
  .mission-cta-group .gta-btn { width: 100%; justify-content: center; }

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

@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .catalog-title-box h2 { font-size: 1.8rem; }
  .builder-header h2 { font-size: 1.8rem; }
  .builder-box { padding: 16px; }
  .gta-btn-xl { padding: 16px 24px; font-size: 0.9rem; }
  .manifesto-highlight { font-size: 1.6rem; }
  .lem-reveal-headline { font-size: 1.6rem; }
  .section-container { padding: 0 16px; }
  .hud-container { padding: 0 16px; }
  .report-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-report-card { padding: 20px; }
  .final-cta-box { padding: 32px 20px; }
  .final-cta-box h3 { font-size: 1.5rem; }
}
