/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Corrigindo header para usar classes corretas */
.header {
  background: #37e375;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1c1c1c;
}

/* Adicionando estilos para a nova imagem da logo */
.logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Removendo estilos antigos do logo de texto */
.crown-icon {
  display: none;
}

.logo-text {
  display: none;
}

.logo-rei {
  display: none;
}

.logo-liga {
  display: none;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #1c1c1c;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #fff;
}

.header-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-login {
  background: #1c1c1c;
  color: #fff;
}

.btn-login:hover {
  background: #333;
}

.btn-register {
  background: transparent;
  color: #1c1c1c;
  border: 2px solid #1c1c1c;
}

.btn-register:hover {
  background: #1c1c1c;
  color: #fff;
}

/* Adicionando estilos para o sistema de afiliados e menu do usuário */
/* Estilos para usuário logado */
.user-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-balance {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.balance-label {
  color: #1c1c1c;
  font-size: 14px;
  font-weight: 500;
}

.balance-value {
  color: #1c1c1c;
  font-size: 16px;
  font-weight: bold;
}

.user-dropdown {
  position: relative;
}

.user-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 10px 15px;
  border-radius: 20px;
  color: #1c1c1c;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.user-dropdown-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.user-name {
  font-weight: 600;
  font-size: 14px;
}

.dropdown-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.user-dropdown-btn:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.user-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1000;
  margin-top: 10px;
}

.user-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  transition: background 0.3s;
  font-size: 14px;
}

.dropdown-item:hover {
  background: #f8f9fa;
}

.dropdown-item svg {
  width: 18px;
  height: 18px;
  color: #37e375;
}

.dropdown-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 8px 0;
}

/* Estilos para o modal de afiliados */
.affiliate-modal {
  max-width: 600px;
  width: 95%;
}

.affiliate-content {
  padding: 30px;
}

.affiliate-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 2px solid #e0e0e0;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: #37e375;
  transform: translateY(-2px);
}

