/* no comments requested */
:root{
  --bg: #131313;
  --panel: rgba(255,255,255,.06);
  --panel-2: rgba(255,255,255,.085);
  --border: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --muted-2: rgba(255,255,255,.52);
  --accent: #ff4655;
  --accent-2: #ff9ea7;
  --shadow: 0 16px 40px rgba(0,0,0,.55);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1160px;
}

*{ box-sizing: border-box; }
img, svg, video, canvas, audio, iframe, embed, object{
  display: block;
  max-width: 100%;
}
[hidden]{ display: none !important; }
html,body{ height: 100%; overflow-x: hidden; }
body{
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a{ color: inherit; text-decoration: none; }
button, input{ font: inherit; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip{
  position: absolute;
  left: -9999px;
  top: 10px;
  padding: 10px 14px;
  background: #000;
  border: 1px solid var(--border);
  border-radius: 10px;
  z-index: 9999;
}
.skip:focus{ left: 10px; }

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(7,9,12,.65);
  backdrop-filter: blur(10px);
  width: 100%;
}
.topbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}
.brand-mark{
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #0f0f0f url("/imagens/logo.png") center/contain no-repeat;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.brand-name{
  display: grid;
  line-height: 1.05;
}
.brand-name strong{
  letter-spacing: .2px;
  font-weight: 700;
  font-size: 14px;
}
.brand-name span{
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
}
.nav a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.nav a svg{
  width: 15px;
  height: 15px;
  opacity: .9;
}
.nav a:hover{
  background: rgba(0,180,255,.10);
  border-color: rgba(0,180,255,.22);
  color: rgba(255,255,255,.96);
}
.nav a[aria-current="page"]{
  background: rgba(0,180,255,.14);
  color: rgba(255,255,255,.98);
  border-color: rgba(0,180,255,.26);
}

.actions{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  justify-content: flex-end;
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2px;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn svg{
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  display: block;
  stroke: currentColor;
}
.actions .btn svg{
  width: 18px;
  height: 18px;
  opacity: 1;
  stroke: #111111;
  stroke-width: 2.2;
}
.btn:hover{
  background: rgba(255,255,255,.09);
  transform: translateY(-1px);
}
.btn:active{ transform: translateY(0); }
.btn-primary{
  background: #ffffff;
  border-color: rgba(255,255,255,.82);
  color: #111111;
}
.btn-primary:hover{ background: #f2f2f2; }

.icon-btn{
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  cursor: pointer;
}
.icon-btn svg{ width: 18px; height: 18px; }

.mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.mobile-menu[data-open="true"]{ display: block; }
.drawer-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(8px);
}
.drawer{
  position: absolute;
  top: 0;
  left: 0;
  height: 100dvh;
  width: min(360px, 92vw);
  background: #0f0f0f;
  border-right: 1px solid rgba(255,255,255,.12);
  box-shadow: 20px 0 60px rgba(0,0,0,.55);
  display: flex;
  flex-direction: column;
  padding: 18px 16px 16px;
  overflow-y: auto;
}
.drawer-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.drawer-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.drawer-brand strong{
  font-size: 14px;
  letter-spacing: .2px;
}
.drawer-close{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  cursor: pointer;
}
.drawer-close svg{ width: 18px; height: 18px; }
.drawer-nav{
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.drawer-link{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.86);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .2px;
  position: relative;
}
.drawer-link svg{
  width: 18px;
  height: 18px;
  opacity: .95;
}
.drawer-link:hover{
  background: rgba(255,255,255,.06);
}
.drawer-link[aria-current="page"]{
  background: rgba(0,180,255,.14);
  border-color: rgba(0,180,255,.22);
  color: rgba(255,255,255,.94);
}
.drawer-link[aria-current="page"]::after{
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(0,180,255,.95);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.drawer-langs{
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lang-pill{
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.72);
  font-weight: 800;
  font-size: 12px;
}
.lang-pill.is-active{
  color: rgba(255,255,255,.92);
  border-color: rgba(0,180,255,.26);
  background: rgba(0,180,255,.12);
}
.drawer-actions{
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  gap: 10px;
}
.drawer-actions .btn{
  width: 100%;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 16px;
}

.no-scroll{ overflow: hidden; }

main{ padding: 34px 0 64px; }

.hero{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: stretch;
}
.hero-center{
  grid-template-columns: 1fr;
  place-items: center;
  padding: 54px 0 22px;
}
.hero-center-content{
  text-align: center;
  width: min(860px, 100%);
}
.hero-center .kicker{ margin: 0 auto; }
.hero-center .hero-cta{ justify-content: center; }
.accent-text{
  background: linear-gradient(120deg, #f2f2f2 0%, #a9a9a9 35%, #ffffff 50%, #8e8e8e 70%, #f2f2f2 100%);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.16));
  animation: accentGrayFlow 3.2s linear infinite;
}

@keyframes accentGrayFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.hero-card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.hero-card::before{
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(closest-side at 30% 35%, rgba(255,70,85,.26), transparent 60%),
              radial-gradient(closest-side at 70% 55%, rgba(255,158,167,.15), transparent 60%);
  filter: blur(14px);
  pointer-events: none;
}
.hero-card > *{ position: relative; }

.kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .3px;
}
.dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,.12);
}

