* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #3b3c3b;
  color: white;
  padding: 20px;
}

header {
  background: #2a6567;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 10px;
}

header h1 {
  margin-bottom: 10px;
}

nav a {
  color: #00ff88;
  text-decoration: none;
}

h2 {
  margin-bottom: 15px;
}

h3 {
  margin: 20px 0 10px;
}

section {
  margin-bottom: 30px;
}
.detalhes {
  margin-top: 6px;
  padding-left: 10px;
  border-left: 2px solid #00ff88;
}

.detalhes p {
  margin: 6px 0;       
  line-height: 1.5;
  font-size: 13px;
  color: #ccc;
}

.selecoes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  background: #2a6567;
  border-radius: 12px;
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.team-info {
  padding: 10px;
  text-align: center;
}

.team-info h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.team-info p {
  font-size: 14px;
}

.jogos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 45px;
}

.jogo-card {
  background: #2a6567;
  padding: 15px;
  border-radius: 10px;
}
.probabilidades {
  margin-top: 8px;
}

.probabilidades .principal {
  font-weight: bold;
  color: #00ff88;
  font-size: 20px;
  margin-bottom: 8px;
}
.times {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.times span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.times img {
  width: 20px;
  height: 15px;
}

.prob {
  font-size: 13px;
  margin-bottom: 5px;
  opacity: 0.9;
}

.placar {
  font-weight: bold;
}

footer {
  margin-top: 40px;
  padding: 15px;
  background: #2a6567;
  text-align: center;
}

@media (max-width: 1024px) {
  .selecoes {
    grid-template-columns: repeat(2, 1fr);
  }

  .jogos {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Celular */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  header {
    text-align: center;
  }

  .selecoes {
    grid-template-columns: 1fr;
  }

  .jogos {
    grid-template-columns: 1fr;
  }

  .team-card img {
    height: 100px;
  }

  .times {
    justify-content: center;
    text-align: center;
  }
}