/* ==============================
   ESTRUCTURA GENERAL
============================== */
.deporte-page {
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
}

/* ==============================
   CONTENIDO PRINCIPAL
============================== */
.deporte-content {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* ==============================
   BANNER
============================== */
.deporte-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.deporte-banner img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

/* ==============================
   TEXTO Y TABLA
============================== */
.deporte-text p {
  text-align: justify;
  color: #333;
  line-height: 1.6;
}

.deporte-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 15px;
}

.deporte-table th,
.deporte-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
  vertical-align: middle;
}

.deporte-table thead {
  background-color: #e1e6fb;
}

.deporte-table th {
  color: #3155A0;
  font-weight: 700;
}

/* ==============================
   LISTAS DE ACTIVIDADES
============================== */
.deporte-lista {
  list-style: none;
  padding-left: 0;
  color: #333;
  line-height: 1.8;
}

.deporte-lista li::before {
  content: "• ";
  color: #3155A0;
  font-weight: bold;
}

/* ==============================
   COLORES TEMÁTICOS
============================== */
.text-deporte {
  color: #3155A0;
}

.table-deporte {
  background-color: #e1e6fb;
}

/* ==============================
   IMÁGENES ACTIVIDADES
============================== */
.deporte-actividades-img {
  max-width: 80%;
  border-radius: 10px;
}

/* ==============================
   QR
============================== */
.deporte-qr-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.deporte-qr-card {
  background-color: #fff;
  text-align: center;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deporte-qr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(49, 85, 160, 0.2);
}

.deporte-qr-img {
  width: 180px;
  height: auto;
}


/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 768px) {
  .deporte-banner img {
    max-height: 300px;
  }

  .deporte-lista {
    padding-left: 15px;
  }

  .deporte-table th,
  .deporte-table td {
    font-size: 14px;
    padding: 8px;
  }

  .deporte-actividades-img {
    max-width: 100%;
  }

}
