/* Design CSS para 27bet - Red/Gold/Black Theme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background: linear-gradient(135deg, #1a0000 0%, #000000 50%, #1a0000 100%);
  min-height: 100vh;
}

.container-cabecalho {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cabecalho-principal {
  background: linear-gradient(90deg, #8b0000 0%, #ff0000 50%, #8b0000 100%);
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
  position: relative;
}

.marca-logo img {
  max-width: 280px;
  height: auto;
}

.menu-navegacao {
  flex: 1;
  display: flex;
  justify-content: center;
}

.lista-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.lista-menu a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 5px;
}

.lista-menu a:hover {
  background: rgba(255, 215, 0, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

.botao-cta {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #8b0000;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.botao-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.migalhas {
  max-width: 1400px;
  margin: 20px auto;
  padding: 0 20px;
  font-size: 14px;
  color: #999;
}

.migalhas a {
  color: #ffd700;
  text-decoration: none;
}

.migalhas a:hover {
  text-decoration: underline;
}

.conteudo-principal {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.secao-hero {
  background: linear-gradient(135deg, #8b0000 0%, #ff0000 100%);
  border-radius: 15px;
  padding: 60px 40px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(255, 0, 0, 0.3);
}

.container-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-texto h1 {
  font-size: 48px;
  color: #ffd700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitulo-hero {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-acoes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-principal {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #8b0000;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-principal:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.btn-secundario {
  background: transparent;
  color: #ffd700;
  padding: 15px 40px;
  border: 2px solid #ffd700;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
}

.btn-secundario:hover {
  background: #ffd700;
  color: #8b0000;
}

.hero-imagem img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.container-secao {
  margin-bottom: 60px;
}

.container-secao h2 {
  font-size: 36px;
  color: #ffd700;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.texto-introducao {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #cccccc;
}

.diferenciais-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.diferencial-card {
  background: linear-gradient(135deg, #1a0000 0%, #2d0000 100%);
  border: 2px solid #8b0000;
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
}

.diferencial-card:hover {
  transform: translateY(-5px);
  border-color: #ff0000;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.icone-diferencial {
  font-size: 48px;
  display: block;
  margin-bottom: 15px;
}

.diferencial-card h3 {
  font-size: 24px;
  color: #ffd700;
  margin-bottom: 15px;
}

.diferencial-card p {
  color: #cccccc;
  line-height: 1.8;
}

.jogos-grid {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}

.jogo-destaque {
  background: linear-gradient(135deg, #1a0000 0%, #2d0000 100%);
  border: 2px solid #8b0000;
  border-radius: 15px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 380px 1fr;
  transition: all 0.3s ease;
}

.jogo-destaque:hover {
  border-color: #ff0000;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.jogo-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jogo-info {
  padding: 30px;
}

.jogo-info h3 {
  font-size: 28px;
  color: #ffd700;
  margin-bottom: 15px;
}

.jogo-info p {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 20px;
}

.link-jogo {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.link-jogo:hover {
  color: #ffffff;
}

.bonus-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.bonus-card {
  background: linear-gradient(135deg, #1a0000 0%, #2d0000 100%);
  border: 2px solid #ffd700;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.bonus-icone {
  font-size: 64px;
  display: block;
  margin-bottom: 20px;
}

.bonus-card h3 {
  font-size: 24px;
  color: #ffd700;
  margin-bottom: 10px;
}

.bonus-valor {
  font-size: 28px;
  color: #ff0000;
  font-weight: 700;
  margin-bottom: 15px;
}

.bonus-card p {
  color: #cccccc;
  line-height: 1.8;
}

.secao-responsavel {
  background: linear-gradient(135deg, #2d0000 0%, #1a0000 100%);
  border: 2px solid #8b0000;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 60px;
}

.ferramentas-responsavel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.ferramenta-item {
  background: rgba(139, 0, 0, 0.2);
  border: 1px solid #8b0000;
  border-radius: 10px;
  padding: 20px;
}

.ferramenta-icone {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
}

.ferramenta-item h3 {
  font-size: 20px;
  color: #ffd700;
  margin-bottom: 10px;
}

.ferramenta-item p {
  color: #cccccc;
  font-size: 15px;
  line-height: 1.6;
}

.alerta-responsavel {
  background: rgba(255, 0, 0, 0.1);
  border: 2px solid #ff0000;
  border-radius: 10px;
  padding: 25px;
  margin-top: 30px;
}

.alerta-responsavel h3 {
  font-size: 24px;
  color: #ff0000;
  margin-bottom: 15px;
}

.alerta-responsavel p {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 15px;
}

.alerta-responsavel ul {
  list-style-position: inside;
  color: #cccccc;
  margin-bottom: 15px;
}

.alerta-responsavel a {
  color: #ffd700;
  text-decoration: none;
}

.alerta-responsavel a:hover {
  text-decoration: underline;
}

.secao-sobre h3 {
  font-size: 28px;
  color: #ffd700;
  margin: 30px 0 15px;
}

.secao-sobre p {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 20px;
}

.secao-sobre ul {
  list-style-position: inside;
  color: #cccccc;
  margin-bottom: 20px;
}

.secao-sobre li {
  margin-bottom: 10px;
  line-height: 1.8;
}

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

.razao-item {
  background: linear-gradient(135deg, #1a0000 0%, #2d0000 100%);
  border: 2px solid #8b0000;
  border-radius: 10px;
  padding: 20px;
  color: #ffd700;
  font-weight: 600;
}

.pagamentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pagamento-metodo {
  background: linear-gradient(135deg, #1a0000 0%, #2d0000 100%);
  border: 2px solid #8b0000;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.pagamento-imagem img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.pagamento-metodo h3 {
  font-size: 22px;
  color: #ffd700;
  margin-bottom: 15px;
}

.pagamento-metodo p {
  color: #cccccc;
  line-height: 1.8;
  text-align: left;
}

.nota-pagamentos {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #ffd700;
  border-radius: 10px;
  padding: 25px;
  margin-top: 40px;
}

.nota-pagamentos h3 {
  font-size: 24px;
  color: #ffd700;
  margin-bottom: 15px;
}

.nota-pagamentos ul {
  list-style-position: inside;
  color: #cccccc;
}

.nota-pagamentos li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.secao-licenca {
  background: linear-gradient(135deg, #2d0000 0%, #1a0000 100%);
  border: 2px solid #8b0000;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 60px;
}

.licenca-conteudo {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.licenca-imagem img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 2px solid #ffd700;
}

.licenca-texto h3 {
  font-size: 28px;
  color: #ffd700;
  margin-bottom: 15px;
}

.licenca-texto p {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 15px;
}

.licenca-texto ul {
  list-style-position: inside;
  color: #cccccc;
  margin-top: 15px;
}

.licenca-texto li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.certificacoes-seguranca h3 {
  font-size: 28px;
  color: #ffd700;
  margin: 30px 0 15px;
}

.certificacoes-seguranca p {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 15px;
}

.certificacoes-seguranca ul {
  list-style-position: inside;
  color: #cccccc;
  margin-bottom: 20px;
}

.certificacoes-seguranca li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.suporte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.suporte-canal {
  background: linear-gradient(135deg, #1a0000 0%, #2d0000 100%);
  border: 2px solid #8b0000;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.suporte-canal:hover {
  border-color: #ff0000;
  transform: translateY(-5px);
}

.suporte-icone {
  font-size: 48px;
  display: block;
  margin-bottom: 15px;
}

.suporte-canal h3 {
  font-size: 22px;
  color: #ffd700;
  margin-bottom: 15px;
}

.suporte-canal p {
  color: #cccccc;
  line-height: 1.8;
  text-align: left;
}

.secao-faq {
  margin-bottom: 60px;
}

.faq-lista {
  max-width: 900px;
  margin: 40px auto 0;
}

.faq-item {
  background: linear-gradient(135deg, #1a0000 0%, #2d0000 100%);
  border: 2px solid #8b0000;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #ffd700;
  list-style: none;
  transition: all 0.3s ease;
}

.faq-item summary:hover {
  background: rgba(139, 0, 0, 0.3);
}

.faq-item p {
  padding: 0 20px 20px;
  color: #cccccc;
  line-height: 1.8;
}

.secao-avaliacoes {
  margin-bottom: 60px;
}

.avaliacoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.avaliacao-card {
  background: linear-gradient(135deg, #1a0000 0%, #2d0000 100%);
  border: 2px solid #8b0000;
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
}

.avaliacao-card:hover {
  border-color: #ffd700;
  transform: translateY(-3px);
}

.avaliacao-topo {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 15px;
}

.avaliador-info strong {
  display: block;
  color: #ffd700;
  font-size: 18px;
  margin-bottom: 5px;
}

.avaliador-local {
  color: #999;
  font-size: 14px;
}

.avaliacao-estrelas {
  color: #ffd700;
  font-size: 18px;
}

.avaliacao-card p {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 15px;
}

.avaliacao-card time {
  color: #999;
  font-size: 14px;
}

.secao-autor {
  margin-bottom: 60px;
}

.autor-card {
  background: linear-gradient(135deg, #2d0000 0%, #1a0000 100%);
  border: 2px solid #ffd700;
  border-radius: 15px;
  padding: 40px;
}

.autor-card h2 {
  font-size: 32px;
  color: #ffd700;
  margin-bottom: 30px;
  text-align: center;
}

.autor-conteudo {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  align-items: start;
}

.autor-foto img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 3px solid #ffd700;
}

.autor-texto h3 {
  font-size: 26px;
  color: #ffd700;
  margin-bottom: 5px;
}

.autor-titulo {
  font-size: 16px;
  color: #ff0000;
  font-weight: 600;
  margin-bottom: 15px;
}

.autor-texto p {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 15px;
}

.secao-cta-final {
  background: linear-gradient(135deg, #ff0000 0%, #8b0000 100%);
  border-radius: 15px;
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(255, 0, 0, 0.3);
}

.cta-container h2 {
  font-size: 40px;
  color: #ffd700;
  margin-bottom: 20px;
}

.cta-container p {
  font-size: 18px;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.btn-cta-grande {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #8b0000;
  padding: 18px 50px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.btn-cta-grande:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255, 215, 0, 0.7);
}

.cta-nota {
  font-size: 14px;
  color: #ffcccc;
  margin-top: 20px;
}

.rodape-site {
  background: linear-gradient(90deg, #000000 0%, #1a0000 50%, #000000 100%);
  border-top: 3px solid #8b0000;
  padding: 40px 0 20px;
  margin-top: 60px;
}

.container-rodape {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.rodape-coluna h4 {
  font-size: 20px;
  color: #ffd700;
  margin-bottom: 15px;
}

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

.rodape-coluna li {
  margin-bottom: 10px;
}

.rodape-coluna a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.redes-sociais {
  display: flex;
  gap: 15px;
  font-size: 32px;
}

.redes-sociais a {
  transition: transform 0.3s ease;
}

.redes-sociais a:hover {
  transform: scale(1.2);
}

.rodape-info {
  border-top: 1px solid #8b0000;
  padding-top: 20px;
  text-align: center;
}

.rodape-licenca {
  color: #999;
  font-size: 14px;
  margin-bottom: 10px;
}

.rodape-idade {
  color: #ff0000;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.rodape-info p {
  color: #999;
  font-size: 13px;
  line-height: 1.6;
}

/* Página Interna */
.pagina-interna {
  max-width: 1000px;
  margin: 0 auto;
}

