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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: linear-gradient(135deg, #f5f3ff 0%, #faf5ff 100%);
}

.container-principal {
  max-width: 1400px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.1);
}

/* Header */
.cabecalho-site {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  padding: 1.2rem 0;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
  position: relative;
}

.wrapper-cabecalho {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.marca-logo img {
  display: block;
  max-width: 180px;
  height: auto;
}

.menu-navegacao {
  flex: 1;
}

.lista-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.lista-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.lista-menu a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-jogar-principal {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1a1a1a;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
  transition: all 0.3s ease;
}

.btn-jogar-principal:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(251, 191, 36, 0.6);
}

/* Main Content */
.conteudo-principal {
  padding: 0;
}

/* Hero Section */
.hero-banner {
  background: linear-gradient(135deg, #ede9fe 0%, #f3e8ff 100%);
  padding: 4rem 2rem;
  border-bottom: 4px solid #7c3aed;
}

.grid-hero {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.texto-hero h1 {
  font-size: 2.8rem;
  color: #7c3aed;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
}

.desc-hero {
  font-size: 1.2rem;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.acoes-hero {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-cta-primario {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
  transition: all 0.3s ease;
}

.btn-cta-primario:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(124, 58, 237, 0.6);
}

.btn-cta-secundario {
  background: #ffffff;
  color: #7c3aed;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  border: 2px solid #7c3aed;
  transition: all 0.3s ease;
}

.btn-cta-secundario:hover {
  background: #7c3aed;
  color: #ffffff;
  transform: translateY(-3px);
}

.imagem-hero img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.2);
}

/* Sections */
section {
  padding: 4rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

section h2 {
  font-size: 2.5rem;
  color: #7c3aed;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 800;
}

.intro-secao {
  font-size: 1.15rem;
  color: #6b7280;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* Games Grid */
.grade-jogos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card-jogo {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
  transition: all 0.3s ease;
  border: 2px solid #ede9fe;
}

.card-jogo:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 35px rgba(124, 58, 237, 0.25);
  border-color: #7c3aed;
}

.card-jogo figure {
  margin: 0;
  overflow: hidden;
}

.card-jogo img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.card-jogo:hover img {
  transform: scale(1.05);
}

.card-jogo h3 {
  font-size: 1.6rem;
  color: #7c3aed;
  margin: 1.5rem 1.5rem 1rem;
  font-weight: 700;
}

.card-jogo p {
  color: #4b5563;
  margin: 0 1.5rem 1.5rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.btn-card {
  display: block;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: #ffffff;
  text-align: center;
  padding: 0.9rem;
  margin: 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.btn-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

/* Bonus Section */
.secao-bonus {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  padding: 4rem 2rem;
  border-radius: 20px;
  margin: 3rem auto;
  max-width: 1300px;
}

.grid-bonus {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card-bonus {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
  border: 2px solid #fbbf24;
  transition: all 0.3s ease;
}

.card-bonus:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.3);
}

.card-bonus h3 {
  font-size: 1.6rem;
  color: #f59e0b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.valor-bonus {
  font-size: 2rem;
  color: #7c3aed;
  font-weight: 800;
  margin-bottom: 1rem;
}

.card-bonus p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Responsible Gaming */
.secao-jogo-responsavel {
  background: #f9fafb;
  padding: 4rem 2rem;
  border-radius: 20px;
  margin: 3rem auto;
  max-width: 1300px;
}

.grid-ferramentas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ferramenta-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #7c3aed;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ferramenta-item h3 {
  font-size: 1.4rem;
  color: #7c3aed;
  margin-bottom: 1rem;
  font-weight: 700;
}

.ferramenta-item p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 1.05rem;
}

.ferramenta-item a {
  color: #7c3aed;
  text-decoration: underline;
}

/* About Section */
.secao-sobre {
  padding: 4rem 2rem;
}

.secao-sobre h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.secao-sobre h3 {
  font-size: 1.8rem;
  color: #7c3aed;
  margin: 2rem 0 1rem;
  font-weight: 700;
}

.secao-sobre p {
  color: #4b5563;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.lista-diferenciais {
  list-style: none;
  margin-top: 1.5rem;
}

.lista-diferenciais li {
  color: #4b5563;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  padding-left: 2rem;
  position: relative;
}

.lista-diferenciais li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7c3aed;
  font-weight: 700;
  font-size: 1.3rem;
}

.lista-diferenciais strong {
  color: #7c3aed;
}

/* Payment Methods */
.grade-pagamentos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.metodo-pagamento {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
  border: 2px solid #ede9fe;
  transition: all 0.3s ease;
}

.metodo-pagamento:hover {
  border-color: #7c3aed;
  transform: translateY(-5px);
}

.metodo-pagamento figure {
  margin: 0 0 1rem;
  text-align: center;
}

.metodo-pagamento img {
  max-width: 100px;
  height: auto;
}

