/* =========================================
   RESET & BASE
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pink: #720081;
  --pink-light: #470050;
  --yellow: #ffea00;
  --cyan: #7cde21;
  --violet: #072000;
  --bg-dark: #470050;
  --panel: #470050;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-dark);
  color: #fff;
  overflow-x: hidden;
  line-height: 1.4;
}

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

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

.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

/* Espaçamento padrão das sections (ajustado) */
.section {
  padding: 80px 0;
}

/* =========================================
   BOTÕES
========================================= */
.btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  transition: 0.25s;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-primary {
  background: var(--cyan);
  color: #000;
  box-shadow: 0 0 12px #7cde21;
}

.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 0 20px #7cde21;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* =========================================
   HEADER
========================================= */
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 12px 0;
  padding-bottom: 1px;
  background: #5c0068;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cyan);
  text-shadow: 0 0 10px #7cde21;
}

/* Navegação desktop */
.main-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: 0.3s;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--cyan);
}

/* CTA header */
.header-cta .btn-primary {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  box-shadow: 0 0 14px rgba(255, 0, 102, 0.4);
}

/* Menu mobile (controlado via JS, se quiser evoluir depois) */
.menu-toggle {
  background: none;
  border: none;
  display: none;
  width: 32px;
  height: 32px;
}

/* =========================================
   HERO
========================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 20% 30%, #1c1124 0%, #0b0b12 80%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  mix-blend-mode: screen;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background-size: cover;
  opacity: 0.18;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* HERO left */
.hero-content {
  width: 50%;
  max-width: 620px;
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 800;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 20px;
}

.hero-benefits {
  list-style: none;
  margin-bottom: 20px;
}

.hero-benefits li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-benefits li::before {
  content: "✔";
  color: var(--cyan);
  font-weight: 700;
}

/* HERO badges */
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.badge {
  padding: 6px 14px;
  background: var(--pink);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 0 14px #000000;
}

/* HERO ctas */
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-note {
  font-size: 0.8rem;   
  opacity: 0.7;
}

/* HERO right mockup */
.hero-visual {
  width: 45%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 10px;
}

.pack-mockup {
  width: 340px;
  height: 460px;
  max-width: 100%;
  border-radius: 14px;
  background: #111;
  border: 3px solid var(--pink);
  box-shadow: 0 0 22px #fd27fc;
  overflow: hidden;
  transform: rotate(-5deg);
  transition: 0.35s ease;
  position: relative;
}

.pack-mockup:hover {
  transform: rotate(-2deg) scale(1.03);
  box-shadow: 0 0 40px rgba(255, 0, 160, 0.9);
}

.pack-image-placeholder {
  width: 100%;
  height: 100%;
  background: #000;
}

.pack-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.25) brightness(1.05);
}

.pack-ribbon {
  position: absolute;
  top: 14px;
  left: -18px;
  background: var(--yellow);
  color: #000;
  padding: 6px 36px;
  font-weight: 800;
  font-size: 0.8rem;
  transform: rotate(-12deg);
  box-shadow: 0 0 12px rgba(255, 255, 0, 0.7);
}

/* GRID PRINCIPAL */
/* GRID PRINCIPAL */
.xbox-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 80px auto;
  width: 90%;
  max-width: 1400px;
}

/* CARD BASE */
.card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  padding: 20px;
  height: 250px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.25s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  background-size: cover;
  background-position: center;
}

/* -----------------------------------------
   TIPOGRAFIA
----------------------------------------- */
.card h3 {
  font-size: 1.4rem;
  font-weight: 800;
}

.card p {
  opacity: 0.85;
  margin-top: 6px;
  font-size: 0.9rem;
}

/* -----------------------------------------
   TAMANHOS (igual Xbox.com)
----------------------------------------- */
.card-1x1 { grid-column: span 1; grid-row: span 1; }
.card-1x2 { grid-column: span 1; grid-row: span 2; }
.card-2x1 { grid-column: span 2; grid-row: span 1; }
.card-2x2 { grid-column: span 2; grid-row: span 2; }

/* -----------------------------------------
   OVERLAY ESCURO EM TODAS AS IMAGENS
----------------------------------------- */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.1));
  z-index: 1; /* atrás do texto */
}


.overlay {
  position: relative;
  z-index: 2;
}

/* -----------------------------------------
   CARDS VERDE E PRETO (AGORA COM IMAGEM)
----------------------------------------- */
.green-card {
  background-color: #107C10;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: normal; 
}

