/* =====================================
   PROGRAMA - HERO
===================================== */
.program-hero {
  height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.program-hero__overlay {
  background: rgba(0,0,0,0.6);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.program-hero__overlay h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.program-hero__overlay p {
  font-size: 18px;
}

/* =====================================
   ABOUT
===================================== */
.program-about {
  padding: 80px 0;
  background: var(--white);
}

.program-about h2 {
  margin-bottom: 15px;
}

.program-about p {
  max-width: 800px;
}

/* =====================================
   PARTNER - SITECCY
===================================== */
.program-partner {
  padding: 80px 0;
  background: linear-gradient(135deg, #0b0f2a, #1a2b5c);
  color: white;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* TEXTO */
.partner-content h2 {
  margin-bottom: 15px;
}

.partner-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* LOGO */
.partner-image {
  text-align: center;
}

.partner-image img {
  width: 200px;
  max-width: 100%;
  opacity: 0.95;
}

/* =====================================
   EPISODIOS
===================================== */
.program-episodes {
  padding: 80px 0;
  background: var(--light);
}

.program-episodes h2 {
  margin-bottom: 30px;
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.episode-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.episode-card h3 {
  margin-bottom: 10px;
}

.episode-card p {
  font-size: 14px;
  color: gray;
}

/* HOVER */
.episode-card:hover {
  transform: translateY(-5px);
}

/* =====================================
   CTA
===================================== */
.program-cta {
  padding: 60px 0;
  text-align: center;
  background: var(--white);
}

.program-cta h2 {
  margin-bottom: 20px;
}