/* ===== CONTENIDO PRINCIPAL ===== */

.player-section {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 90px;
  gap: 40px;
  background-color: #fff;
}

.player-text {
  flex: 1 1 450px;
}

.player-text h1 {
  color: #2d8a45;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.player-text p {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.player-text ul {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.player-text ul li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #2d8a45;
}

/* BOTÓN */

.btn-volver {
  display: inline-block;
  background: linear-gradient(90deg, #2d8a45, #1f6332);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-volver:hover {
  background: linear-gradient(90deg, #1f6332, #2d8a45);
  transform: scale(1.05);
}

/* IMAGEN */

.player-image {
  flex: 1 1 350px;
  text-align: center;
}

.player-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .player-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
}