.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -.6px;
}
.hero p{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 52ch;
}
.hero-cta{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-metrics{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.metric{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  padding: 12px 12px;
}
.metric strong{
  display: block;
  font-size: 16px;
  letter-spacing: -.2px;
}
.metric span{
  display: block;
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 600;
}

.hero-side{
  display: grid;
  gap: 12px;
}
.panel{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 18px;
}
.panel h3{
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: .2px;
}
.panel p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.badges{
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.86);
  font-weight: 700;
  font-size: 12px;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 32px;
}
.kicker-small {
  color: #00b4ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}
.title-large {
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 900;
  margin: 0;
  letter-spacing: -1px;
  color: #ffffff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .category-card {
    padding: 16px;
    border-radius: 16px;
  }

  .category-card-title {
    font-size: 18px;
  }

  .category-card-desc {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .btn-large {
    width: 100%;
    justify-content: center;
    padding: 20px;
    font-size: 13px;
    border-radius: 20px;
  }
}

.category-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #1a1a1a;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  text-decoration: none;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.2);
}

.category-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 1;
}

.category-card:hover .category-card-bg {
  transform: scale(1.05);
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  z-index: 2;
}

.category-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #00b4ff;
  color: white;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 99px;
  z-index: 3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,180,255,0.3);
}

.category-card-content {
  position: relative;
  z-index: 3;
}

.category-card-title {
  font-size: 24px;
  font-weight: 900;
  color: white;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.category-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 16px 0;
  font-weight: 500;
}

