  :root{
    --bg:#0c0c0f;           
    --panel:#121217;         
    --muted:#0b0b0d;
    --accent:#1a54d4;        
    --cta:#ff3b3b;           
    --text:#eee;             
    --muted-text:#b8b8bf;
    --whatsapp:#25D366;
  }

  *{box-sizing:border-box}
  html,body{height:100%}
  body{
    margin:0px;
    background: var(--bg);
    font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
    color:var(--text);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height:1.4;
  }
  
  /* =========================
   CURSORES
========================= */

  body, html { cursor: url('Cursor.png'), auto; }
  body:active { cursor: url('CursorPush.png'), auto; }

  a:hover,
  .button-box:hover,
  .info-icon:hover {
    cursor: url('CursorGet.png'), pointer;
  }

/* Cursor bloqueado */
.cursor-dontmove,
button[disabled],
.button-box.disabled,
.no-click {
  cursor: url('CursorDontMove.png') 4 4, not-allowed !important;
}

  * { transition: cursor 0.1s ease; }

  ::-webkit-scrollbar { width: 12px; }
  ::-webkit-scrollbar-track { background: #000; }
  ::-webkit-scrollbar-thumb {
    background-color: #888; border-radius: 6px; border: 3px solid #000;
  }

  * { scrollbar-width: thin; scrollbar-color: #fff #010513; }
  
  /* Cursor ao passar sobre qualquer elemento clicável */
.button-box:hover,
.info-icon:hover,
#lang-switcher button:hover,
.modal-close:hover,
a:hover {
  cursor: url('CursorGet.png'), pointer;
}

  header{
    padding:20px 12px;
    text-align:center;
  }

h1, h3, .btn {
  font-family: 'Cinzel', serif;
}
  header h1{margin:0;font-size:64px;letter-spacing:0.6px}
  header p, header h6{margin:8px 0 0;color:var(--muted-text)}

  main{max-width:940px;margin:48px auto;padding:0 0px}

  .carousel-container {
    position: relative;
    max-width: 940px;
    margin: 48px auto;
    overflow: hidden; /* esconde o que passa da largura */
  }

  .carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 1.2s ease;
    align-items: flex-start;
  }

  .carousel-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: rgba(26, 84, 212, 0.9);
    font-size: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  }

  .carousel-btn.left { left: 10px; }
  .carousel-btn.right { right: 10px; }

  .grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(285px,1fr));
    gap:25px;
  }

  /* layout fallback (caso precise usar .cards) */
  .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  /* ----- CARD (apenas uma definição limpa) ----- */
  .card {
    flex: 0 0 300px; /* largura fixa dos cards em desktop */
    background: rgba(50, 50, 50, 0.5); /* já tá translúcido */
    box-shadow: 0 6px 20px rgba(0,0,0,0.9);
    border-radius: 14px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    max-height: 600px; /* <- limite inicial */
    overflow: hidden;
    transition: transform .5s ease, box-shadow .5s ease, max-height 0.4s ease;
    position: relative;
  }

  .card:hover{
    /* sem deslocamento vertical no hover */
    transform: translateY(0);
  }

  .card.expandido {
    transition: transform 0.4s ease, box-shadow 0.4s ease, max-height 0.4s ease;
    max-height: 1500px; /* cresce quando abre */
  }

  .thumb{
    width:100%;
    height:130px;
    object-fit:cover;
    border-radius:12px;
    display:block;
    margin-bottom:12px;
  }

  h3{font-size:25px;text-align:center;margin:8px 0 6px}
  .lead{text-align:center;color:var(--muted-text);font-size:13px;margin:0 0 8px}

  h6{font-size:19px;text-align:center;margin:15px 0 6px;}

  .mini{
    display:flex;
    flex-direction:column;
    gap:6px;
    align-items:center;
    margin:6px 0 12px;
    color:var(--muted-text);
    font-weight:600;
    font-size:13px;
  }

  .actions{display:flex;gap:10px;justify-content:center;margin-top:15px;flex-wrap:wrap}
  .btn{
    border:0;
    padding:11px 25px;
    border-radius:30px;
    cursor:pointer;
    font-weight:650;
    min-width:120px;
    font-size:17px;
    letter-spacing:0.2px;
    transition:transform .42s ease, box-shadow .42s ease;
  }
  .btn:active{transform:translateY(1px)}
  .btn-video{
    background:#0000007a;
    color: rgba(33,150,243,0.99);
    border:2px solid rgba(33,150,243,0.99);
    box-shadow:0 11px 11px rgba(33,150,243,0.50);

  }

  .btn-video:hover{
    box-shadow:0 11px 11px rgba(33,150,243,0.99);
  }

