/* ==========================================================================
   ZONA MODS — Design system
   ========================================================================== */

:root {
  /* Superfícies escuras */
  --bg-950: #07090a;
  --bg-900: #0b0f0c;
  --bg-800: #10140f;
  --bg-700: #151b14;
  --bg-600: #1b221a;
  --bg-card: #12160f;
  --border-subtle: rgba(200, 240, 170, 0.08);
  --border-strong: rgba(200, 240, 170, 0.16);

  /* Verde lima — cor de marca #05ff00 */
  --lime-rgb: 5, 255, 0;
  --lime-100: #e3ffe0;
  --lime-200: #b3ffab;
  --lime-300: #7dff74;
  --lime-400: #3dff38;
  --lime-500: #05ff00;
  --lime-600: #04cf00;
  --lime-700: #039e00;
  --lime-glow: rgba(var(--lime-rgb), 0.28);

  /* Discord — cor de marca oficial */
  --discord: #5865f2;
  --discord-rgb: 88, 101, 242;
  --discord-hover: #4752c4;

  /* Instagram — cor de marca */
  --instagram: #e1306c;
  --instagram-rgb: 225, 48, 108;
  --instagram-hover: #c42461;
  --instagram-gradient: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);

  /* Texto */
  --text-primary: #eef3ea;
  --text-secondary: #a7b2a2;
  --text-muted: #707a6d;

  /* Tipografia */
  --font-display: "Sora", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Sombras */
  --shadow-soft: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-card: 0 10px 30px -12px rgba(0, 0, 0, 0.55);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --radius-btn: 11px;

  --container-w: 1360px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-950);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

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

input {
  font-family: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 22px;
}

/* Fundo ambiente com glow verde suave ------------------------------------ */
.ambient-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-glow::before,
.ambient-glow::after {
  content: "";
  position: absolute;
  width: 55vw;
  height: 55vw;
  max-width: 820px;
  max-height: 820px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.07;
}

.ambient-glow::before {
  background: var(--lime-500);
  top: -22%;
  right: -12%;
}

.ambient-glow::after {
  background: var(--lime-700);
  bottom: -25%;
  left: -15%;
  opacity: 0.05;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Botões
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color .2s ease;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--lime-400), var(--lime-600));
  color: #06110a;
  box-shadow: 0 10px 26px -10px var(--lime-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px var(--lime-glow);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  border-color: var(--lime-500);
  color: var(--lime-300);
  transform: translateY(-1px);
}

.btn-discord {
  background: var(--discord);
  border: 1px solid var(--discord);
  color: #ffffff;
}

.btn-discord:hover {
  background: var(--discord-hover);
  border-color: var(--discord-hover);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 18px 38px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-ghost-sm {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.btn-ghost-sm:hover {
  color: var(--lime-300);
  border-color: var(--lime-400);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(7, 9, 10, 0.7);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--border-subtle);
  padding: 12px 0;
  background: rgba(7, 9, 10, 0.88);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  height: 38px;
  width: auto;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.brand-name span {
  color: var(--lime-300);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.main-nav a.nav-discord,
.mobile-nav a.nav-discord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.mobile-nav a.nav-discord {
  color: var(--discord);
}

.main-nav a.nav-discord {
  color: #ffffff;
  background: var(--discord);
  border: 1px solid var(--discord);
}

.main-nav a.nav-discord svg {
  width: 16px;
  height: 16px;
}

.main-nav a.nav-discord:hover {
  background: var(--discord-hover);
  border-color: var(--discord-hover);
  transform: translateY(-1px);
}

.mobile-nav a.nav-discord svg {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}

.main-nav a.nav-instagram,
.mobile-nav a.nav-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.mobile-nav a.nav-instagram {
  color: var(--instagram);
}

.main-nav a.nav-instagram {
  color: #ffffff;
  background: var(--instagram);
  border: 1px solid var(--instagram);
}

.main-nav a.nav-instagram svg {
  width: 16px;
  height: 16px;
}

.main-nav a.nav-instagram:hover {
  background: var(--instagram-hover);
  border-color: var(--instagram-hover);
  transform: translateY(-1px);
}

.mobile-nav a.nav-instagram svg {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}

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

.icon-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.icon-btn:hover {
  border-color: var(--lime-500);
  background: rgba(var(--lime-rgb), 0.06);
}

.icon-btn-discord:hover {
  border-color: var(--discord);
  background: rgba(var(--discord-rgb), 0.12);
  color: var(--discord);
}

.icon-btn-instagram:hover {
  border-color: var(--instagram);
  background: rgba(var(--instagram-rgb), 0.12);
  color: var(--instagram);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 19px;
  height: 19px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--lime-400);
  color: #0b1206;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.25s ease;
}

.cart-badge.show {
  transform: scale(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  z-index: 2;
  padding: 88px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  text-align: left;
}

.hero-logo-wrap {
  display: flex;
  justify-content: flex-end;
}

.hero-logo {
  width: min(440px, 100%);
  filter: drop-shadow(0 20px 50px var(--lime-glow));
}

.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.2rem);
  margin-bottom: 22px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--lime-300), var(--lime-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 520px;
  min-height: 3.4em;
  margin: 0 0 40px;
  color: var(--text-secondary);
  font-size: 1.08rem;
}

.hero-subtitle.typing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 3px;
  vertical-align: -0.15em;
  background: var(--lime-400);
  animation: zmCursorBlink 0.8s steps(1) infinite;
}

