/* section */
.info-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 1rem;
    background-color: #fff;
}

.info-section-title {
    margin-bottom: 2rem;
}

.info-section-title h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}

.card {
    background: #fff;
    border-radius: 1rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon img {
    height: 48px;
    margin-bottom: 1rem;
}

.card-text {
    font-size: 1rem;
    color: #222;
    line-height: 1.5;
}

/* info-champ */

.info-champ {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 1rem;
    background-color: var(--gray);
}

.info-champ-title {
    margin-bottom: 2rem;
}

.info-champ-title h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}

.card-champ-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    width: 100%;
}

.card-champ {
    flex: 1 1 220px;
    max-width: 250px;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.card-champ img {
    margin: 1rem;
    width: 90%;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    object-fit: cover;
}

.card-champ:hover {
    cursor: pointer;
    transform: translateY(-5px);
}

.equipo-lista {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem 0;
  font-size: 0.95rem;
  color: #333;
  text-align: left;
  padding-left: 1.2rem;
}

.equipo-lista li::before {
  content: "⚽ ";
  color: var(--primary); 
}