@font-face {
  font-family: 'Minecraft';
  src: url('Minecraft.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

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

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Minecraft', sans-serif;
  font-size: 112%;
  background: #000;
  overflow-x: hidden;
}

/* ── HEADER ─────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem 1.2rem;
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .header {
    padding: 1.4rem 2rem;
    justify-content: center;
  }
  .hamburger { display: none; }
  .nav-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0 0.6rem;
    width: 100%;
    padding: 0 1.5rem;
    box-sizing: border-box;
  }
  .nav-links a {
    font-size: 0.75rem;
    padding: 0.2rem 0;
  }
}

/* ── HERO ─────────────────────────────────── */
.hero {
  width: 100%;
  height: 100vh;
  background: url('assets/background.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, #000);
  pointer-events: none;
  z-index: 0;
}

.hero-glare {
  position: absolute;
  width: 620px;
  height: 620px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glareSpin 60s linear infinite, glareFadeIn 1.2s ease forwards 4s;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

@keyframes glareFadeIn {
  to { opacity: 0.35; }
}

@keyframes glareSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Hero animations — fire only after loader is gone */
.hero-logo {
  opacity: 0;
}

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  text-align: center;
  max-width: 520px;
  line-height: 1.6;
  margin: 0.6rem auto 0.8rem;
  opacity: 0;
  animation: heroFadeIn 1s ease forwards 0.4s;
}

body:not(.loaded) .hero-desc { opacity: 0; animation: none; }
body.loaded .hero-desc { animation: heroFadeIn 1s ease forwards 0.4s; }

.hero-server-row {
  opacity: 0;
  transform: translateY(16px);
}

body.loaded .hero-logo {
  animation: heroFadeIn 1s ease forwards 0.1s;
}

body.loaded .hero-server-row {
  animation: heroSlideDown 0.7s ease forwards 0.6s;
}

.hero-version-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  opacity: 0;
  animation: heroSlideDown 0.7s ease forwards 0.9s;
}

body.loaded .hero-version-row {
  animation: heroSlideDown 0.7s ease forwards 0.9s;
}

.hero-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3cff6e;
  box-shadow: 0 0 6px #3cff6e;
  flex-shrink: 0;
}

.hero-version {
  color: #ffffff;
  font-family: 'Minecraft', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

@keyframes heroFadeIn {
  to { opacity: 1; }
}

@keyframes heroSlideDown {
  to { opacity: 1; transform: translateY(0); }
}

/* ── NAV ─────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 0.2rem 0.7rem;
  border-radius: 5px;
}

.nav-links a:hover {
  color: #eaa21a;
}

.nav-links a.disabled {
  color: #ffffff;
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}


/* ── LOGO ─────────────────────────────────── */
.logo {
  width: min(380px, 70vw);
  display: block;
  margin-bottom: -4px;
}

/* ── SERVER ROW ──────────────────────────── */
.server-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0;
}