.category-card-link {
  font-size: 11px;
  font-weight: 800;
  color: #00b4ff;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-actions-main {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-large {
  background: white;
  color: black;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-large:hover {
  background: #f0f0f0;
  transform: scale(1.02);
}

.btn-large svg {
  width: 18px;
  height: 18px;
}

/* --- Estilos Cabeçalho --- */
.btn-managed {
  background: rgba(255,255,255,0.1) !important;
  color: #888 !important;
  border-radius: 50% !important;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
}

.btn-managed:hover {
  background: rgba(255,255,255,0.15) !important;
  color: #fff !important;
}

/* --- Barra de Categorias Premium --- */
.category-nav-premium {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 8px;
  margin-bottom: 40px;
}

.category-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

@media (max-width: 768px) {
  .category-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.category-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  background: transparent;
  color: #888;
}

.category-nav-item i, .category-nav-item svg {
  width: 24px;
  height: 24px;
}

.category-nav-item span {
  font-size: 14px;
  font-weight: 700;
}

/* Cores por Categoria */
/* Valorant (Azul) */
.category-nav-item.is-valorant.is-active {
  background: rgba(0, 180, 255, 0.05);
  border-color: #00b4ff;
  color: #00b4ff;
}

/* LoL / Riot (Azul tbm) */
.category-nav-item.is-riot.is-active,
.category-nav-item.is-league.is-active {
  background: rgba(0, 180, 255, 0.05);
  border-color: #00b4ff;
  color: #00b4ff;
}

/* Fortnite (Roxo) */
.category-nav-item.is-fortnite.is-active {
  background: rgba(168, 85, 247, 0.05);
  border-color: #a855f7;
  color: #a855f7;
}

/* Minecraft (Verde) */
.category-nav-item.is-minecraft.is-active {
  background: rgba(34, 197, 94, 0.05);
  border-color: #22c55e;
  color: #22c55e;
}

/* Steam / Outros (Azul Padrão) */
.category-nav-item.is-steam.is-active,
.category-nav-item.is-active {
  background: rgba(0, 180, 255, 0.05);
  border-color: #00b4ff;
  color: #00b4ff;
}

.section-header-contas-dynamic {
  margin-bottom: 20px;
}

.products-filter-container {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.filter-btn.active {
  border-color: #00b4ff;
  color: #00b4ff;
  background: rgba(0, 180, 255, 0.05);
  box-shadow: inset 0 0 0 1px #00b4ff;
}

/* --- Layout Contas Premium (Grid) --- */
.section-header-contas {
  margin-bottom: 40px;
  text-align: center;
}

.accounts-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

@media (max-width: 480px) {
  .accounts-grid-premium {
    grid-template-columns: 1fr;
  }
}

.account-card-premium {
  background: #111;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.account-card-premium:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
}

.card-image-area {
  background: #1a1a1a;
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-main-weapon {
  max-width: 85%;
  max-height: 100px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.skin-single-column {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}

.skin-two-rows {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
  z-index: 1;
  overflow: hidden;
}

.skin-row {
  position: relative;
  overflow: hidden;
}

.skin-two-rows .skin-row .scrolling-skin-solo {
  top: 50%;
  left: 50%;
  margin-left: -75px;
}

.fn-cover-grid {
  position: absolute;
  inset: 0;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 14px 16px;
  place-items: center;
  z-index: 2;
}

.fn-cover-grid-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.55));
}

.placeholder-skin-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}

.placeholder-skin-img span {
  font-size: 11px;
  color: var(--muted-2);
  font-weight: 700;
  text-transform: uppercase;
}

.fn-cover-placeholder {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 900;
  font-size: 24px;
}

.scrolling-skin-solo {
  width: 150px; /* Tamanho maior para destaque */
  position: absolute;
  opacity: 0;
  will-change: transform, opacity;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6));
  /* Ciclo total de 20 segundos (10 skins x 2s cada) */
  animation: skinRiseSolo 20s infinite linear;
}

@keyframes skinRiseSolo {
  /* Cada skin ocupa exatamente 10% do ciclo (2s de 20s) */
  0% { transform: translateY(120px); opacity: 0; }
  1% { opacity: 1; }
  9% { opacity: 1; }
  10% { transform: translateY(-120px); opacity: 0; }
  100% { transform: translateY(-120px); opacity: 0; }
}

.card-indicators {
  position: absolute;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.indicator-dots {
  width: 30px;
  height: 4px;
  background: #00b4ff;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0,180,255,0.5);
}

.indicator-plus {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 700;
}

.card-info-area {
  padding: 20px;
}

.card-rank-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.rank-badge {
  background: rgba(255,255,255,0.05);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.skins-total {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.delivery-badge {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  padding: 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.card-region {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.card-product-title {
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.card-footer-price {
  margin-bottom: 20px;
}

/* --- Seção Como Funciona (Novo Design) --- */
.section-how {
  padding: 60px 0;
}

.section-header-how {
  margin-bottom: 40px;
}

.kicker-blue {
  color: #00b4ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.title-giant {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  letter-spacing: -2px;
  line-height: 1;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.how-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.how-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
}

.how-number {
  font-size: 32px;
  font-weight: 900;
  color: rgba(0, 180, 255, 0.15);
  display: block;
  margin-bottom: 16px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -1px;
}

/* --- Página de Avaliações (Estilo Royal) --- */
.reviews-hero {
  text-align: center;
  padding: 80px 0 40px;
}

.reviews-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.reviews-hero p {
  color: var(--muted);
  font-size: 18px;
}

.reviews-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.rating-score {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}

.rating-stars {
  color: #fbbf24;
  font-size: 20px;
}

.rating-count {
  color: var(--muted);
  font-size: 14px;
}

.reviews-grid-royal {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}

.review-card-royal {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease;
}

.review-card-royal:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-user {
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
}

.review-stars {
  color: #fbbf24;
  font-size: 14px;
}

.review-product {
  font-size: 12px;
  font-weight: 700;
  color: #00b4ff;
  text-transform: uppercase;
  background: rgba(0, 180, 255, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  align-self: flex-start;
}

.review-content {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .reviews-grid-royal {
    grid-template-columns: 1fr;
  }
}

/* --- Slider de Avaliações (Home) --- */
.reviews-slider-container {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  width: 100%;
}

.reviews-slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-reviews 40s linear infinite;
}

.reviews-slider-track:hover {
  animation-play-state: paused;
}

.review-card-royal.home-card {
  width: 380px;
  flex-shrink: 0;
}

@keyframes scroll-reviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-400px * 10)); } /* (width 380 + gap 20) * 10 cards */
}

@media (max-width: 992px) {
  .review-card-royal.home-card {
    width: 300px;
  }
  @keyframes scroll-reviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-320px * 10)); } /* (width 300 + gap 20) * 10 */
  }
}