.black-card {
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: normal;
}

.card * {
  position: relative;
  z-index: 5;
}


/* -----------------------------------------
   HOVER GLOBAL
----------------------------------------- */
.card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0,255,80,0.25);
}

/* -----------------------------------------
   RESPONSIVO — CARDS EM COLUNA
----------------------------------------- */
@media (max-width: 900px) {
  .xbox-grid {
    grid-template-columns: 1fr;
  }

  .card {
     height: 300px;
  }

  /* Todos os cards passam a ocupar 100% */
  .card-1x1,
  .card-1x2,
  .card-2x1,
  .card-2x2 {
      grid-column: span 1 !important;
      grid-row: span 1 !important;
  }
}

@media (max-width: 550px) {
  .card {
    height: 260px;
  }
}

/* =========================================
   VITRINE DE HQs (scroll horizontal)
========================================= */
.vitrine-hq {
  padding: 70px 0;
  background: #78009c;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header p {
  font-size: 0.98rem;
  opacity: 0.75;
}

/* Scroll horizontal */
.hq-scroll-wrapper {
  display: flex;
  gap: 22px;
  padding: 10px 0 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.hq-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

/* Card HQ */
.hq-card-horiz {
  flex: 0 0 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: grab;
  transition: 0.2s;
}

.hq-card-horiz:active {
  cursor: grabbing;
}

.hq-card-horiz:hover {
  transform: translateY(-6px) scale(1.03);
}

/* Moldura estilo HQ */
.hq-cover-frame {
  width: 100%;
  aspect-ratio: 2 / 3;
  background: #fff;
  border: 5px solid #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 3px #ffea00,
    0 0 0 7px #000,
    0 0 16px rgba(255, 255, 0, 0.4);
  transition: 0.2s;
}

.hq-card-horiz:hover .hq-cover-frame {
  box-shadow:
    0 0 0 3px #7cde21,
    0 0 0 7px #000,
    0 0 22px #7cde21;
  transform: rotate(-2deg);
}

.hq-cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.08);
}

.hq-card-title {
  margin-top: 10px;
  font-weight: 800;
  font-size: 1rem;
}

.hq-edition {
  margin-top: 4px;
  font-size: 0.8rem;
  background: var(--yellow);
  color: #000;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
  box-shadow: 0 0 8px #7cde21;
}

.scroll-tip {
  text-align: center;
  margin-top: 14px;
  opacity: 0.6;
  font-size: 0.85rem;
  font-weight: 600;
}

/* =========================================
   BENEFÍCIOS
========================================= */
.beneficios {
  background: var(--bg-dark);
}

.beneficios-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.beneficios-texto {
  width: 38%;
}

.beneficios-texto h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.beneficios-texto p {
  opacity: 0.8;
  font-size: 0.98rem;
}

.beneficios-grid {
  width: 62%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.beneficio-card {
  background: #141421;
  padding: 18px;
  border-radius: 14px;
  border: 2px solid var(--cyan);
  transition: 0.25s;
  font-size: 0.95rem;
}

.beneficio-card h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.beneficio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 14px rgba(0, 255, 255, 0.35);
}

/* =========================================
   DEPOIMENTOS — ESTILO XBOX / GAME PASS
========================================= */

.depoimentos {
  padding: 90px 0;
  background: linear-gradient(180deg, #141421 0%, #0b0b12 100%);
}

.depoimentos-box {
  background: rgba(10, 10, 16, 0.65);
  border: 1px solid rgba(0, 255, 120, 0.12);
  padding: 40px 35px;
  border-radius: 24px;
  backdrop-filter: blur(14px);
  box-shadow: 0 0 25px rgba(0, 255, 90, 0.12);
  transition: 0.3s ease;
}

.depoimentos-box:hover {
  box-shadow: 0 0 35px rgba(0, 255, 120, 0.25);
}

/* CABEÇALHO */
.depoimentos-header {
  text-align: center;
  margin-bottom: 35px;
}

.depoimentos-header h2 {
  font-size: 2.3rem;
  font-weight: 900;
  color: #7cde21;
  text-shadow: 0 0 16px rgba(0,255,90,0.4);
}

.depoimentos-header p {
  opacity: 0.75;
  margin-top: 6px;
  font-size: 1rem;
}

/* LINHA DE STATS */
.stats-line {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1rem;
  color: #d1ffd8;
  text-shadow: 0 0 8px rgba(0,255,120,0.2);
}

.stat i {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 6px rgba(0,255,120,0.4));
}

