@import url('jogo1.css');

/* Fundo e layout principal */
.modo-jogo-section {
 background-color: var(--color-dark-blue);
            padding: 40px 0;
            min-height: 80vh; /* Garante que a seção do jogo ocupe bem a tela */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            color: white;
            position: relative;
             text-align: center;
    margin-bottom: 20px;
}

/* Título */
.modo-jogo-section h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 50px;
}

/* Container dos cartões */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Cartões principais */
.card {
  background-color: rgba(0, 0, 139, 0.786);
  border-radius: 20px;
  padding: 30px 25px;
  width: 300px;
  min-height: 320px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(3, 209, 255, 0.659);
}

/* Títulos e textos dos cards */
.card h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Botões */
.btn-card {
  background: linear-gradient(90deg, #3E80E6 0%, #1A378C 100%);
  border: none;
  color: white;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-card:hover {
  background: rgb(4, 4, 45);
}

/* Cartão bloqueado */
.card-bloqueado {
  background-color: #0a0f1f;
  opacity: 0.5;
  border: 2px solid #444;
  cursor: not-allowed;
  box-shadow: none;
}

.bloqueado-texto {
  color: #666;
}

.lock-icon {
  font-size: 4rem;
  color: #555;
  margin-top: 40px;
}

/* Responsividade */
@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 300px;
  }

  .modo-jogo-section h1 {
    font-size: 1.6rem;
  }
}