@media (max-width: 480px) {
  .review-card-royal.home-card {
    width: 280px;
  }
  @keyframes scroll-reviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 10)); } /* (width 280 + gap 20) * 10 */
  }
}

/* --- Seção Discord (Novo Design) --- */
.section-discord {
  padding: 80px 0;
  background: var(--bg);
  text-align: center;
}

.discord-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.discord-icon-main {
  color: #fff;
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.discord-content h2 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
}

.discord-content p {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0;
  line-height: 1.5;
}

.btn-discord-royal {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 16px 40px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 20px;
  text-transform: uppercase;
}

.btn-discord-royal:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-discord-royal svg {
  opacity: 0.8;
}

@media (max-width: 480px) {
  .section-discord {
    padding: 60px 20px;
  }
  .discord-content h2 {
    font-size: 32px;
  }
  .discord-content p {
    font-size: 16px;
  }
}

.how-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.how-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .section-header-how {
    text-align: center;
  }
  
  .how-grid {
    gap: 12px;
  }

  .how-card {
    padding: 24px 20px;
  }

  .title-giant {
    font-size: 36px;
  }
}

.price-value {
  font-size: 20px;
  font-weight: 900;
  color: #22c55e;
}

.btn-card-explore {
  width: 100%;
  background: #fff;
  color: #000;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.btn-card-explore:hover {
  background: #e0e0e0;
}
.product-detail-page {
  padding-top: 40px;
  padding-bottom: 80px;
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .product-hero { grid-template-columns: 1fr; }
}

.product-main-image-container {
  background: #1a1a1a;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  aspect-ratio: 16/9;
}

.product-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-main-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- Layout Valorant PDP (Royal Store Style) --- */
.valorant-pdp-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .valorant-pdp-layout {
    display: flex;
    flex-direction: column;
  }
  
  .valorant-sidebar {
    position: static; /* Remove o sticky no mobile para não sobrepor */
    order: -1;
    margin-bottom: 20px;
  }
}

.product-skins-section-v2 {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.section-header-skins-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 20px;
}

@media (max-width: 600px) {
  .section-header-skins-v2 {
    flex-direction: column;
    align-items: flex-start;
  }
  .skin-search-container {
    width: 100%;
  }
}

.skin-search-container {
  position: relative;
  width: 250px;
}

.skin-search-field {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 15px 10px 40px;
  color: #fff;
  font-size: 14px;
  transition: all 0.2s ease;
}

.skin-search-field:focus {
  outline: none;
  border-color: #a855f7;
  background: rgba(255, 255, 255, 0.08);
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.valorant-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.v-sidebar-card {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10;
}

.v-product-title {
  font-size: 24px;
  font-weight: 800;
  margin: 10px 0;
}

.v-specs-list {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.v-spec-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.v-spec-item span {
  color: var(--muted);
  font-size: 13px;
}

.v-spec-item strong {
  font-size: 13px;
  font-weight: 700;
}

.v-delivery-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 10px;
  color: #22c55e;
  font-size: 12px;
  font-weight: 600;
}

/* --- Card Full Acesso (Valorant) --- */
.v-full-access-card {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 15px;
  position: relative;
  z-index: 10;
}

.v-full-access-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.v-full-access-header h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}