@keyframes zmCursorBlink {
  50% { opacity: 0; }
}

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

/* ==========================================================================
   Seções — genérico
   ========================================================================== */

section {
  position: relative;
  z-index: 2;
}

.section {
  padding: 100px 0;
}

.section-tight {
  padding: 70px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-kicker {
  display: inline-block;
  color: var(--lime-300);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 1.02rem;
}

.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  border: none;
}

/* ==========================================================================
   Estatísticas — círculos de tema
   ========================================================================== */

.theme-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-ring-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.stat-ring {
  position: relative;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(var(--lime-400) calc(var(--p, 0) * 1%), rgba(255, 255, 255, 0.05) 0);
  transition: background 0.1s linear;
}

.stat-ring::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: var(--bg-950);
  box-shadow: inset 0 0 0 1px var(--border-subtle);
}

.stat-ring-value {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-ring-value span {
  color: var(--lime-300);
}

.stat-ring-label {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
}

.stat-ring-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Números que impressionam
   ========================================================================== */

.numbers-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.numbers-strip--sub {
  max-width: 900px;
  margin: 56px auto 0;
}

.number-cell {
  background: var(--bg-900);
  padding: 40px 24px;
  text-align: center;
  transition: background 0.25s ease;
}

.number-cell:hover {
  background: var(--bg-800);
}

.number-cell .value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--lime-300);
  margin-bottom: 8px;
}

.number-cell .label {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

/* ==========================================================================
   Perfil — quem está por trás
   ========================================================================== */

.profile-card {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(160deg, var(--bg-800), var(--bg-900));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-card);
}

.profile-avatar {
  width: 200px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: rgba(238, 243, 234, 0.85);
  padding: 2px;
  flex-shrink: 0;
  box-shadow: 0 12px 34px -10px rgba(0, 0, 0, 0.45);
}

.profile-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  border-radius: calc(var(--radius-lg) - 2px);
}

.profile-name {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.profile-role {
  color: var(--lime-300);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.profile-bio {
  color: var(--text-secondary);
  margin-bottom: 22px;
  max-width: 560px;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  font-size: 0.86rem;
  font-weight: 500;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.profile-link svg {
  width: 16px;
  height: 16px;
}

.profile-link:hover {
  border-color: var(--lime-400);
  color: var(--lime-200);
  transform: translateY(-2px);
}

/* ==========================================================================
   CTA final
   ========================================================================== */

.cta-band {
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  padding: 92px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background:
    radial-gradient(circle at 18% 0%, rgba(var(--lime-rgb), 0.09), transparent 50%),
    radial-gradient(circle at 85% 100%, rgba(var(--lime-rgb), 0.06), transparent 50%),
    linear-gradient(160deg, var(--bg-800), var(--bg-900));
}

.cta-band-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cta-band-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--lime-rgb), 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--lime-rgb), 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 60% 80% at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at center, black 0%, transparent 75%);
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 36px;
}

