/* PLATAFORMAS CSS - BIG TECH DESIGN */

.tv-plataformas-wrapper {
  margin-top: 48px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  /* Accent line inspired by the red palette */
  border-top: 4px solid #EE2922; 
}

.tv-plataformas-header {
  text-align: center;
  margin-bottom: 32px;
}

.tv-plataformas-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
}

.tv-plataformas-subtitle {
  font-size: 1rem;
  color: #64748b;
  margin-top: 8px;
}

.tv-plataformas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .tv-plataformas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .tv-plataformas-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.tv-plataformas-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  cursor: pointer;
}

.tv-plataformas-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.tv-plataformas-logo-wrapper {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  width: 100%;
}

.tv-plataformas-logo-wrapper img {
  max-height: 100%;
  max-width: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.tv-plataformas-card:hover .tv-plataformas-logo-wrapper img {
  transform: scale(1.08);
}

.tv-plataformas-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  text-align: center;
  transition: color 0.3s ease;
}

.tv-plataformas-card:hover .tv-plataformas-label {
  color: #0f172a;
}

/* REMOVED: FIX PARA DISNEY+ */