.v-full-access-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.v-full-access-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.v-full-access-list li {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.v-full-access-list li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #00b4ff;
  border-radius: 50%;
}

/* --- Layout Fortnite PDP (Royal Store Style) --- */
.fortnite-pdp-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .fortnite-pdp-layout {
    display: flex;
    flex-direction: column;
  }
  
  .fortnite-sidebar {
    order: -1;
    margin-bottom: 20px;
  }
}

.fortnite-items-section {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.fortnite-items-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 20px;
}

@media (max-width: 650px) {
  .fortnite-items-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .fortnite-tabs {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
  }
}

.fortnite-tabs {
  display: flex;
  gap: 8px;
}

.fn-tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.fn-tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.fn-tab-btn.is-active {
  background: #a855f7;
  color: #fff;
  border-color: #a855f7;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.fortnite-sidebar .v-sidebar-card {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mc-capes-admin-wrapper {
  background: rgba(0, 0, 0, 0.2);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.mc-cape-input-group {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.mc-cape-input-group input {
  flex: 1;
}

.mc-capes-list-admin {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-mc-cape-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 4px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.admin-mc-cape-item img {
  width: 20px;
  height: 30px;
  object-fit: contain;
}

.admin-mc-cape-item .remove-cape {
  color: #ef4444;
  cursor: pointer;
  font-weight: bold;
}

.mc-cape-badge-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 8px;
  width: 100px;
}

.mc-cape-badge-v2 img {
  width: 60px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

.placeholder-cape {
  width: 60px;
  height: 90px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  position: relative;
}

.placeholder-cape::after {
  content: '?';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.2);
  font-size: 24px;
  font-weight: 900;
}

.mc-cape-badge-v2 span {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  word-break: break-all;
}

/* --- Layout Minecraft PDP (Royal Store Style) --- */
.minecraft-pdp-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .minecraft-pdp-layout {
    grid-template-columns: 1fr;
  }
}

.minecraft-main-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.mc-capes-section {
  background: #1a1a1a;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.mc-capes-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mc-capes-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mc-capes-count {
  color: #22c55e;
  font-size: 13px;
  font-weight: 700;
}

.mc-capes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
}

.mc-cape-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}

.mc-skin-display {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
}

.mc-skin-display img {
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.mc-sidebar-card {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 100px;
}

.mc-sidebar-card h1 {
  font-size: 24px;
  font-weight: 800;
  margin: 10px 0;
}

.mc-specs-list {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.mc-spec-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mc-spec-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.mc-spec-item strong {
  font-size: 13px;
  font-weight: 700;
}

.category-badge-simple {
  background: rgba(0, 180, 255, 0.1);
  color: #00b4ff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 16px;
}

.product-title-large {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin: 0 0 12px 0;
  line-height: 1.1;
}

.product-price-large {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 32px;
}

.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.spec-item {
  background: rgba(255,255,255,0.03);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}

.spec-item label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}

.spec-item strong {
  font-size: 16px;
  color: #fff;
}

.btn-buy-now {
  background: #22c55e;
  color: #fff;
  padding: 20px;
  border-radius: 16px;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 1px;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.2);
}

.btn-buy-now:hover {
  transform: scale(1.02);
  background: #16a34a;
  box-shadow: 0 6px 25px rgba(34, 197, 94, 0.4);
}

.product-description-section {
  margin-bottom: 60px;
  padding: 32px;
  background: rgba(255,255,255,0.02);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
}

.product-description-section h3 {
  margin: 0 0 16px 0;
  font-size: 18px;
}

.product-description-section p {
  color: var(--muted);
  line-height: 1.6;
}

/* --- Grid de Skins Estilo LZT --- */
.product-skins-section {
  background: #111111;
  padding: 40px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.05);
}

