/* ==========================================================================
   MUNDO DO 7 - DESIGN SYSTEM (DARK MINIMALIST AESTHETIC)
   ========================================================================== */

:root {
  --bg-primary: #000000;
  --bg-secondary: #080808;
  --bg-tertiary: #111111;
  --bg-elevated: #161616;
  --bg-card: #0d0d0d;
  
  --border-subtle: #1c1c1c;
  --border-medium: #2a2a2a;
  --border-focus: #444444;
  --border-light: #ffffff;

  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --text-dim: #444444;

  --discord-brand: #5865F2;
  --discord-hover: #4752c4;
  --discord-bg: #10121a;

  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.15s ease;
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.7);
  --shadow-elevated: 0 16px 40px rgba(0, 0, 0, 0.9);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

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

/* Ambient Moving Background (Subtle, Clean & Beautiful) */
.ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.ambient-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(140px);
  opacity: 0.12;
  will-change: transform;
}

.orb-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, rgba(120, 120, 120, 0.08) 60%, transparent 100%);
  top: 15%;
  left: 8%;
  animation: floatOrbOne 28s ease-in-out infinite alternate;
}

.orb-2 {
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(180, 180, 180, 0.22) 0%, rgba(60, 60, 60, 0.06) 60%, transparent 100%);
  bottom: 18%;
  right: 10%;
  animation: floatOrbTwo 32s ease-in-out infinite alternate;
}

@keyframes floatOrbOne {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(110px, 90px) scale(1.12); }
  100% { transform: translate(-50px, 150px) scale(0.95); }
}

@keyframes floatOrbTwo {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-120px, -80px) scale(1.15); }
  100% { transform: translate(60px, -140px) scale(1.02); }
}

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

ul {
  list-style: none;
}

button, input {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Announcement Bar */
.top-bar {
  background-color: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.8125rem;
  padding: 8px 0;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.top-pill {
  background-color: #ffffff;
  color: #000000;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.top-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.top-link:hover {
  opacity: 0.8;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.brand-badge {
  background-color: #ffffff;
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  letter-spacing: -0.02em;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: #ffffff;
}

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

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #ffffff;
  transition: transform var(--transition-fast);
}

/* Base Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-primary {
  background-color: #ffffff;
  color: #000000;
}

.btn-primary:hover {
  background-color: #e0e0e0;
  transform: translateY(-1px);
}

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

.btn-secondary:hover {
  background-color: var(--bg-tertiary);
  border-color: #ffffff;
}

.btn-large {
  padding: 14px 28px;
  font-size: 0.9375rem;
}

.btn-discord {
  background-color: var(--bg-tertiary);
  color: #ffffff;
  border: 1px solid var(--border-medium);
  font-size: 0.8125rem;
  padding: 8px 16px;
}

.btn-discord:hover {
  background-color: var(--discord-brand);
  border-color: var(--discord-brand);
}

.icon-discord {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   PROMOTIONAL HERO BANNER (CLEAN BLACK THEME)
   ========================================================================== */

.promo-hero-section {
  padding: 40px 0 30px;
  position: relative;
  z-index: 1;
}

.ticker-section,
.products-section,
.advantages-section,
.discord-section,
.faq-section,
.site-footer {
  position: relative;
  z-index: 1;
}

.promo-banner-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-elevated);
}

.promo-banner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border-subtle);
  background-color: rgba(255, 255, 255, 0.02);
}

.badge-black {
  background-color: #ffffff;
  color: #000000;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.promo-live-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}

.promo-banner-content {
  padding: 56px 40px 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.promo-text-area {
  position: relative;
  z-index: 2;
}

.brand-watermark {
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  user-select: none;
  pointer-events: none;
  z-index: -1;
  line-height: 1;
}

.promo-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
  color: #ffffff;
}

.promo-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.promo-highlights {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  padding: 16px 20px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  max-width: max-content;
}

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

.highlight-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.highlight-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.highlight-divider {
  width: 1px;
  height: 32px;
  background-color: var(--border-medium);
}

.promo-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Promo Visual Cards Showcase (3 Sleek Minimalist Cards) */
/* Promo Single Featured Highlight (Rotates Randomly Every 1 Min) */
.promo-featured-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  width: 100%;
}

.featured-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.featured-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #141414;
  border: 1px solid var(--border-medium);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  color: #ffffff;
}

.rotation-timer-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-heading);
}