.stat-card h3 {
  color: #333;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.affiliate-code {
  background: #37e375;
  color: #1c1c1c;
  padding: 10px 15px;
  border-radius: 8px;
  font-family: "Courier New", monospace;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.stat-number {
  font-size: 24px;
  font-weight: bold;
  color: #37e375;
}

.affiliate-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.affiliate-actions .btn {
  flex: 1;
  min-width: 150px;
}

.btn-secondary {
  background: #6c757d;
  color: #fff;
}

.btn-secondary:hover {
  background: #5a6268;
}

.qr-code-container {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 2px dashed #37e375;
}

.qr-code-container h3 {
  color: #333;
  margin-bottom: 20px;
}

.qr-code-container img {
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.affiliate-url {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  font-family: "Courier New", monospace;
  font-size: 12px;
  color: #666;
  word-break: break-all;
  border: 1px solid #e0e0e0;
}

/* Corrigindo hero section para usar classes corretas */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1459865264687-595d652de67e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 900;
}

.hero h1 .highlight {
  background: #37e375;
  color: #1c1c1c;
  padding: 0 15px;
  border-radius: 10px;
}

.hero p {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.btn-primary {
  background: #2b54c2;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Corrigindo posicionamento da imagem do celular */
.phone-mockup {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-phone-image {
  max-width: 350px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

/* Adicionando media queries para reduzir altura da imagem em dispositivos móveis */
@media (max-width: 768px) {
  .hero-phone-image {
    max-width: 120px;
    max-height: 150px;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .hero-phone-image {
    max-width: 100px;
    max-height: 120px;
    object-fit: contain;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Removendo seção dispute duplicada e ajustando espaçamentos */
.dispute-section {
  background: #37e375;
  padding: 30px 0;
  text-align: center;
}

.dispute-section h2 {
  color: #1c1c1c;
  font-size: 1.5rem;
  font-weight: 400;
}

.dispute-section strong {
  font-weight: bold;
}

/* Reduzindo padding da seção Como Jogar para eliminar espaço branco excessivo */
.how-to-play {
  padding: 50px 0;
  background: #37e375;
  margin: 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1c1c1c;
  margin-bottom: 40px;
  font-weight: bold;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 20px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: #1c1c1c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}

.step-icon svg {
  width: 40px;
  height: 40px;
  color: #37e375;
}

.step p {
  color: #1c1c1c;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Reduzindo padding da seção FAQ e ajustando cores */
.faq {
  padding: 50px 0;
  background: #f8f9fa;
  margin: 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

/* Removendo o ícone SVG grande que estava causando o círculo preto */
.faq-icon {
  display: none;
}

.faq-title {
  font-size: 2.5rem;
  color: #37e375;
  font-weight: bold;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: #1c1c1c;
  border-radius: 10px;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-answer {
  padding: 0 20px 20px;
  color: #666;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Ajustando footer para ficar igual à imagem */
.footer {
  background: #37e375;
  padding: 40px 0;
  text-align: center;
  margin: 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  color: #1c1c1c;
  text-decoration: none;
}

/* Adicionando estilos para a imagem da logo no footer */
.footer-logo-image {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-text {
  color: #1c1c1c;
  font-size: 14px;
  margin: 10px 0;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #1c1c1c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #37e375;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {
  background: #333;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Adicionando estilos para os modais de login e registro */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #fff;
  border-radius: 15px;
  padding: 0;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
  overflow: hidden;
}

.modal-header {
  background: #37e375;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  color: #1c1c1c;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.close {
  color: #1c1c1c;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover {
  color: #fff;
}

.modal-form {
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: #37e375;
  box-shadow: 0 0 0 3px rgba(55, 227, 117, 0.1);
}

.btn-full {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  margin-top: 10px;
}

/* Melhorando estilos dos modais para melhor UX */
.modal-form .btn-primary {
  background: #37e375;
  color: #1c1c1c;
  font-weight: bold;
  transition: all 0.3s;
}

.modal-form .btn-primary:hover {
  background: #2bc965;
  transform: translateY(-1px);
}

.modal-form .btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* Adicionando estilos para a seção de bolões disponíveis */
/* Estilos para seção de jogos disponíveis */
.available-games {
  background: #1a1a1a;
  min-height: 100vh;
  padding: 100px 0 50px;
}

.games-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.games-header h1 {
  color: #37e375;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}

.filter-buttons {
  display: flex;
  gap: 10px;
}

.filter-btn {
  background: transparent;
  border: 2px solid #37e375;
  color: #37e375;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background: #37e375;
  color: #1a1a1a;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.game-card {
  background: #2a2a2a;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: #37e375;
  box-shadow: 0 10px 30px rgba(55, 227, 117, 0.2);
}

.game-image {
  height: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.game-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #37e375;
  color: #1a1a1a;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.game-icon {
  font-size: 2.5rem;
  opacity: 0.8;
}

.game-content {
  padding: 20px;
}

.game-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.game-subtitle {
  color: #37e375;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.game-description {
  color: #ccc;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.game-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-price {
  color: #37e375;
  font-size: 1.1rem;
  font-weight: bold;
}

.btn-play {
  background: #37e375;
  color: #1a1a1a;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-play:hover {
  background: #2bc965;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(55, 227, 117, 0.3);
}

/* Adicionando estilos para o novo layout de bolões com filtros de categorias */
/* Estilos para filtros de categorias de bolões */
.games-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.games-filters .filter-btn {
  background: transparent;
  border: 2px solid #37e375;
  color: #37e375;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
}

.games-filters .filter-btn.active,
.games-filters .filter-btn:hover {
  background: #37e375;
  color: #1a1a1a;
}

/* Novo layout de bolões com cards destacados */
.boloes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.bolao-card {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s;
  border: 2px solid transparent;
  position: relative;
}

.bolao-card.featured {
  background: linear-gradient(135deg, #37e375 0%, #2bc965 100%);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(55, 227, 117, 0.3);
}

.bolao-card:hover {
  transform: translateY(-5px);
  border-color: #37e375;
  box-shadow: 0 10px 30px rgba(55, 227, 117, 0.2);
}

.bolao-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.bolao-header {
  padding: 15px 20px 10px;
}

.bolao-category {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
}

.bolao-card.featured .bolao-category {
  background: rgba(28, 28, 28, 0.3);
  color: #1c1c1c;
}

.bolao-content {
  padding: 0 20px 20px;
}

.bolao-title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.bolao-card.featured .bolao-title {
  color: #1c1c1c;
}

.bolao-prize {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffa500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  text-align: center;
}

.bolao-card.featured .bolao-prize {
  color: #ff6b00;
  text-shadow: 2px 2px 4px rgba(28, 28, 28, 0.3);
}

.bolao-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 15px;
}

.bolao-detail {
  text-align: center;
  flex: 1;
}

.detail-label {
  display: block;
  color: #ccc;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.bolao-card.featured .detail-label {
  color: #1c1c1c;
  opacity: 0.8;
}

.detail-value {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.bolao-card.featured .detail-value {
  color: #1c1c1c;
}

.btn-entrar {
  background: #ffa500;
  color: #1c1c1c;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  font-size: 16px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.btn-entrar:hover {
  background: #ff8c00;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 165, 0, 0.4);
}

.bolao-card.featured .btn-entrar {
  background: #ff6b00;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
}

.bolao-card.featured .btn-entrar:hover {
  background: #e55a00;
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.5);
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  /* Removendo display: none dos header-buttons para aparecer no mobile */
  .header-buttons {
    display: flex;
    gap: 10px;
  }

  /* Ajustando tamanho dos botões para mobile */
  .header-buttons .btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .phone-mockup {
    display: none;
  }

  .hero-content {
    text-align: center;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .how-to-play {
    padding: 40px 0;
  }

  .faq {
    padding: 40px 0;
  }

  /* Ajustando tamanho da logo para mobile */
  .logo-image {
    height: 35px;
  }

  .footer-logo-image {
    height: 50px;
  }

  /* Ajustando modais para mobile */
  .modal-content {
    width: 95%;
    margin: 20px;
  }

  .modal-form {
    padding: 20px;
  }

  .user-menu {
    gap: 10px;
  }

  .user-balance {
    padding: 6px 12px;
  }

  .balance-label {
    font-size: 12px;
  }

  .balance-value {
    font-size: 14px;
  }

  .user-dropdown-btn {
    padding: 8px 12px;
  }

  .user-name {
    font-size: 12px;
  }

  .affiliate-stats {
    grid-template-columns: 1fr;
  }

  .affiliate-actions {
    flex-direction: column;
  }

  .affiliate-actions .btn {
    width: 100%;
  }

  .stat-card {
    padding: 15px;
  }

  .affiliate-code {
    font-size: 14px;
    padding: 8px 12px;
  }

  .available-games {
    padding: 80px 0 30px;
  }

  .games-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .games-header h1 {
    font-size: 2rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .game-card {
    margin: 0 10px;
  }

  .game-content {
    padding: 15px;
  }

  .game-footer {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .btn-play {
    width: 100%;
    padding: 12px;
  }

  /* Responsividade para o novo layout */
  .games-filters {
    gap: 8px;
    margin-bottom: 30px;
  }

  .games-filters .filter-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .boloes-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
  }

  .bolao-card.featured {
    transform: none;
  }

  .bolao-card.featured:hover {
    transform: translateY(-5px);
  }

  .bolao-prize {
    font-size: 2rem;
  }

  .bolao-info {
    flex-direction: column;
    gap: 10px;
  }

  .bolao-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .detail-label,
  .detail-value {
    display: inline;
  }

  /* Mostrando menu mobile e adicionando padding ao body */
  .mobile-bottom-nav {
    display: flex !important;
  }

  body {
    padding-bottom: 70px !important;
  }
}

@media (min-width: 769px) {
  .hero {
    display: flex;
    align-items: center;
  }

  .hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}

/* Adicionando animações */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Adicionando estilos para loading e estados vazios */
.loading-spinner {
  text-align: center;
  padding: 40px;
  color: #37e375;
  font-size: 18px;
  font-weight: 500;
}

.no-events {
  text-align: center;
  padding: 40px;
  color: #ccc;
  font-size: 18px;
  background: #2a2a2a;
  border-radius: 15px;
  border: 2px dashed #37e375;
}

/* Adicionando estilos para bolões dinâmicos */
.bolao-card[data-category] {
  transition: all 0.3s ease;
}

.bolao-card[data-category]:not([style*="display: none"]) {
  animation: fadeInUp 0.5s ease forwards;
}

/* Adicionando estilos para notificações */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3000;
  min-width: 300px;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideInRight 0.3s ease;
}

.notification-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.notification-error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.notification-info {
  background: #d1ecf1;
  border: 1px solid #bee5eb;
  color: #0c5460;
}

.notification-content {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notification-message {
  flex: 1;
  font-weight: 500;
}

.notification-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
  margin-left: 10px;
}

.notification-close:hover {
  opacity: 1;
}

/* Adicionando estilos para menu mobile bottom navigation */
/* Menu Mobile Bottom Navigation */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #4caf50;
  padding: 8px 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  justify-content: space-around;
  align-items: center;
}

.mobile-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 8px 4px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 4px;
  min-height: 50px;
}

.mobile-bottom-nav .nav-item.active {
  background: rgba(0, 0, 0, 0.2);
}

.mobile-bottom-nav .nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-bottom-nav .nav-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 4px;
  fill: white;
}

.mobile-bottom-nav .nav-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  text-align: center;
}