/* LISTA DE COMPRAS RECENTES */
.recent-title {
  margin-top: 32px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  background: #7cde21;
  border-radius: 50%;
  box-shadow: 0 0 14px #7cde21;
}

/* LISTA */
.recent-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}

/* ITEM */
.recent-item {
  background: rgba(16, 16, 22, 0.6);
  border: 1px solid rgba(124, 222, 33, 0.25);
  padding: 18px 18px 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  transition: 0.25s ease;
  box-shadow: 0 0 14px rgba(0,255,120,0.08);
}

.recent-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(124,222,33,0.35);
  border-color: rgba(124,222,33,0.45);
}

/* Linha superior */
.recent-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

/* Avatar holográfico */
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, #7cde21 0%, #1a1a1f 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #000;
  border: 2px solid #7cde21;
  box-shadow: 0 0 12px rgba(124,222,33,0.45);
  text-shadow: none;
}

/* Nome + Cidade */
.recent-name {
  font-weight: 800;
  font-size: 1rem;
}

.recent-city {
  opacity: 0.6;
  font-size: 0.85rem;
}

.recent-time {
  margin-left: auto;
  opacity: 0.65;
  font-size: 0.8rem;
}

/* Mensagem */
.recent-message {
  opacity: 0.85;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #e6ffe8;
}

/* =========================================
   CONTEÚDO
========================================= */
.conteudo {
  background: var(--panel);
  position: relative;
}

.conteudo::before {
  content: "";
  position: absolute;
  inset: 0;;
  opacity: 0.06;
  pointer-events: none;
}

.conteudo-inner {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.conteudo h2,
.conteudo h3 {
  font-weight: 800;
  margin-bottom: 12px;
}

.conteudo-descricao,
.conteudo-formatos {
  flex: 1;
  min-width: 280px;
  background: #0f0f14;
  border: 2px solid #1f1f28;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
}

.conteudo-descricao ul,
.conteudo-formatos ul {
  margin-top: 12px;
  list-style: none;
}

.conteudo-descricao li,
.conteudo-formatos li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  opacity: 0.95;
  font-size: 0.95rem;
}

