/* Estilos Gerais */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f8f9fa;
}

main {
  flex: 1;
}

/* Header */
.header {
  background-color: #fff;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #2d8d4d 0%, #2d8d4d 100%);
}

/* Feature Icons */
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 24px;
}

/* Estatísticas */
.stat-card {
  background-color: #fff;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

/* Números do Bolão */
.numero-bolao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0d6efd;
  color: white;
  font-weight: bold;
}

/* Resultados das Loterias */
.resultado-numero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.1rem;
  margin-right: 5px;
  margin-bottom: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Estilos para Dupla Sena */
.duplasena-container h5 {
  font-weight: 600;
  color: #6f42c1;
  margin-bottom: 8px;
}

.duplasena-container .resultado-numero {
  margin-bottom: 8px;
}

.duplasena-container .segundo-sorteio .resultado-numero {
  border: 2px dashed #6f42c1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 30px;
  height: 30px;
  padding: 10px;
}

.carousel-indicators {
  bottom: -10px;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}

/* Cores específicas para loterias */
.bg-purple {
  background-color: #6f42c1;
  color: white;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .resultado-numero {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

/* Ajuste para o carrossel em telas pequenas */
@media (max-width: 576px) {
  .carousel-item .card-body {
    padding: 1rem;
  }

  .carousel-item .row {
    flex-direction: column;
  }

  .carousel-item .col-md-4 {
    margin-top: 1rem;
  }

  .duplasena-container .col-md-6:last-child {
    margin-top: 1rem;
  }

  .duplasena-container h5 {
    margin-top: 0.5rem;
  }
}

/* Animação para o carrossel */
.carousel-item {
  transition: transform 0.6s ease-in-out;
}

/* Diretório de cache */
.cache-dir {
  display: none;
}

/* Estilos para Loteria Federal */
.federal-container {
  margin-bottom: 10px;
}

.federal-container table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.federal-container th {
  background-color: #17a2b8;
  color: white;
  font-weight: 400;
  text-align: center;
  padding: 6px;
  font-size: 0.8rem;
}

.federal-container td {
  padding: 4px 6px;
  text-align: center;
  vertical-align: middle;
  font-size: 0.9rem;
}

.federal-numero {
  font-family: "Courier New", monospace;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 1px;
}

@media (max-width: 576px) {
  .federal-container table {
    font-size: 0.85rem;
  }

  .federal-numero {
    font-size: 0.95rem;
    letter-spacing: 0px;
  }
}