.featured-single-card {
  background: linear-gradient(180deg, #111111 0%, #070707 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}

.featured-single-card:hover {
  border-color: #ffffff;
}

.featured-single-card.fade-out {
  opacity: 0;
  transform: translateY(8px) scale(0.98);
}

.fcard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.fcard-tier-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: #1c1c1c;
  color: #ffffff;
  border: 1px solid #333333;
}

.fcard-body {
  margin-bottom: 22px;
}

.fcard-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.fcard-price {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1;
}

.fcard-desc {
  font-size: 0.84375rem;
  color: var(--text-secondary);
  line-height: 1.5;
  min-height: 44px;
}

.fcard-footer {
  margin-top: 4px;
}

.fcard-btn {
  width: 100%;
  padding: 13px;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: #ffffff;
  color: #000000;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease, transform 0.15s ease;
}

.fcard-btn:hover {
  background-color: #e5e5e5;
  transform: translateY(-1px);
}

.rotation-progress-track {
  width: 100%;
  height: 2px;
  background-color: #1a1a1a;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 2px;
}

.rotation-progress-bar {
  height: 100%;
  width: 0%;
  background-color: #ffffff;
}

.featured-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.dot-btn {
  width: 22px;
  height: 4px;
  border-radius: 2px;
  background-color: #222222;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.dot-btn:hover {
  background-color: #444444;
}

.dot-btn.active {
  background-color: #ffffff;
  width: 32px;
}

.promo-footer-banner {
  background-color: #000000;
  border-top: 1px solid var(--border-subtle);
  padding: 14px 28px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.promo-link-arrow {
  color: #ffffff;
  font-weight: 600;
}

.promo-link-arrow:hover {
  text-decoration: underline;
}

/* ==========================================================================
   LIVE ACTIVITY TICKER
   ========================================================================== */

.ticker-section {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  background-color: #000000;
}

.ticker-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}

.ticker-badge {
  background-color: #1c1c1c;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.ticker-items {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  overflow-x: auto;
  scrollbar-width: none;
}

.ticker-items::-webkit-scrollbar {
  display: none;
}

.ticker-item strong {
  color: #ffffff;
}

/* ==========================================================================
   PRODUCTS CATALOG (3 CARDS)
   ========================================================================== */

.products-section {
  padding: 80px 0 60px;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 14px;
}

.section-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.product-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-smooth), border-color var(--transition-fast), box-shadow var(--transition-smooth);
}

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

.featured-product {
  border-color: #383838;
  background: linear-gradient(180deg, #111111 0%, #090909 100%);
}

.featured-product:hover {
  border-color: #ffffff;
}

.featured-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #000000;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.product-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.tier-pill {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  background-color: #1a1a1a;
  color: #ffffff;
  border-radius: var(--radius-full);
}

.tier-platinum {
  background-color: #2b2b2b;
  border: 1px solid #444444;
}

.tier-black {
  background-color: #ffffff;
  color: #000000;
}

