/* ===============================
   HERO
================================ */
.home-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #3F6EA8 0%, #ffffff 100%);
}

.hero__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero__image img {
  max-width: 400px;
}
/* =====================================
   HOME - SOBRE NOSOTROS
===================================== */

.home-about {
  padding: 80px 0;
  background: var(--light);
}

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

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

.about-card:hover {
  transform: translateY(-5px);
}

.about-card h3 {
  margin-bottom: 15px;
  color: var(--primary);
}
/* ===============================
   PROGRAMAS
================================ */
/* =====================================
   HOME - PROGRAMAS VISUAL
===================================== */

.home-programas {
  padding: 80px 0;
  background: var(--white);
}

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

.program-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  height: 260px;
}

.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.program-card:hover img {
  transform: scale(1.1);
}

.program-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0)
  );
  color: white;
}

.program-card__content h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.program-card__content p {
  font-size: 14px;
}
/* =====================================
   HOME - PODCAST
===================================== */

.home-podcast {
  padding: 80px 0;
  background: var(--light);
}

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

.podcast-info h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.podcast-info p {
  margin-bottom: 25px;
  line-height: 1.6;
}

.podcast-player iframe {
  width: 100%;
}