.server-label {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.online {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dot {
  width: 7px;
  height: 7px;
  background: #ff9317;
  border-radius: 50%;
  box-shadow: 0 0 6px #fffc3c;
}

.server-address {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #eaa21a;
  color: #7c2d12;
  font-family: 'Minecraft', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 0.33rem 0.91rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.server-address:hover {
  background: #f5b530;
}

.ip-label {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.7;
}

.player-count {
  color: #984b14;
  font-size: 1rem;
  font-weight: 700;
}

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  transition: transform 0.15s;
}

.copy-btn:hover {
  transform: scale(1.15);
}

.copy-icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.copy-icon .sq1,
.copy-icon .sq2 {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid #7c2d12;
  border-radius: 2px;
  background: transparent;
}

.copy-icon .sq1 {
  top: 0;
  left: 0;
}

.copy-icon .sq2 {
  bottom: 0;
  right: 0;
  background: #eaa21a;
}

/* ── COMANDOS ─────────────────────────────────── */
.comandos {
  background: #000000;
  padding: 0 2rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-desc {
  color: #ffffff;
  font-size: 0.8rem;
  text-align: center;
  max-width: 480px;
  line-height: 1.6;
  margin-top: 0.2rem;
  margin-bottom: 0.8rem;
}

.cmd-server-link {
  color: #eaa21a;
}

.section-title {
  color: #eaa21a;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.cmd-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
  max-width: 520px;
}

.cmd-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 0.8rem;
}

.cmd {
  color: #eaa21a;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  min-width: 120px;
}

.cmd-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  text-align: right;
}

@media (max-width: 600px) {
  .cmd-row {
    gap: 0.8rem;
  }
  .cmd-list {
    max-width: 400px;
  }
}

/* ── LOJA ─────────────────────────────────── */
.loja {
  background: #000;
  padding: 1.5rem 2rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loja-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin-top: 1rem;
}


.loja-grid {
  display: grid;
  grid-template-columns: repeat(3, 270px);
  gap: 1.5rem;
  overflow-x: visible;
  scrollbar-width: none;
  padding: 0.5rem 0.5rem 1rem;
  justify-content: center;
  margin-top: -1.8rem;
}

.loja-grid::-webkit-scrollbar { display: none; }

.loja-card {
  width: 270px;
  height: 390px;
  perspective: 1000px;
  background: transparent;
  border-radius: 12px;
}

@media (max-width: 600px) {
  .loja-carousel-wrapper { overflow: visible; max-width: 100%; display: flex; justify-content: center; }
  .loja-grid {
    grid-template-columns: minmax(0, 320px);
    overflow-x: visible;
    align-items: center;
    justify-items: center;
    padding: 0;
    margin-top: 0;
    gap: 1rem;
    width: 100%;
  }
  .loja-card {
    width: 90vw;
    max-width: 320px;
    height: 380px;
    flex-shrink: unset;
    scroll-snap-align: unset;
  }
}

.loja-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s ease;
  border-radius: 12px;
}

.loja-card.flipped .loja-card-inner {
  transform: rotateY(180deg);
}

.loja-card-front,
.loja-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #252525;
}

.loja-card-back {
  transform: rotateY(180deg);
  background: #1c1c1c;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.2rem 1.3rem 1.1rem;
}

