/* ===== Section Participação PodContábil ===== */
.section-podcast {
  background: linear-gradient(135deg, #f8f9fc 0%, #eef2f9 50%, #f5f0f5 100%);
  position: relative;
  overflow: hidden;
}

.section-podcast::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(51, 101, 189, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-podcast::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(160, 30, 92, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.podcast-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 60px -15px rgba(51, 101, 189, 0.2),
              0 4px 25px -10px rgba(160, 30, 92, 0.15);
  overflow: hidden;
  border: 1px solid rgba(51, 101, 189, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.podcast-card:hover {
  box-shadow: 0 20px 70px -15px rgba(51, 101, 189, 0.25),
              0 8px 35px -10px rgba(160, 30, 92, 0.2);
}

.podcast-content {
  padding: 50px 40px 50px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 380px;
}

@media (max-width: 991px) {
  .podcast-content {
    padding: 35px 25px 40px;
    min-height: auto;
  }
}

.podcast-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #3365bd 0%, #1c448a 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px -3px rgba(51, 101, 189, 0.4);
}

.podcast-badge i {
  font-size: 14px;
}

.podcast-title {
  font-size: 2.4rem;
  line-height: 2.6rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.podcast-title b {
  color: #3365bd;
  position: relative;
}

@media (max-width: 575px) {
  .podcast-title {
    font-size: 1.9rem;
    line-height: 2.2rem;
  }
}

.podcast-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #5a6578;
  margin-bottom: 25px;
  max-width: 95%;
}

.podcast-content .btn-two {
  margin-top: 5px;
}

.podcast-content .btn-two span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.podcast-content .btn-two span i {
  font-size: 14px;
}

.podcast-thumbnail-wrap {
  display: block;
  text-decoration: none;
  height: 100%;
}

.podcast-thumbnail {
  position: relative;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .podcast-thumbnail {
    min-height: 280px;
  }
}

.podcast-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.podcast-thumbnail-wrap:hover .podcast-thumbnail img {
  transform: scale(1.05);
}

.podcast-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(28, 68, 138, 0.5) 0%,
    rgba(51, 101, 189, 0.2) 40%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.podcast-thumbnail-wrap:hover .podcast-overlay {
  opacity: 1;
}

.podcast-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #3365bd 0%, #1c448a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 10px 40px -5px rgba(51, 101, 189, 0.6);
  transition: all 0.4s ease;
  z-index: 2;
  border: 4px solid rgba(255, 255, 255, 0.9);
}

@media (max-width: 575px) {
  .podcast-play-btn {
    width: 75px;
    height: 75px;
    font-size: 1.6rem;
  }
}

.podcast-thumbnail-wrap:hover .podcast-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 15px 50px -5px rgba(51, 101, 189, 0.7);
  background: linear-gradient(135deg, #a01e5c 0%, #811047 100%);
}