.stock-badge {
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Minimalist Card Visual Representation */
.card-visual-wrapper {
  margin-bottom: 24px;
}

.visual-card {
  background-color: #000000;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  position: relative;
  aspect-ratio: 1.7 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.standard-theme .visual-card {
  border-color: #262626;
}

.platinum-theme .visual-card {
  background: linear-gradient(145deg, #181818, #0c0c0c);
  border-color: #4a4a4a;
}

.black-theme .visual-card {
  background: #030303;
  border-color: #333333;
}

.vc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

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

.vc-chip {
  width: 28px;
  height: 20px;
  border: 1px solid #444;
  border-radius: 3px;
  background: #1e1e1e;
}

.vc-number {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}

.vc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Product Card Details */
.product-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.product-summary {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  min-height: 40px;
}

.product-price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.price-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.price-value {
  font-family: var(--font-heading);
  font-size: 2.125rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.price-period {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.check-icon {
  width: 16px;
  height: 16px;
  color: #ffffff;
  flex-shrink: 0;
}

.btn-buy {
  width: 100%;
  padding: 13px;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid var(--border-medium);
  font-size: 0.875rem;
}

.btn-buy:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.btn-featured {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.btn-featured:hover {
  background-color: #e5e5e5;
}

.btn-black-tier {
  border-color: #444444;
}

.btn-black-tier:hover {
  background-color: #ffffff;
  color: #000000;
}

/* ==========================================================================
   ADVANTAGES SECTION
   ========================================================================== */

.advantages-section {
  padding: 70px 0;
  border-top: 1px solid var(--border-subtle);
  background-color: var(--bg-secondary);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.adv-card {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: border-color var(--transition-fast);
}

.adv-card:hover {
  border-color: var(--border-focus);
}

.adv-icon {
  font-size: 1.75rem;
  margin-bottom: 14px;
}

.adv-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.adv-text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   DISCORD SUPPORT HUB (MAIN SECTION)
   ========================================================================== */

.discord-section {
  padding: 80px 0;
}

.discord-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-elevated);
}

.discord-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-medium);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 16px;
}

.discord-status-dot {
  width: 7px;
  height: 7px;
  background-color: #23a55a;
  border-radius: 50%;
}

.discord-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.15;
}

.discord-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.discord-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.discord-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-discord-cta {
  background-color: #ffffff;
  color: #000000;
  padding: 13px 24px;
  font-size: 0.875rem;
}

.btn-discord-cta:hover {
  background-color: #e0e0e0;
}

.btn-copy-link {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid var(--border-medium);
  padding: 13px 20px;
  font-size: 0.875rem;
}

.btn-copy-link:hover {
  background-color: var(--bg-tertiary);
  border-color: #ffffff;
}

.discord-card-side {
  display: flex;
  justify-content: center;
}

.discord-mock-box {
  background-color: #0d0e12;
  border: 1px solid #20222c;
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.mock-header {
  border-bottom: 1px solid #1c1d24;
  padding-bottom: 14px;
  margin-bottom: 16px;
}

.mock-server-name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: #ffffff;
}

.mock-online {
  font-size: 0.6875rem;
  color: #23a55a;
  font-weight: 600;
}

.mock-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.mock-channel {
  font-size: 0.8125rem;
  color: #8e9297;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: transparent;
}

.mock-channel.active {
  background-color: #1e1f29;
  color: #ffffff;
  font-weight: 600;
}

.mock-link-preview {
  background-color: #151720;
  border: 1px dashed #2d3142;
  padding: 10px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.75rem;
  color: #ffffff;
  font-family: monospace;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
  padding: 60px 0 90px;
  border-top: 1px solid var(--border-subtle);
}

.faq-container {
  max-width: 780px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-medium);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.25rem;
  line-height: 1;
  color: var(--text-secondary);
  transition: transform var(--transition-fast);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.84375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

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

.footer-slogan {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

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

.footer-links a {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-discord-btn {
  width: 100%;
  margin-bottom: 8px;
}

.footer-discord-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   CHECKOUT MODAL (PIX SIMULATION)
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
  animation: fadeIn 0.2s ease-out;
}

.modal-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: var(--shadow-elevated);
  padding: 32px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1;
}

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

.modal-header {
  margin-bottom: 24px;
}

.modal-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 4px 0 10px;
}

.modal-price-badge {
  display: inline-block;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.modal-price-badge strong {
  color: #ffffff;
}

.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.step-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.step-item.active {
  color: #ffffff;
  font-weight: 600;
}

.step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #222;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
}

.step-item.active .step-num {
  background-color: #ffffff;
  color: #000000;
}

.step-line {
  flex-grow: 1;
  height: 1px;
  background-color: var(--border-medium);
  margin: 0 12px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group input:focus {
  border-color: #ffffff;
}

.form-help {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.btn-block {
  width: 100%;
}

.modal-security-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 22px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.modal-security-note svg {
  width: 16px;
  height: 16px;
  color: #00ff88;
  flex-shrink: 0;
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */

.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background-color: #111111;
  border: 1px solid var(--border-medium);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  box-shadow: var(--shadow-card);
  animation: slideUp 0.3s ease-out;
  pointer-events: auto;
}

/* ==========================================================================
   FLOATING DISCORD BUTTON
   ========================================================================== */

.floating-discord-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  background-color: #161616;
  border: 1px solid #333333;
  color: #ffffff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
  transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.floating-discord-btn:hover {
  transform: scale(1.08);
  background-color: var(--discord-brand);
  border-color: var(--discord-brand);
}

.floating-discord-icon {
  width: 24px;
  height: 24px;
}

.floating-tooltip {
  position: absolute;
  right: 64px;
  background-color: #000000;
  border: 1px solid var(--border-medium);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: all var(--transition-fast);
}

.floating-discord-btn:hover .floating-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVENESS
   ========================================================================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
  .promo-banner-content {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 24px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .discord-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background-color: #000000;
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }

  .nav-menu.open {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .promo-highlights {
    gap: 14px;
    padding: 12px;
  }
}