.conteudo-descricao li i,
.conteudo-formatos li i {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* =========================================
   OFERTA
========================================= */
.oferta {
  background: var(--bg-dark);
}

.oferta-card {
  background: #111;
  border: 3px solid var(--pink);
  box-shadow: 0 0 22px rgba(255, 0, 160, 0.35);
  padding: 26px 22px 30px;
  border-radius: 20px;
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.preco-antigo {
  text-decoration: line-through;
  opacity: 0.6;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.preco-atual {
  font-size: 2.3rem;
  padding-bottom: 18px;
  font-weight: 800;
  color: var(--yellow);
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

/* =========================================
   FAQ — NOVO DESIGN PREMIUM
========================================= */

.faq-section {
  background: linear-gradient(180deg, #1a0f28, #0b0b12);
  padding: 90px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #7cde21;
  text-shadow: 0 0 12px rgba(124,222,33,0.4);
}

.faq-header p {
  opacity: 0.75;
  margin-top: 8px;
  font-size: 1rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-card {
  background: rgba(20, 20, 28, 0.6);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(124,222,33,0.25);
  box-shadow: 0 0 18px rgba(0,255,120,0.08);
  transition: 0.3s ease;
}

.faq-card.open {
  border-color: #7cde21;
  box-shadow: 0 0 20px rgba(124,222,33,0.4);
}

.faq-btn {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.4rem;
  color: #7cde21;
  transition: 0.3s ease;
  opacity: 0.8;
}

.faq-card.open .faq-icon {
  transform: rotate(45deg);
  opacity: 1;
}

.faq-content {
  display: none;
  padding: 0 20px 20px;
  line-height: 1.6;
  font-size: 0.95rem;
  opacity: 0.85;
  animation: fadeFaq 0.3s ease;
}

@keyframes fadeFaq {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hover */
.faq-card:hover {
  background: rgba(30, 30, 40, 0.75);
}


/* =========================================
   MODAL
========================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

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

.modal-box {
  background: #11131a;
  border: 2px solid #222630;
  width: 90%;
  max-width: 440px;
  padding: 26px 24px 32px;
  border-radius: 18px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  position: relative;
  transform: translateY(30px);
  transition: 0.25s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  color: #fff;
  font-size: 1.7rem;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s;
}

.modal-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.modal-text {
  font-size: 0.95rem;
  opacity: 0.87;
  margin-bottom: 12px;
  line-height: 1.5;
}

.modal-ok {
  margin-top: 8px;
  width: 100%;
}

/* =========================================
   CATEGORIAS
========================================= */
.categorias-section {
  padding: 60px 0 40px;
  background: #470050;
}

.categorias-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;        /* permite quebrar */
  gap: 26px;
  align-items: flex-start;
  width: 100%;
}

.cat-card {
  background: #0f0f15;
  border: 2px solid #1c1c25;
  padding: 24px;
  width: 300px;         /* largura perfeita para 3 por linha em telas grandes */
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
  font-size: 0.95rem;

  flex: 0 0 auto;       /* impede esticar ou encolher errado */
}

@media (max-width: 900px) {
  .cat-card {
    width: 45%;
  }
}

@media (max-width: 550px) {
  .cat-card {
    width: 100%;
  }
}



/* Hover */
.cat-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 22px #520066;
}

/* Icones */
.cat-icon img,
.cat-icon i {
  width: 60px;
  height: 60px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-icon i {
  font-size: 2.2rem;
  color: var(--yellow);
}

.cat-icon.star i { color: var(--cyan); }
.cat-icon.flame i { color: var(--pink-light); }
.cat-icon.check i { color: var(--cyan); }

/* Título */
.cat-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--yellow);
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

/* Botão */
.cat-btn {
  background: #ff004f;
  border: none;
  color: #fff;
  padding: 12px;
  width: 100%;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  box-shadow: 0 0 15px rgba(255, 0, 80, 0.35);
  transition: 0.25s;
}

.cat-btn:hover {
  background: #ff4fa0;
  transform: scale(1.03);
}

.cat-btn i {
  margin-left: 6px;
}

/* Dropdown */
.cat-dropdown {
  list-style: none;
  background: #0b0b12;
  margin-top: 12px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid #222;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.cat-dropdown li {
  padding: 10px 14px;
  border-bottom: 1px solid #1a1a25;
  font-size: 0.9rem;
  opacity: 0.95;
  text-align: left;
}

.cat-dropdown li:last-child {
  border-bottom: none;
}

.cat-dropdown li:hover {
  background: rgba(0, 229, 255, 0.12);
}


/* =========================================
   PRICING
========================================= */
.pricing-section {
  padding: 60px 0 80px;
  background: var(--panel);
}

.pricing-grid {
  display: block !important;
}
/* Card base */
.pricing-card {
  background: #0f0f14;
  border: 2px solid #1b1b25;
  padding: 26px 22px 28px;
  margin: 10px;
  border-radius: 16px;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.45);
  position: relative;
  transition: 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

/* TAG recomendado */
.tag-recomendado {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--pink);
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(255, 0, 120, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cyan);
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
  margin-bottom: 16px;
}

.pricing-old-price {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: #ccc;
}

.pro-price strong {
  font-size: 2.1rem;
  color: var(--yellow);
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.45);
}

/* Lista */
.pricing-list {
  list-style: none;
  margin-bottom: 16px;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-weight: 600;
  opacity: 0.92;
  font-size: 0.92rem;
}

.pricing-list li i {
  font-size: 1.05rem;
  color: var(--pink-light);
}

.pricing-invest {
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 14px;
}

/* Destaques do plano */
.pricing-highlight {
  background: rgba(0, 229, 255, 0.12);
  border-left: 4px solid var(--cyan);
  padding: 8px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.pricing-highlight i {
  color: var(--cyan);
}

.pricing-highlight.alt {
  background: rgba(255, 0, 115, 0.12);
  border-left-color: var(--pink);
}

.pricing-highlight.alt i {
  color: var(--pink-light);
}

/* Botões pricing */
.pricing-btn-pro {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 8px;
  background: var(--cyan);
  color: #000;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.4);
}

.pricing-btn-pro:hover {
  transform: scale(1.03);
  box-shadow: 0 0 24px rgba(0, 255, 255, 0.7);
}

.pricing-multi-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* =========================================
   DESTAQUE HQs
========================================= */
.destaque-hqs {
  padding: 70px 0;
  background: linear-gradient(180deg, #1c122c, #0b0b12);
}

.destaque-header {
  text-align: center;
  margin-bottom: 30px;
}

.destaque-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  text-shadow: 0 0 8px rgba(255, 255, 0, 0.35);
}

.destaque-header p {
  margin-top: 6px;
  opacity: 0.75;
}

/* Carrossel grande */
.destaque-hqs-carousel {
  display: flex;
  justify-content: center;
  gap: 18px;
  overflow-x: auto;
  padding: 16px 0 32px;
  scrollbar-width: none;
}

.destaque-hqs-carousel::-webkit-scrollbar {
  display: none;
}

.hq-grande {
  flex: 0 0 240px;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.06);
  background: #0d0d14;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
  transition: 0.25s;
  cursor: pointer;
}

.hq-grande:hover {
  transform: scale(1.04);
  box-shadow: 0 0 24px rgba(0, 255, 255, 0.35);
}

.hq-grande img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.25) contrast(1.1);
}

/* Benefícios embaixo */
.destaque-beneficios {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.beneficio-card3 {
  flex: 1;
  min-width: 260px;
  max-width: 360px;
  background: rgba(15, 15, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.35);
  transition: 0.25s ease;
  font-size: 0.9rem;
}

.beneficio-card3:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.35);
}