.metodo-pagamento h3 {
  font-size: 1.5rem;
  color: #7c3aed;
  margin-bottom: 1rem;
  font-weight: 700;
}

.metodo-pagamento p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.nota-importante {
  background: #fef3c7;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #f59e0b;
  margin-top: 2rem;
  color: #92400e;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* License Section */
.grid-licenca {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.info-licenca {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}

.info-licenca figure {
  margin: 0;
}

.info-licenca img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.texto-licenca h3 {
  font-size: 1.8rem;
  color: #7c3aed;
  margin-bottom: 1rem;
  font-weight: 700;
}

.texto-licenca p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.texto-licenca ul {
  list-style: none;
  margin-top: 1rem;
}

.texto-licenca li {
  color: #4b5563;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.texto-licenca li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #7c3aed;
  font-weight: 700;
  font-size: 1.3rem;
}

.certificacoes {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}

.certificacoes h3 {
  font-size: 1.8rem;
  color: #7c3aed;
  margin-bottom: 1rem;
  font-weight: 700;
}

.certificacoes p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.certificacoes ul {
  list-style: none;
  margin-top: 1rem;
}

.certificacoes li {
  color: #4b5563;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.certificacoes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7c3aed;
  font-weight: 700;
  font-size: 1.3rem;
}

/* Support Section */
.grade-suporte {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.canal-suporte {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
  border-top: 4px solid #7c3aed;
  transition: all 0.3s ease;
}

.canal-suporte:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.2);
}

.canal-suporte h3 {
  font-size: 1.5rem;
  color: #7c3aed;
  margin-bottom: 1rem;
  font-weight: 700;
}

.canal-suporte p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

/* FAQ Section */
.lista-faq {
  max-width: 900px;
  margin: 3rem auto 0;
}

.item-faq {
  background: #ffffff;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(124, 58, 237, 0.1);
  overflow: hidden;
  border: 2px solid #ede9fe;
}

.item-faq summary {
  padding: 1.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #7c3aed;
  cursor: pointer;
  list-style: none;
  transition: all 0.3s ease;
}

.item-faq summary:hover {
  background: #faf5ff;
}

.item-faq summary::before {
  content: "▶";
  display: inline-block;
  margin-right: 0.8rem;
  transition: transform 0.3s ease;
}

.item-faq[open] summary::before {
  transform: rotate(90deg);
}

.item-faq p {
  padding: 0 1.5rem 1.5rem;
  color: #4b5563;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Reviews Section */
.intro-avaliacoes {
  text-align: center;
  font-size: 1.15rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

.grade-avaliacoes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card-avaliacao {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
  border-left: 4px solid #fbbf24;
  transition: all 0.3s ease;
}

.card-avaliacao:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.2);
}

.cabecalho-avaliacao {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}

.info-autor strong {
  display: block;
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
}

.cidade {
  font-size: 0.95rem;
  color: #6b7280;
}

.estrelas {
  color: #fbbf24;
  font-size: 1.3rem;
}

.card-avaliacao p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.card-avaliacao time {
  display: block;
  font-size: 0.9rem;
  color: #9ca3af;
  font-style: italic;
}

/* Author Section */
.card-autor {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
  max-width: 900px;
  margin: 3rem auto 0;
  border-top: 4px solid #7c3aed;
}

.texto-autor h3 {
  font-size: 2rem;
  color: #7c3aed;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.texto-autor p {
  color: #4b5563;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.texto-autor p:first-of-type {
  font-size: 1.15rem;
  color: #6b7280;
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* Footer */
.rodape-site {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: #d1d5db;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.wrapper-rodape {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.grade-rodape {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.coluna-rodape h4 {
  color: #fbbf24;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.coluna-rodape ul {
  list-style: none;
}

.coluna-rodape li {
  margin-bottom: 0.8rem;
}

.coluna-rodape a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.05rem;
}

.coluna-rodape a:hover {
  color: #fbbf24;
}

.redes-sociais {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.info-rodape {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
}

.licenca-rodape {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #9ca3af;
}

.aviso-idade {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.metodos-pagamento-rodape {
  font-size: 0.95rem;
  color: #9ca3af;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .wrapper-cabecalho {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .lista-menu {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .grid-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .texto-hero h1 {
    font-size: 2rem;
  }

  .desc-hero {
    font-size: 1.05rem;
  }

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

  section h2 {
    font-size: 2rem;
  }

  .grade-jogos,
  .grid-bonus,
  .grid-ferramentas,
  .grade-pagamentos,
  .grade-suporte,
  .grade-avaliacoes {
    grid-template-columns: 1fr;
  }

  .info-licenca {
    grid-template-columns: 1fr;
  }

  .grade-rodape {
    grid-template-columns: 1fr;
  }

  /* Ensure images don't overflow on mobile */
  img {
    max-width: 100%;
    height: auto;
  }
}