.cta-band h2 .accent {
  background: linear-gradient(135deg, var(--lime-300), var(--lime-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-band p {
  color: var(--text-secondary);
  margin: 0 auto 36px;
}

.cta-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin: 0 auto 38px;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
}

.cta-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.cta-highlight-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--lime-rgb), 0.1);
  border: 1px solid var(--border-strong);
  color: var(--lime-400);
}

.cta-highlight-icon svg {
  width: 16px;
  height: 16px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Últimos lançamentos (home)
   ========================================================================== */

.launches-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.launches-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.launches-head p {
  color: var(--text-secondary);
  margin-top: 8px;
}

.launches-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

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

/* ==========================================================================
   Product Card
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.product-grid--lg {
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 32px;
}

.product-grid--lg .product-body {
  padding: 22px 22px 24px;
  gap: 16px;
}

.product-grid--lg .product-name {
  font-size: 1.08rem;
}

.product-grid--lg .product-price {
  font-size: 1.25rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
}

.product-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: block;
  background: var(--bg-700);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-thumb .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.product-card:hover .play-overlay {
  opacity: 1;
}

.play-overlay .play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(238, 243, 234, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.85);
  transition: transform 0.25s ease;
}

.product-card:hover .play-overlay .play-btn {
  transform: scale(1);
}

.play-overlay .play-btn svg {
  width: 20px;
  height: 20px;
  color: #0b1206;
  margin-left: 3px;
}

.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
}

.badge {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.badge-novo {
  background: rgba(var(--lime-rgb), 0.92);
  color: #06110a;
}

.badge-vendido {
  background: rgba(20, 24, 18, 0.82);
  color: var(--lime-300);
  border: 1px solid var(--border-strong);
}

.badge-categoria {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(11, 15, 12, 0.78);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.badge-categoria svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.product-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lime-300);
}

.add-cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-btn);
  background: rgba(var(--lime-rgb), 0.1);
  border: 1px solid var(--border-strong);
  color: var(--lime-300);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease, border-color .2s ease;
}

.add-cart-btn svg {
  width: 15px;
  height: 15px;
}

.add-cart-btn:hover {
  background: var(--lime-400);
  color: #0b1206;
  border-color: var(--lime-400);
  transform: translateY(-1px);
}

.add-cart-btn.added {
  background: var(--lime-400);
  color: #0b1206;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-subtle);
  padding: 56px 0 30px;
  margin-top: 60px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.footer-brand img {
  height: 32px;
}

.footer-brand-text p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 4px;
  max-width: 320px;
}

.footer-links {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col a,
.footer-col span {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--lime-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

/* ==========================================================================
   Catálogo (mapas.html)
   ========================================================================== */

.catalog-hero {
  padding: 64px 0 40px;
  text-align: center;
}

.catalog-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.catalog-hero p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* Página de mapas: gutters mais generosos para cards maiores */
body.mapas-page .catalog-hero .container,
body.mapas-page .catalog-controls .container,
body.mapas-page .section-tight > .container {
  padding: 0 56px;
}

@media (max-width: 900px) {
  body.mapas-page .catalog-hero .container,
  body.mapas-page .catalog-controls .container,
  body.mapas-page .section-tight > .container {
    padding: 0 28px;
  }
}

.catalog-controls {
  position: sticky;
  top: 78px;
  z-index: 30;
  padding: 18px 0;
  margin-bottom: 32px;
  background: rgba(7, 9, 10, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}

.catalog-controls-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 240px;
  max-width: 420px;
}

.search-box svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.search-box input {
  width: 100%;
  padding: 13px 16px 13px 46px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-800);
  color: var(--text-primary);
  font-size: 0.92rem;
  transition: border-color 0.2s ease;
}

