/* Contenedor principal */
.partido-container {
  position: relative; /* Para que z-index funcione si hace falta */
  max-width: 900px;
  margin: 40px auto;
  margin-top: 120px; /* espacio extra para que no se tape con encabezado fijo */
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: sans-serif;
  color: #fff;
  z-index: 1;
}

/* Carátula centrada 1:1 */
.partido-carátula {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.partido-cover {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.partido-cover:hover {
  transform: scale(1.05);
}

/* Información alineada a la izquierda */
.partido-info-col {
  width: 100%;
  max-width: 500px;
  text-align: left;
  margin-bottom: 20px;
}

.partido-nombre {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.info-row {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.info-row .icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

/* Tarjeta de precios */
.entradas {
  background-color: #fa0149;
  padding: 15px 20px;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  text-align: left;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}

.entradas ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.entradas li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.entradas li .icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/* Botones debajo de la tarjeta de precios */
.botones-info {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.btn-canales, .btn-socios, .btn-compra {
  display: flex;
  align-items: center;
  background-color: #2596be;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.btn-canales img, .btn-compra img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}

.btn-canales:hover, .btn-socios:hover, .btn-compra:hover {
  transform: scale(1.05);
  background-color: #1e7aa3;
}

/* Menú de canales de venta */
.menu-canales {
  display: none;
  flex-direction: column;
  margin-top: 15px;
  width: 100%;
  max-width: 500px;
  background-color: rgba(0,0,0,0.7);
  border-radius: 10px;
  padding: 10px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s ease;
  z-index: 100; /* más alto para que aparezca sobre el header */
}

.menu-canales.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.menu-canales .canal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.logo-canal {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
}

/* Botón de compra dentro del canal */
.btn-compra {
  background-color: #fa0149;
  padding: 6px 12px;
}

.btn-compra img {
  width: 16px;
  height: 16px;
  margin-left: 6px;
}

/* Animaciones */
.partido-container.loaded .entradas {
  opacity: 1;
  transform: translateY(0);
}