.filtros-clientes {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin: 20px 0 40px;
}

.filtro-btn {
  margin-top: 80px;
  font-family: 'Montserrat', sans-serif;
  padding: 10px 35px;
  border: 2px solid #222;
  background: white;
  cursor: pointer;
  font-weight: 1800;
  transition: all 0.3s ease;
  border-radius: 5px;
  font-size: 1.5rem;
}

.filtro-btn:hover {
  background: #222;
  color: white;
}

.filtro-btn.activo {
  background: #222;
  color: white;
}


/* ========================================================= */
/*             RESPONSIVE PARA BOTONES DE FILTRO              */
/* ========================================================= */

/* 🔹 Ajuste general de botones (desktop a mobile) */
.filtro-boton,
.filtro {
  font-family: "Montserrat", sans-serif;
  background-color: #006BB3;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Hover */
.filtro-boton:hover,
.filtro:hover {
  background-color: #c70000;
}

/* ===== Tablets ===== */
@media (max-width: 1024px) {
  .filtros-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .filtro-boton,
  .filtro {
    font-size: 18px;
    padding: 12px 25px;
  }
}

/* ===== Móviles ===== */
@media (max-width: 768px) {
  .filtros-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }

  .filtro-boton,
  .filtro {
    width: 80%;
    font-size: 20px;
    padding: 15px 0;
    border-radius: 14px;
  }
}

/* ===== Pequeños móviles ===== */
@media (max-width: 480px) {
  .filtro-boton,
  .filtro {
    width: 90%;
    font-size: 22px;
    padding: 18px 0;
  }
}


/* ========================================================= */
/*               GRID RESPONSIVE DE JUGADORES                */
/* ========================================================= */

/* ========================= RESPONSIVE ========================= */



/* 🔹 Tablets (2 jugadores por fila) */
@media (max-width: 1024px) {
  .contenedor-clientes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .cont-cliente {
    padding: 12px;
  }

  .foto-cliente {
    height: 260px;
  }

  .nombre-cliente {
    font-size: 17px;
  }
}

/* 🔹 Celulares (1 jugador por fila, centrado) */
@media (max-width: 768px) {
  .contenedor-clientes-grid {
    grid-template-columns: 1fr 1fr; /* ✅ 2 jugadores por fila en móviles */
    gap: 18px;
  }

  .foto-cliente {
    height: 220px;
  }

  .nombre-cliente {
    font-size: 16px;
  }
}

/* 🔹 Móviles pequeños (iPhone SE, etc.) */
@media (max-width: 480px) {
  .contenedor-clientes-grid {
    grid-template-columns: 1fr; /* ✅ 1 jugador por fila */
  }

  .foto-cliente {
    height: 200px;
  }

  .nombre-cliente {
    font-size: 15px;
  }
}