.btn-details {
  background: var(--cta);  /* mantém vermelho original */
  color: #fff;
  box-shadow: 0 11px 55px rgba(255, 59, 59, 0.9);
  position: relative;
  overflow: hidden;
}

/* Cria o efeito de granulado verde por cima do botão */
.btn-details::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1; /* intensidade da luz */
  pointer-events: none;
  animation: pulse-btn 1.5s infinite;
}

@keyframes pulse-btn {
  0% {
    opacity: 0.1;
    transform: scale(1.0);
    filter: blur(0px);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
    filter: blur(1.5px);
  }
  100% {
    opacity: 0.2;
    transform: scale(1.0);
    filter: blur(0px);
  }
}

/* ===========================
   CAIXA DE DETALHES
   =========================== */
.details {
  box-sizing: border-box;           /* inclui padding na altura total */
  font-size: 14px;                  /* garante em ~14px para cálculos */
  line-height: 1.4;                 /* altura de linha usada para 10 linhas */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.35s ease, margin-top 0.35s ease;
  margin-top: 0;
  padding: 0;
}

/* Quando a caixa abre: limitar a altura a ~10 linhas e ativar scroll */
.details.open {
  max-height: 25em;        /* ~10 linhas (10 * 1.4em) — ajuste aqui se quiser */
  margin-top: 40px;
  padding: 12px 8px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch; /* rolagem suave em iOS */
}

/* ===========================
   SCROLLBAR PERSONALIZADA (aplica só quando .open)
   =========================== */
/* Chrome / Edge / Safari */
.details.open::-webkit-scrollbar {
  width: 12px;   /* mais grossa verticalmente */
  height: 6px;   /* mais fina horizontalmente */
}
.details.open::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
}
.details.open::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2196f3, #0b5ed7);
  border-radius: 10px;
  border: 2px solid rgba(0,0,0,0.06); /* leve contraste/contorno */
}
.details.open::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #42a5f5, #1976d2);
}

/* Firefox */
.details.open {
  scrollbar-width: thin;
  scrollbar-color: #2196f3 rgba(255,255,255,0.03);
}

/* ===========================
   CONTEÚDO (mantém seu estilo de ícones e texto)
   =========================== */
.details p {
  margin: 8px 0;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
}

.details p::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-image: url('checklist.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
  0% { filter: brightness(0.8); }
  50% { filter: brightness(1.3); }
  100% { filter: brightness(0.8); }
}


.price-wrap {
  margin-top: auto;
  text-align: center;
  padding-top: 25px;
}

.old-price {
  display: block;
  text-decoration: line-through;
  color: var(--muted-text);
  font-size: 18px;
}

.promo-price {
  color: var(--cta);
  font-weight: 900;
  font-size: 28px;
  text-shadow: 0 4px 18px rgba(255, 59, 59, 0.18);
}

.note {
  color: var(--muted-text);
  font-size: 12px;
  margin-top: 2px;
}

/* Botão de voltar ao topo */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 92px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cta);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6), 0 6px 20px rgba(255,59,59,0.08);
  z-index: 40;
  transform: translateY(0);
}

.scroll-top::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 16px solid #fff;
  transform: translateY(-2px);
}


