/* Seção de Podcasts - Estilos Próprios */

.span-podcast {
  font-weight: 200;
}

.podcast-title-text {
  font-weight: 200;
}

.podcast-section {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--color-white) 100%
  );
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.podcast-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2352695c" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23badbbc" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%2352695c" opacity="0.02"/><circle cx="10" cy="60" r="0.5" fill="%23badbbc" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%2352695c" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.podcast-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.podcast-header {
  text-align: center;
  margin-bottom: 60px;
}

.podcast-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 20px 0;
  line-height: 1.2;
  position: relative;
}

.podcast-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  border-radius: 2px;
}

.podcast-title-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.podcast-title-logo {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(82, 105, 92, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--color-secondary);
}

.podcast-title-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(82, 105, 92, 0.25);
}

.podcast-subtitle {
  font-size: 19px;
  font-weight: 200;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin: 0 auto 30px auto;
  max-width: 600px;
}

.podcast-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  color: var(--color-white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(82, 105, 92, 0.3);
  position: relative;
  overflow: hidden;
}

.podcast-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.podcast-link:hover::before {
  left: 100%;
}

.podcast-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(82, 105, 92, 0.4);
}

.podcast-link svg {
  transition: transform 0.3s ease;
}

.podcast-link:hover svg {
  transform: translateX(3px);
}

.podcast-videos {
  width: 100%;
}

.podcast-footer {
  text-align: center;
  margin-top: 50px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.video-item {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(82, 105, 92, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-medium-gray);
  position: relative;
}

.video-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  z-index: 1;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(82, 105, 92, 0.2);
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
  .podcast-section {
    padding: 60px 0;
  }

  .podcast-container {
    padding: 0 15px;
  }

  .podcast-header {
    margin-bottom: 40px;
  }

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

  .podcast-title-content {
    gap: 15px;
  }

  .podcast-title-logo {
    width: 50px;
    height: 50px;
  }

  .podcast-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .podcast-link {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .video-item {
    border-radius: 15px;
  }

  .podcast-footer {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .podcast-section {
    padding: 40px 0;
  }

  .podcast-container {
    padding: 0 10px;
  }

  .podcast-header {
    margin-bottom: 30px;
  }

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

  .podcast-title-content {
    gap: 12px;
  }

  .podcast-title-logo {
    width: 40px;
    height: 40px;
  }

  .podcast-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .podcast-link {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .video-grid {
    gap: 15px;
    margin-top: 25px;
  }

  .podcast-footer {
    margin-top: 30px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.podcast-header {
  animation: fadeInUp 0.8s ease-out;
}

.podcast-title-logo {
  animation: slideInLeft 0.8s ease-out;
}

.video-item {
  animation: fadeInUp 0.8s ease-out;
}

.video-item:nth-child(2) {
  animation-delay: 0.2s;
}

.video-item:nth-child(3) {
  animation-delay: 0.4s;
}