.card-back-close {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.card-back-close:hover { color: #fff; }

.loja-card-img {
  position: relative;
  width: 100%;
  flex: 1;
  overflow: hidden;
}

.loja-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  image-rendering: pixelated;
}

@media (max-width: 600px) {
  .loja-img {
    height: 100%;
    object-fit: cover;
  }
}

.loja-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 0.8rem 0.6rem;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.loja-name {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}

.loja-gems {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
}

.gem-icon {
  width: 20px;
  height: 20px;
  image-rendering: pixelated;
}

.gems-bonus {
  color: #ca3139;
  font-size: 0.8rem;
  font-weight: 700;
}

.loja-btn {
  width: 100%;
  background: #ca3139;
  border: none;
  border-radius: 0;
  color: #fff;
  font-family: 'Minecraft', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
}

.loja-btn:hover {
  background: #eaa21a;
  color: #7c2d12;
}

/* ── UPDATE BLOCK ─────────────────────────────────── */
.update-block {
  background: #000;
  padding: 3rem 2rem 1rem;
  display: flex;
  justify-content: center;
}

.update-card {
  width: 100%;
  max-width: 520px;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
}

.update-banner {
  width: 100%;
  display: block;
  object-fit: contain;
  max-height: 320px;
}

.update-header {
  padding: 1.4rem 1.6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}

.update-body {
  padding: 1rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.update-date {
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.update-tag {
  color: #eaa21a;
}

.update-title {
  color: #eaa21a;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.update-desc {
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1.7;
  max-width: 380px;
}


@media (max-width: 600px) {
  .update-block { padding: 2rem 1rem 0.5rem; }
  .update-banner { max-height: 240px; }
}

/* ── TOP PLAYERS FADE-UP ─────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.podium-row {
  opacity: 0;
}

.podium-row.visible {
  animation: fadeUp 0.55s ease forwards;
}

/* ── TOP PLAYERS ─────────────────────────────────── */
.top-players {
  background: #000;
  padding: 3rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.podium-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  max-width: 380px;
  margin-top: 1.2rem;
}

.podium-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #111;
  border-radius: 8px;
  padding: 0.6rem 1rem;
}

.podium-rank {
  font-size: 1.1rem;
  min-width: 28px;
  text-align: center;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}

.rank-1 { color: #ffd700; }
.rank-2 { color: #c0c0c0; }
.rank-3 { color: #cd7f32; }

.skin-head {
  width: 36px;
  height: 36px;
  image-rendering: pixelated;
  border-radius: 4px;
}

.podium-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.podium-name {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.podium-coins {
  color: #c71836;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.coin-icon {
  width: 22px;
  height: 22px;
  image-rendering: pixelated;
  filter: none;
}

.podium-balances {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.podium-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.7rem;
}

.podium-money {
  color: #f0a020;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.money-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 35% 35%, #ffe066, #f0a020 60%, #b87010);
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(240,160,32,0.5);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .top-players {
    padding: 2.5rem 1.2rem 2rem;
    align-items: stretch;
    text-align: center;
  }
  .podium-list {
    width: 100%;
    max-width: 100%;
  }
  .podium-row {
    width: 100%;
    justify-content: flex-start;
    box-sizing: border-box;
  }
  .podium-rank {
    min-width: 28px;
    text-align: left;
  }
  .skin-head {
    flex-shrink: 0;
  }
}

/* ── CMD MORE ─────────────────────────────────── */
.cmd-more {
  margin-top: 1.2rem;
  background: none;
  border: 1px solid rgba(234,162,26,0.4);
  color: #eaa21a;
  font-family: 'Minecraft', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.45rem 1.4rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.cmd-more:hover { background: #eaa21a; color: #000; }
.cmd-more.hidden { display: none; }

/* ── FOOTER ─────────────────────────────────── */
.footer {
  background: #000;
  padding: 1rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  background: #eaa21a;
  border-radius: 12px;
  padding: 1rem 1.5rem;
}

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

.footer-block {
  width: 72px;
  height: 72px;
  image-rendering: pixelated;
  flex-shrink: 0;
}

.footer-top-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}

.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.footer-ip-btn {
  background: rgba(0,0,0,0.18);
  border: none;
  color: #7c3a00;
  font-family: 'Minecraft', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.footer-ip-btn:hover { background: rgba(0,0,0,0.28); }

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-socials a {
  color: rgba(124,58,0,0.7);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-socials a:hover { color: #7c3a00; }

.footer-copy {
  color: rgba(100,40,0,0.75);
  font-size: 0.72rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
}

@media (max-width: 600px) {
  .footer-top { flex-direction: column; align-items: center; }
  .footer-block { width: 52px; height: 52px; }
  .footer-top-right { align-items: center; }
  .footer-top-row { justify-content: center; }
}

/* ── LOADER ─────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}

.loader.hide {
  display: none;
}

.loader-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.loader-bg::before,
.loader-bg::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  background: url('assets/space.jpg') center top / cover no-repeat;
  animation: scrollUp 60s linear infinite;
}

.loader-bg::after {
  top: -100%;
  animation-delay: -30s;
}

@keyframes scrollUp {
  from { transform: translateY(0); }
  to   { transform: translateY(100%); }
}

.loader-icon {
  position: relative;
  z-index: 2;
  width: 140px;
  height: 140px;
  image-rendering: pixelated;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── CARD BACK (flip) ─────────────────────────────────── */
.qr-box {
  width: min(200px, calc(100% - 2rem));
  aspect-ratio: 1;
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 0.85rem;
  font-weight: 700;
  gap: 0.2rem;
}

.qr-sub {
  font-size: 0.7rem;
  color: #777;
}

.pix-copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.6rem;
}

.pix-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pix-copy-btn {
  background: #eaa21a;
  border: none;
  color: #fff;
  font-family: 'Minecraft', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.pix-copy-btn:hover { background: #f5b530; }

.payment-warning {
  background: rgba(234,162,26,0.08);
  border-left: 3px solid #eaa21a;
  color: rgba(255,255,255,0.55);
  font-size: 0.65rem;
  line-height: 1.5;
  padding: 0.35rem 0.6rem;
  text-align: left;
  width: 100%;
}

/* ── MODAL ─────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: #111;
  border: none;
  border-radius: 0;
  padding: 2rem;
  max-width: 360px;
  width: 90%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-text {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.6;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.modal-cancel {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  font-family: 'Minecraft', sans-serif;
  font-size: 0.9rem;
  padding: 0.5rem 1.2rem;
  border-radius: 0;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.modal-cancel:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.modal-confirm {
  background: #eaa21a;
  border: none;
  color: #7c2d12;
  font-family: 'Minecraft', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.modal-confirm:hover {
  background: #f5b530;
}

@media (max-width: 600px) {
  .hide-mobile { display: none !important; }



  .loja {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .loja-carousel-wrapper {
    width: 100%;
  }

  .loja-grid {
    margin-top: -0.5rem;
  }
}

/* ── TOAST ─────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1a1a1a;
  color: #fff;
  font-family: 'Minecraft', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  border: 2px solid #3a3a3a;
  letter-spacing: 0.05em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-check {
  color: #4caf28;
  font-size: 1rem;
  image-rendering: pixelated;
  line-height: 1;
}

/* ── INVESTOR CAROUSEL ─────────────────────────────────── */
.investidores-title {
  margin-bottom: 1.2rem;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
}

.investidores-section {
  background: #000;
  padding: 2.5rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.investidores-track-wrapper {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.investidores-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: investScroll 30s linear infinite;
}

@keyframes investScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--scroll-to, -50%)); }
}

.investidor-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  margin-right: 2.5rem;
}

.investidor-head {
  width: 32px;
  height: 32px;
  image-rendering: pixelated;
  border-radius: 3px;
  display: block;
  align-self: center;
  flex-shrink: 0;
}

.investidor-name {
  color: #fff;
  font-family: 'Minecraft', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  line-height: 1;
  align-self: center;
  position: relative;
  top: 0.1em;
}

.investidores-thanks {
  color: rgba(255,255,255,0.35);
  font-family: 'Minecraft', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

/* ── LOJA DISCLAIMER ─────────────────────────────────── */
.loja-disclaimer {
  color: rgba(255,255,255,0.4);
  font-size: 0.62rem;
  text-align: center;
  max-width: 480px;
  line-height: 1.7;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1rem;
}

/* ── MEMORIAS ─────────────────────────────────── */
.memorias-section {
  background: #000;
  padding: 3rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.memorias-slideshow {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16/9;
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}

.memorias-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.memoria-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.memoria-slide.active {
  opacity: 1;
}

.memoria-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.memorias-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.15);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.memorias-dots {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.memorias-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s;
  cursor: pointer;
}

.memorias-dot.active {
  background: #eaa21a;
}

@media (max-width: 600px) {
  .memorias-slideshow { aspect-ratio: 4/3; }
}

/* ── FIM DO MUNDO ─────────────────────────────────── */
.fim-mundo {
  background: #000;
  padding: 1.5rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fim-countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.fim-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.fim-num {
  color: #ff2020;
  font-family: 'Minecraft', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 0 12px rgba(255,32,32,0.5);
  line-height: 1;
}

.fim-label {
  color: rgba(255,32,32,0.5);
  font-family: 'Minecraft', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fim-sep {
  color: #ff2020;
  font-family: 'Minecraft', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.7;
}

@media (max-width: 600px) {
  .fim-num { font-size: 1.4rem; }
  .fim-sep { font-size: 1.2rem; }
}