.beneficio-card3 i {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
  color: var(--yellow);
  text-shadow: 0 0 6px rgba(255, 255, 0, 0.45);
}

.beneficio-card3 h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
}


/* =========================================
   BOOST SECTION
========================================= */
.boost-section {
  background: #0c0c14;
  padding: 80px 0;
  border-top: 2px solid rgba(255,255,255,0.05);
}

.boost-header {
  text-align: center;
  margin-bottom: 40px;
}

.boost-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.4);
}

.boost-header h2 span {
  color: var(--cyan);
  text-shadow: 0 0 15px rgba(0,255,255,0.6);
}

.boost-header p {
  margin-top: 10px;
  opacity: 0.75;
}

.boost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.boost-item {
  background: rgba(20,20,30,0.9);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: 0.25s ease;
  box-shadow: 0 0 16px rgba(0,0,0,0.4);
}

.boost-item:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0,255,255,0.35);
}

.boost-item i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(0,255,255,0.6);
}

.boost-item h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.boost-cta {
  text-align: center;
  margin-top: 40px;
}

/* =========================================
   COMPARATIVO
========================================= */
.compare-section {
  background: #141421;
  padding: 80px 0;
}

.compare-header {
  text-align: center;
  margin-bottom: 40px;
}

.compare-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  text-shadow: 0 0 10px rgba(255,255,0,0.4);
}

.compare-header p {
  opacity: 0.75;
}

.compare-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.compare-card {
  width: 320px;
  background: #0f0f14;
  padding: 26px;
  border-radius: 18px;
  border: 2px solid #1b1b25;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  transition: 0.25s ease;
}

.compare-card h3 {
  font-weight: 800;
  margin-bottom: 14px;
  text-align: center;
}

.compare-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

/* Cartão negativo */
.compare-card.bad {
  border-color: #ff005d;
}

.compare-card.bad h3 {
  color: #ff4f9d;
  text-shadow: 0 0 10px rgba(255,0,80,0.4);
}

/* Cartão positivo */
.compare-card.good {
  border-color: var(--cyan);
}

.compare-card.good h3 {
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0,255,255,0.4);
}

.compare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 26px rgba(0,255,255,0.35);
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
  padding: 40px 0;
  background: #09090e;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cyan);
}

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

.footer-links a {
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}

/* =========================================
   RESPONSIVO
========================================= */

/* Tablets e mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-visual {
    order: -1;
    width: 100%;
    justify-content: center;
    padding-right: 0;
  }

  .pack-mockup {
    width: 200px;
    height: 260px;
    transform: none;
    margin-bottom: 8px;
    box-shadow: 0 0 14px rgba(255, 0, 120, 0.4);
  }

  .pack-mockup:hover {
    transform: scale(1.02);
  }

  .pack-ribbon {
    top: 10px;
    left: 8px;
    transform: rotate(-7deg);
    padding: 4px 20px;
    font-size: 0.65rem;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .beneficios-inner {
    flex-direction: column;
  }

  .beneficios-texto,
  .beneficios-grid {
    width: 100%;
  }

  .stats-line {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .categorias-section {
    padding-top: 20px;
  }

  .destaque-hqs {
    padding: 60px 0;
  }

  .hq-grande {
    flex: 0 0 200px;
    height: 300px;
  }

  .section {
    padding: 60px 0;
  }

  .oferta-card {
    padding: 22px 18px 26px;
  }

  .depoimentos-box {
    padding: 26px 20px;
  }
}

/* Mobile pequeno */
@media (max-width: 500px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .modal-box {
    padding: 22px 18px 26px;
  }

  .modal-title {
    font-size: 1.3rem;
  }
}