.search-box input:focus {
  outline: none;
  border-color: var(--lime-400);
}

.search-box input::placeholder {
  color: var(--text-muted);
}

.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.chip svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.chip:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.chip.active {
  background: var(--lime-500);
  border-color: var(--lime-500);
  color: #06110a;
  font-weight: 600;
}

.catalog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.empty-state {
  text-align: center;
  padding: 90px 20px;
  color: var(--text-muted);
}

.empty-state svg {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  color: var(--text-muted);
}

.empty-state h3 {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* ==========================================================================
   Carrinho — drawer
   ========================================================================== */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 4, 0.6);
  backdrop-filter: blur(3px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--bg-900);
  border-left: 1px solid var(--border-subtle);
  z-index: 91;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.16,1,.3,1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.4);
}

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

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-drawer-head h3 {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
}

.cart-close svg {
  width: 16px;
  height: 16px;
}

.cart-close:hover {
  border-color: var(--lime-400);
  color: var(--lime-300);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 10px 24px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-item img {
  width: 76px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item-cat {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 4px 6px;
}

.qty-stepper button {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.qty-stepper button:hover {
  color: var(--lime-300);
}

.qty-stepper span {
  font-size: 0.82rem;
  min-width: 14px;
  text-align: center;
}

.cart-item-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--lime-300);
}

.cart-item-remove {
  color: var(--text-muted);
  font-size: 0.74rem;
  margin-top: 6px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cart-item-remove:hover {
  color: #e26a6a;
}

.cart-empty {
  text-align: center;
  padding: 70px 20px;
  color: var(--text-muted);
}

.cart-empty svg {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  opacity: 0.6;
}

.cart-drawer-footer {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--border-subtle);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.cart-total-row .label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cart-total-row .value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lime-300);
}

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

.cart-clear-link {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 6px;
}

.cart-clear-link:hover {
  color: #e26a6a;
}

/* ==========================================================================
   Modal de pedido / instruções
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 4, 0.72);
  backdrop-filter: blur(4px);
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-box {
  width: 100%;
  max-width: 460px;
  background: var(--bg-800);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.35s cubic-bezier(.16,1,.3,1);
  box-shadow: var(--shadow-soft);
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(var(--lime-rgb), 0.12);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.modal-icon svg {
  width: 28px;
  height: 28px;
  color: var(--lime-300);
}

.modal-box h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.modal-box p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 26px;
}

.modal-steps {
  text-align: left;
  background: var(--bg-900);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 26px;
}

.modal-steps li {
  display: flex;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  padding: 8px 0;
}

.modal-steps li .num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(var(--lime-rgb), 0.14);
  color: var(--lime-300);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.modal-close-x {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.modal-close-x:hover {
  color: var(--lime-300);
  background: rgba(255,255,255,0.04);
}

.modal-box { position: relative; }

/* Academy "em breve" modal reuses .modal-box */

/* ==========================================================================
   Toast
   ========================================================================== */

.toast-stack {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--bg-800);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast svg {
  width: 16px;
  height: 16px;
  color: var(--lime-400);
  flex-shrink: 0;
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsivo
   ========================================================================== */

@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-content { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-logo-wrap { justify-content: center; order: -1; }
  .hero-logo { width: min(260px, 70%); }

  .theme-stats { grid-template-columns: 1fr; gap: 40px; }
  .numbers-strip { grid-template-columns: repeat(2, 1fr); }
  .profile-card { grid-template-columns: 1fr; text-align: center; padding: 34px 26px; }
  .profile-avatar { margin: 0 auto; }
  .profile-links { justify-content: center; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: 70px 0 50px; }
  .numbers-strip { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 52px 0; }
  .catalog-controls { top: 70px; }
  .catalog-controls-inner { flex-direction: column; align-items: stretch; }
  .search-box { max-width: none; }
  .filter-chips { justify-content: flex-start; overflow-x: auto; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--bg-950);
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  padding: 18px 0;
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-bottom: 1px solid var(--border-subtle);
}