.btn-home {
  position: fixed;
  right: 30px;
  bottom: 100px; /* sobe acima do WhatsApp */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(59,130,244,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid var(--accent); /* contorno neon */
  box-shadow: 0 0 12px var(--accent), 0 4px 15px rgba(0,0,0,0.3);
  z-index: 50; /* acima do WhatsApp */
  animation: pulse-home 2s infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-home i {
  font-size: 20px;
  color: var(--accent); /* cor do ícone neon */
  text-shadow: 0 0 4px var(--accent);
}

.btn-home img {
  filter: invert(1);
  /* se precisar, ajuste brilho e contraste:
  filter: invert(1) brightness(1.5); 
  */

}

.btn-home:hover {
  transform: scale(1.3);
  box-shadow: 0 0 20px var(--accent), 0 6px 25px rgba(0,0,0,0.4);
}

@keyframes pulse-home {
  0% {
    transform: scale(1);
    box-shadow: 0 0 12px var(--accent), 0 4px 25px rgba(0,0,0,0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 18px var(--accent), 0 6px 20px rgba(0,0,0,0.55);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 12px var(--accent), 0 4px 15px rgba(0,0,0,0.4);
  }
}

.whatsapp-float{
  position:fixed;
  right:25px;
  bottom:18px;
  width:50px;
  height:50px;
  border-radius:50%;
  background:var(--whatsapp);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.6),0 6px 18px rgba(37,211,102,0.19);
  z-index:40;
  animation: pulse 2s infinite;
}

.whatsapp-float img{width:35px;height:35px;display:block}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37,211,102, 0.9);
  }
  70% {
    transform: scale(1.2);
    box-shadow: 0 0 0 10px rgba(37,211,102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37,211,102, 0);
  }
}

/* =========================
   Footer
========================= */
footer {
  position: relative;
  z-index: 9999;
  text-align: center;
  padding: 40px 20px;
  background: var(--panel);
  border-top: 1px solid rgba(255,255,255,0.1);
}

footer a img {
  pointer-events: auto;
}

  .socials{display:flex;gap:14px;justify-content:center;margin-top:12px}
  .socials img{width:28px;height:28px;filter:grayscale(0.03);opacity:0.95}

/* Vídeo modal */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.video-modal.show {
  display: flex;
  opacity: 1;
}

.video-modal-content {
  max-width: 90%;
  max-height: 80%;
  width: 800px;   /* desktop padrão */
  height: 450px;  /* desktop padrão */
  position: relative;
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* botão fechar */
.close-video {
  position: absolute;
  top: -12px;
  right: -12px;
  font-size: 52px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  z-index: 1010;
}

.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* deixa atrás do conteúdo */
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* cobre toda a tela sem distorcer */
  opacity: 0.15; /* diminui a opacidade */
}

/* RESPONSIVO: centrando cards no mobile */
@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
    height: auto;
    aspect-ratio: 16/9; /* mantém proporção */
  .btn-home {
    bottom: 80px; /* sobe para não encostar no WhatsApp */
    right: 18px;
}
  }

  /* Faz os cards ocuparem 85vw e aplica padding à pista para centralizar o card visível */
  .carousel-track {
    padding-left: calc((100% - 85vw) / 2);
    padding-right: calc((100% - 85vw) / 2);
    gap: 16px;
  }

  .carousel-track .card {
    flex: 0 0 85vw; /* card maior e responsivo no mobile */
    max-width: 420px; /* limite visual */
    min-width: 220px;
  }

.carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-dots button.active {
  background-color: rgba(255,255,255,0.9);
}

  /* remove possíveis margens que atrapalham */
  .card { margin-left: 0; margin-right: 0; }
}

.server-type {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  font-size: 0.95rem;
  margin-bottom: 0.0rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 0 0x rgba(0,0,0,0.3);
}

/* CORES DE CADA VERSÃO — todas com azul médio #2980b9 */
.server-type.oldschool,
.server-type.kor,
.server-type.tai,
.server-type.s4,
.server-type.s6,
.server-type.s6dll {
  background: #2980b9; /* azul médio */
}


.badges-mu {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center; /* ou left, se quiser alinhado à esquerda */
  margin-bottom: 0.8rem;
  margin-top: 20px;
}

.badge-mu {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 20px;
  color: #fff;
  font-weight: 800;
  font-size: 0.80rem; /* 🔹 menor */
  text-transform: uppercase;
  letter-spacing: 1.6px;
  box-shadow: 0 0 0px rgba(0,0,0,0.3);
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.badge-mu:hover {
  transform: scale(1.0);
  box-shadow: 0 0 0px rgba(0,0,0,0.9);
}

/* 🔥 Cores — todas as bordas do círculo cromático com a mesma cor */
.badge-mu.red,
.badge-mu.orange,
.badge-mu.yellow,
.badge-mu.green,
.badge-mu.blue,
.badge-mu.purple {
  border: 2px solid #1e88e5; /* Azul forte */
}

