    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background: #3b3c3b;
      color: white;
    }

    header {
      background: #2a6567;
      padding: 15px;
      display: flex;
      border-radius: 10px;
      justify-content: space-between;
      align-items: center;
    }
    .group-card {
  display: block;
  background: #2a6567;
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  transition: transform 0.2s, box-shadow 0.2s;
}

.group-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

    .navbar {
    display: flex;
    align-items: center;
    gap: 20px;
    }

    .navbar a {
    color: white;
    text-decoration: none;
    }

    /* Dropdown */
    .dropdown {
    position: relative;
    }

    .dropbtn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    }

    .dropdown-content {
    display: none;
    position: absolute;
    background: #2a6567;
    min-width: 150px;
    top: 30px;
    border-radius: 8px;
    overflow: hidden;
    }

    .dropdown-content a {
    display: block;
    padding: 10px;
    }

    .dropdown-content a:hover {
    background: #3ea6a9;
    }

    /* Mostrar dropdown no hover */
    .dropdown:hover .dropdown-content {
    display: block;
    }

    .container {
      padding: 20px;
    }

    .top-section {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .btn-probabilidades {
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: bold;
}
.btn-probabilidades:hover {
  background-color: #2a6567;
}
    .carousel {
      flex: 2;
      background: #123;
      height: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    img {
        max-width: 100%;
        height: auto;
        display: block;
        }
    .about {
      flex: 1;
      background: #2a6567;
      padding: 15px;
      border-radius: 10px;
      box-sizing: border-box; /* MUITO IMPORTANTE */
      max-width: 100%;
      size: 20px;
    }
    .texto-sobre{
      gap: 5px;
      padding: 10px;
      font-size: 20px;
    }

    .groups {
      margin-top: 30px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .group {
      margin-bottom: 30px;
      grid-template-columns: 1fr 1fr;
      border: solid 10px black;
    }

    .teams {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 10px;
        margin-top: 10px;
        border-radius: 10px;
        }
    /* CARD MELHORADO */
    .team-card {
      background: #2a6567;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .team-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    }

    .team-card img {
      width: 100%;
      height: 100px;
      object-fit: cover;
    }

    .team-info {
      padding: 10px;
      text-align: center;
    }

    .team-info h3 {
      font-size: 16px;
    }

    .team-info p {
      font-size: 12px;
      opacity: 0.8;
    }

    footer {
      margin-top: 40px;
      padding: 20px;
      text-align: center;
      background: #3b3c3b;
    }
    .probabilidades {
        padding: 25px;
        max-width: 600px;
        margin: auto;
        }

        .probabilidades h2 {
        margin-bottom: 20px;
        text-align: center;
        }

        /* cada time */
        .time {
        margin-bottom: 20px;
        }

        /* nome + bandeira */
        .info-time {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 5px;
        }

        .info-time img {
        width: 30px;
        height: auto;
        border-radius: 3px;
        }

        /* barra */
        .barra {
        width: 100%;
        height: 25px;
        background-color: #e0e0e0;
        border-radius: 12px;
        overflow: hidden;
        }

        /* progresso */
        .progresso {
        height: 100%;
        border-radius: 8px;
        text-align: right;
        padding-right: 8px;
        color: rgb(59, 56, 56);
        font-weight: bold;
        line-height: 25px;
        background: linear-gradient(90deg, #1e7f3e, #28a745); /* ESCOLHA SUA COR AQUI */
        transition: width 0.5s ease;
        }

        /* cores + porcentagens */
        

    @media (max-width: 768px) {
      .top-section {
        flex-direction: column;
      }
    }

