/* ===== TELECAB 10 PAGE ===== */

/* Hero Section */
.telecab10-hero {
  background: linear-gradient(135deg, #004968 0%, #0077aa 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.telecab10-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.telecab10-hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-icon i {
  font-size: 3.5rem;
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Sobre Section */
.sobre-section {
  padding: 5rem 0;
  background: white;
}

.sobre-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
  text-align: center;
}

.sobre-text {
  text-align: center;
}

.sobre-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.sobre-text p:last-child {
  margin-bottom: 0;
}

/* Programação Section */
.programacao-section {
  padding: 5rem 0;
  background: #f9fafb;
}

.section-description {
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
  text-align: center;
}

.programas-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 3rem;
}

.programas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.programa-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: default;
}

.programa-card:hover {
  border-color: #004968;
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 73, 104, 0.15);
}

.programa-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 73, 104, 0.2);
  transition: all 0.3s ease;
}

.programa-card:hover .programa-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 35px rgba(0, 73, 104, 0.3);
}

.programa-icon i {
  font-size: 2.5rem;
  color: white;
}

.programa-nome {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.5rem;
}

.programa-descricao {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.programa-card.has-descricao {
  cursor: pointer;
}

/* Onde Assistir Section */
.onde-assistir-section {
  padding: 5rem 0;
  background: white;
}

.assistir-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.assistir-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.assistir-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #004968 0%, #0077aa 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.assistir-card:hover::before {
  transform: scaleX(1);
}

.assistir-card:hover {
  border-color: #004968;
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 73, 104, 0.15);
}

.assistir-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.assistir-card:hover .assistir-icon {
  transform: scale(1.1);
}

.assistir-icon i {
  font-size: 2.25rem;
  color: #004968;
}

.youtube-card .assistir-icon i {
  color: #dc2626;
}

.assistir-content {
  flex: 1;
}

.assistir-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.assistir-content p {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.assistir-arrow {
  width: 40px;
  height: 40px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.assistir-card:hover .assistir-arrow {
  background: #004968;
  transform: translateX(5px);
}

.assistir-arrow i {
  font-size: 1.25rem;
  color: #6b7280;
  transition: color 0.3s ease;
}

.assistir-card:hover .assistir-arrow i {
  color: white;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .programas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .telecab10-hero {
    padding: 3rem 0;
  }

  .hero-icon {
    width: 80px;
    height: 80px;
  }

  .hero-icon i {
    font-size: 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .sobre-section,
  .programacao-section,
  .onde-assistir-section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .sobre-text p,
  .section-description {
    font-size: 1rem;
  }

  .programas-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .assistir-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .assistir-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .telecab10-hero {
    padding: 2.5rem 0;
  }

  .hero-icon {
    width: 70px;
    height: 70px;
  }

  .hero-icon i {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .programa-card {
    padding: 2rem 1.5rem;
  }

  .programa-icon {
    width: 70px;
    height: 70px;
  }

  .programa-icon i {
    font-size: 2.25rem;
  }

  .programa-nome {
    font-size: 1.1rem;
  }

  .assistir-card {
    flex-direction: column;
    text-align: center;
  }

  .assistir-arrow {
    display: none;
  }
}

.btn-app {
  background-color: #1f2937;
  border-radius: 6px;
}

.btn-app img {
  height: 45px;
}

/* ===== PROGRAMA ICON — imagem dinâmica ===== */
.programa-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

/* ===== SKELETON LOADING ===== */
@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}

.programa-skeleton {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.skeleton-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 400px 100%;
  animation: shimmer 1.4s infinite linear;
}

.skeleton-nome {
  width: 100px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 400px 100%;
  animation: shimmer 1.4s infinite linear;
}

/* ===== MODAL PROGRAMA ===== */
.modal-programa-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
}

.modal-programa-header {
  background: linear-gradient(135deg, #004968 0%, #0077aa 100%);
  border-bottom: none;
  padding: 1.5rem 1.75rem;
}

.modal-programa-header .modal-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-programa-body {
  padding: 1.75rem;
  color: #374151;
  font-size: 1rem;
  line-height: 1.75;
}

.modal-programa-body p {
  margin: 0;
}

/* ===== EMPTY STATE ===== */
.programas-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: #9ca3af;
}

.programas-empty i {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1rem;
  color: #d1d5db;
}

.programas-empty p {
  font-size: 1.1rem;
  margin: 0;
}