.pagina-interna h1 {
  font-size: 42px;
  color: #ffd700;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.intro-secao {
  margin-bottom: 40px;
}

.intro-secao img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.texto-destaque {
  font-size: 20px;
  color: #ffd700;
  line-height: 1.8;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.conteudo-detalhado h2 {
  font-size: 32px;
  color: #ffd700;
  margin: 40px 0 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.conteudo-detalhado h3 {
  font-size: 26px;
  color: #ff0000;
  margin: 30px 0 15px;
}

.conteudo-detalhado p {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.conteudo-detalhado ul {
  list-style-position: inside;
  color: #cccccc;
  margin-bottom: 20px;
}

.conteudo-detalhado ol {
  list-style-position: inside;
  color: #cccccc;
  margin-bottom: 20px;
}

.conteudo-detalhado li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.cta-interna {
  background: linear-gradient(135deg, #8b0000 0%, #ff0000 100%);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.cta-interna h3 {
  font-size: 32px;
  color: #ffd700;
  margin-bottom: 15px;
}

.cta-interna p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 1024px) {
  .container-hero {
    grid-template-columns: 1fr;
  }
  
  .jogo-destaque {
    grid-template-columns: 1fr;
  }
  
  .licenca-conteudo {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .autor-conteudo {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .lista-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-texto h1 {
    font-size: 32px;
  }
  
  .subtitulo-hero {
    font-size: 16px;
  }
  
  .container-secao h2 {
    font-size: 28px;
  }
  
  .pagina-interna h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .marca-logo img {
    max-width: 200px;
  }
  
  .hero-texto h1 {
    font-size: 26px;
  }
  
  .btn-principal,
  .btn-secundario {
    padding: 12px 25px;
    font-size: 16px;
  }
  
  .diferenciais-container,
  .bonus-lista,
  .pagamentos-grid,
  .suporte-grid,
  .avaliacoes-grid {
    grid-template-columns: 1fr;
  }
}