/* =========================================
   BOTÃO FLUTUANTE WHATSAPP
========================================= */
.whatsapp-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  background: var(--cyan);
  color: #000;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.6),
              0 0 28px rgba(0, 255, 255, 0.4);
  z-index: 9999;
  transition: 0.3s ease;
  border: 3px solid #000;
}

.whatsapp-btn:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 0 26px rgba(0, 255, 255, 1),
              0 0 40px rgba(0, 255, 255, 0.8);
}

/* Efeito de pulsar */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 16px rgba(0, 255, 255, 0.55);
  }
  50% {
    box-shadow: 0 0 26px rgba(0, 255, 255, 0.9);
  }
  100% {
    box-shadow: 0 0 16px rgba(0, 255, 255, 0.55);
  }
}

.whatsapp-btn {
  animation: pulseGlow 2.4s infinite ease-in-out;
}


/* =========================================
   ALFRED ASSISTENTE — FLUTUANTE
========================================= */
.alfred-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99995;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.alfred-img {
  width: 90px;
  transition: 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.5));
}

.alfred-img:hover {
  transform: translateY(-3px) scale(1.02);
}

/* =========================================
   BALÃO DE FALA — ESTILO QUADRINHO HQ
========================================= */
.alfred-balao {
  background: #ffffff;
  border: 3px solid #000;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 8px;
  position: relative;
  max-width: 180px;
  box-shadow: 3px 3px 0 #000; /* efeito HQ */
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
}

/* Cauda estilo HQ */
.alfred-balao::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: 35px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #ffffff;
  filter: drop-shadow(2px 2px 0 #000);
}

/* Texto digitando */
.alfred-balao span {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #000;
  animation:
    typewriter 2s steps(25) 0.3s forwards,
    blink 0.7s infinite;
}

/* Cursor piscando */
@keyframes blink {
  0%, 100% { border-color: transparent; }
  50%      { border-color: #000; }
}

/* Digitando */
@keyframes typewriter {
  from { width: 0; }
  to   { width: 100%; }
}

/* Entrada do balão */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   MENU RADIAL — ABRE NO CLIQUE DO ALFRED
========================================= */
.radial-menu {
  position: fixed;
  bottom: 95px;
  right: 40px;
  width: 0;
  height: 0;
  z-index: 99990;
  pointer-events: none;
}

.radial-item {
  width: 46px;
  height: 46px;
  background: var(--cyan);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  box-shadow: 0 0 10px rgba(0,255,255,0.5);
  font-size: 1.3rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.35s ease;
}

.radial-menu.open .radial-item {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* posição ajustada, onde o Alfred aponta */
.radial-menu.open .radial-item.whats {
  transform: translate(-140px, -70px) scale(1);
}

/* hover no botão radial */
.radial-item:hover {
  transform: scale(1.15);
  box-shadow: 0 0 14px rgba(0,255,255,0.9);
}

/* Animação de flutuar */
@keyframes alfredFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.alfred-flutuando {
  animation: alfredFloat 3s ease-in-out infinite;
}

/* Fade-in ao aparecer */
#alfredBtn {
  transition: opacity 1.2s ease;
}




/* =========================================
   COUNTDOWN TIMER
========================================= */

.countdown-box {
  margin: 16px 0 20px;
  background: rgba(0, 229, 255, 0.12);
  border: 2px solid var(--cyan);
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.35);
  animation: pulseTimer 2s infinite ease-in-out;
}

#countdown-hero,
#countdown-oferta {
  font-size: 1.2rem;
  color: var(--yellow);
  text-shadow: 0 0 8px rgba(255, 255, 0, 0.7);
}

@keyframes pulseTimer {
  0%   { box-shadow: 0 0 8px rgba(0,255,255,0.3); }
  50%  { box-shadow: 0 0 16px rgba(0,255,255,0.6); }
  100% { box-shadow: 0 0 8px rgba(0,255,255,0.3); }
}

/* Timer na área de oferta */
.oferta-timer {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}