.section-header-skins {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.skins-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.skins-title-group h2 {
  font-size: 24px;
  margin: 0;
}

.btn-filter-skins {
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.valorant-skins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

@media (max-width: 600px) {
  .valorant-skins-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .skin-card-lzt {
    border-radius: 12px;
  }
  
  .skin-img-container {
    padding: 10px;
  }
  
  .skin-name-footer {
    padding: 8px;
    font-size: 11px;
  }
}

.skin-card-lzt {
  background: #1e293b; /* Tom azulado escuro das skins */
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.skin-card-lzt:hover {
  border-color: #a855f7;
}

.skin-rarity-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(234, 179, 8, 0.2);
  color: #eab308;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 2;
}

.skin-img-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.skin-img-container img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.skin-name-footer {
  background: rgba(0,0,0,0.2);
  padding: 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.skins-footer-actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-more-items {
  background: #1a1a1a;
  color: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}
.steps-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.steps-list li{
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.86);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}
.steps-list strong{ font-weight: 900; color: rgba(255,255,255,.95); }
.reviews-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.reviews-list li{
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.86);
}
.stars{
  display: inline-flex;
  gap: 4px;
  color: rgba(0,180,255,.95);
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 12px;
  margin-right: 8px;
}
.who{
  color: rgba(255,255,255,.66);
  font-weight: 800;
  font-size: 12px;
}
.stats-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.stats-list li{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.82);
  font-weight: 800;
  font-size: 12px;
}
.stats-list strong{
  color: rgba(255,255,255,.95);
  letter-spacing: -.2px;
}
.faq{
  display: grid;
  gap: 10px;
}
.faq-details{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  overflow: hidden;
}
.faq-details summary{
  padding: 14px 14px;
  cursor: pointer;
  list-style: none;
  font-weight: 900;
  font-size: 13px;
  color: rgba(255,255,255,.92);
}
.faq-details summary::-webkit-details-marker{ display: none; }
.faq-answer{
  padding: 0 14px 14px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.55;
}
.link-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.link-list li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.link-row{
  font-weight: 900;
  font-size: 13px;
  color: rgba(255,255,255,.92);
}
.link-meta{
  color: rgba(255,255,255,.60);
  font-weight: 800;
  font-size: 12px;
}
.item-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.item-list li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.item-main{
  display: grid;
  gap: 2px;
  min-width: 0;
}
.item-sub{
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 800;
}
.item-price{
  font-weight: 900;
  color: rgba(255,255,255,.95);
  letter-spacing: -.2px;
  white-space: nowrap;
}
.auth{
  width: min(520px, 100%);
  margin: 46px auto 0;
}
.auth h1{
  margin: 14px 0 10px;
  font-size: 28px;
  letter-spacing: -.2px;
}
.auth-sub{
  margin: 0;
  color: rgba(255,255,255,.70);
  font-size: 13px;
  line-height: 1.55;
}
.section-header{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.section-header h2{
  margin: 0;
  font-size: 18px;
  letter-spacing: -.2px;
}
.section-header p{
  margin: 0;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 600;
}

.grid-3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.grid-2{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}
.card h3{
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: .2px;
}
.card p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.card .meta{
  margin-top: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-weight: 700;
}
.chip{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}
.price{
  margin-left: auto;
  color: rgba(255,255,255,.92);
}
.price strong{
  color: rgba(255,255,255,.95);
  letter-spacing: -.2px;
}

.steps{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.step{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 16px;
}
.step .num{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,70,85,.16);
  border: 1px solid rgba(255,70,85,.25);
  font-weight: 800;
}
.step h4{
  margin: 10px 0 6px;
  font-size: 13px;
}
.step p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.reviews{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.review{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 18px;
}
.stars{
  display: inline-flex;
  gap: 4px;
  color: rgba(0,180,255,.95);
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 12px;
}
.review p{
  margin: 10px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 13px;
  line-height: 1.55;
}
.review .who{
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
}

.faq{
  display: grid;
  gap: 10px;
}
.faq-item{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
}

.faq-q{
  width: 100%;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.92);
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
  text-align: left;
}
.faq-a{
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  display: none;
}
.faq-item[data-open="true"] .faq-a{ display: block; }
.chev{
  width: 28px;
  height: 28px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.16);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.faq-item[data-open="true"] .chev svg{ transform: rotate(180deg); }
.chev svg{ transition: transform .2s ease; }

.cta{
  border-radius: 22px;
  border: 1px solid rgba(255,70,85,.25);
  background: linear-gradient(135deg, rgba(255,70,85,.18), rgba(255,158,167,.08));
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  overflow: hidden;
}
.cta h3{
  margin: 0;
  font-size: 16px;
  letter-spacing: -.2px;
}
.cta p{
  margin: 6px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.5;
}

.footer{
  margin-top: 80px;
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,255,255,.05);
  background: #0f0f0f;
  color: rgba(255,255,255,.6);
}

.footer-container {
  width: 100%;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
  width: 100%;
}

.footer-brand-section .brand {
  margin-bottom: 20px;
}

.footer-cnpj {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 400px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text);
  transform: translateY(-3px);
}

.footer-links-column h4 {
  font-size: 14px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-column a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links-column a:hover {
  color: var(--text);
}

.footer-bottom {
  padding: 30px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: left;
  font-size: 13px;
  color: var(--muted-2);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.page-title{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.page-title h1{
  margin: 0;
  font-size: 22px;
  letter-spacing: -.2px;
}
.page-title p{
  margin: 0;
  color: var(--muted-2);
  font-weight: 600;
  font-size: 13px;
}

.form{
  display: grid;
  gap: 12px;
  margin-top: 10px;
}
.field{
  display: grid;
  gap: 6px;
}
.field label{
  font-size: 12px;
  color: rgba(255,255,255,.78);
  font-weight: 800;
}
.field input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.9);
  outline: none;
}
.field input:focus{
  border-color: rgba(255,70,85,.36);
  box-shadow: 0 0 0 4px rgba(255,70,85,.10);
}
.input-like{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.9);
  outline: none;
}
.helper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255,255,255,.64);
  font-size: 12px;
  font-weight: 600;
}
.helper a{ color: rgba(255,255,255,.82); }

.feedback{
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 700;
}
.feedback.info{ color: rgba(255,255,255,.74); }
.feedback.ok{ color: #8df8b0; }
.feedback.error{ color: #ff9ba5; }

.mini-thumb{
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.14);
}

.admin-tabs{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.admin-tabs .btn.is-active{
  background: rgba(0,180,255,.14);
  border-color: rgba(0,180,255,.22);
}
.admin-panel{
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.admin-panel h3{
  margin: 0 0 10px;
  font-size: 16px;
}
.admin-list{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.admin-list li{
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  font-size: 12px;
}

.admin-item-clickable {
  cursor: pointer;
  transition: all 0.2s ease;
}

.admin-item-clickable:hover {
  background: rgba(255,255,255,0.05) !important;
  border-color: var(--accent) !important;
  transform: translateX(5px);
}

.admin-list strong{
  font-size: 13px;
}

@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
  .hero-metrics{ grid-template-columns: repeat(3, minmax(0,1fr)); }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .reviews{ grid-template-columns: 1fr; }
}
@media (max-width: 840px){
  .nav{ display: none; }
  .actions{ min-width: auto; }
  .brand{ min-width: auto; }
  .topbar-inner{ gap: 8px; }
  .actions .btn{ display: none; }
  .icon-btn{ display: grid; place-items: center; }
  .mobile-menu[data-open="true"]{ display: block; }
  main{ padding-top: 22px; }
  .cta, .footer-inner, .section-header{ flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-inner{ text-align: center; align-items: center; }
}

/* --- PIX Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.pix-modal {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  width: 100%;
  max-width: 450px;
  padding: 32px;
  text-align: center;
  position: relative;
  animation: modalScale 0.3s ease-out;
}

@keyframes modalScale {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.pix-qr-container {
  background: white;
  padding: 16px;
  border-radius: 16px;
  width: 200px;
  height: 200px;
  margin: 24px auto;
}

.pix-qr-container img {
  width: 100%;
  height: 100%;
}

.pix-copy-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px;
  margin: 16px 0;
  display: flex;
  gap: 12px;
  align-items: center;
}

.pix-code-text {
  flex: 1;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.btn-copy-pix {
  background: #00b4ff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: #888;
  cursor: pointer;
}
