.podcasts-main-content {
  flex: 1;
  overflow-y: auto;
  background: var(--pod-bg-dark);
  padding-top: 0;
  margin-top: 0;
  padding-left: 0;
  width: calc(100% - var(--sidebar-width-desktop));
  min-height: calc(100vh - var(--navbar-height) - var(--player-height));
}

.featured-banner {
  min-height: 600px;
  height: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: local;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* padding-left compensa a sidebar + espaço interno */
  padding: 40px 20px 60px calc(var(--sidebar-width-desktop) + 80px);
  margin-bottom: 0;
  margin-right: 0;
  /* Full-bleed: cancela o padding-left do .layout-container.active */
  margin-left: calc(-1 * var(--sidebar-width-desktop));
  width: calc(100% + var(--sidebar-width-desktop));
  box-sizing: border-box;
  overflow: visible;
  background-color: var(--pod-bg-dark);
  max-width: 100vw;
  background-size: cover;
  background-position: center;
}

.featured-overlay-dark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.2) 30%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.6) 70%,
      rgba(0, 0, 0, 0.85) 90%,
      var(--pod-bg-dark) 100%);
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.featured-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  min-width: auto;
  margin-left: 0;
  margin-right: auto;
  padding: 0 30px 0 0;
  margin-bottom: 0 0px;
  box-sizing: border-box;
  flex-wrap: nowrap;
  align-items: center;
  min-height: auto;
  overflow: visible;
}

.featured-text {
  flex: 1 1 60%;
  width: auto;
  min-width: 200px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
}

.featured-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 0%, #faf5f5 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  animation: shimmer-text 3s ease-in-out infinite;
  position: relative;
}

@keyframes shimmer-text {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

.featured-subtitle {
  font-size: 14px;
  color: #c5c5d8;
  margin-bottom: 16px;
  font-weight: 400;
  text-align: left;
}

.featured-desc {
  font-size: 16px;
  color: #d9d9e8;
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 550px;
  text-align: left;
}

.featured-image {
  width: clamp(80px, 40%, 240px);
  height: clamp(80px, 40%, 240px);
  min-width: 120px;
  min-height: 120px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex-shrink: 0;
  flex-grow: 0;
  transition: var(--transition-smooth);
  position: relative;
  border-radius: 8px;
  margin-left: auto;
}

.featured-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.featured-image:hover {
  transform: scale(1.05) translateY(-4px);
}

.featured-image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.featured-image-link:hover {
  filter: brightness(0.9);
}

.featured-image-link:focus-visible {
  outline: 2px solid #b79bff;
  outline-offset: 2px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-width: 100%;
  min-height: 100%;
}

.featured-play-btn {
  border: none;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  background: transparent;
}

.featured-play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 0;
}

.featured-play-pulse {
  display: none;
}

.btn-play-thumb {
  position: absolute;
  bottom: 8px !important;
  right: 8px !important;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 0;
  border: none;
  cursor: pointer;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.btn-play-thumb .play-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.1);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-play-thumb .play-circle .play-icon {
  width: 14px;
  height: 14px;
}

.btn-play-thumb .play-circle .play-icon::before {
  border-width: 7px 0 7px 11px;
}

.btn-play-thumb .play-circle.playing .play-icon {
  width: 14px;
  height: 14px;
}

.btn-play-thumb .play-circle.playing .play-icon::before {
  width: 8px;
  height: 12px;
  background: linear-gradient(to right,
      #ffffff 0 3px,
      transparent 3px 5px,
      #ffffff 5px 8px);
}

.btn-play-thumb:hover .play-circle {
  background: #9966cc;
  transform: scale(1.1) translateZ(0);
  box-shadow: 0 4px 12px rgba(153, 102, 204, 0.4);
}

.btn-play-thumb:active .play-circle {
  transform: translateY(0) scale(0.94);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.btn-play-thumb:focus-visible .play-circle {
  box-shadow: 0 0 0 3px rgba(153, 102, 204, 0.7);
}

/* Botão Menu da Thumbnail de Destaque */
.featured-menu-btn {
  position: absolute;
  bottom: 8px !important;
  right: 8px !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50%;
  padding: 0;
  border: none;
  cursor: pointer;
  background: transparent;
  display: flex;
  align-items: center !important;
  justify-content: center ! important;
  z-index: 3;
  transition: transform 0.2s ease;
}

.featured-menu-btn .menu-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.1);
  border: none;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center !important;
  justify-content: center ! important;
}

.featured-menu-btn i {
  color: white;
  font-size: 16px;
  position: relative;
  z-index: 2;
}

.featured-menu-btn:hover .menu-circle {
  background: #9966cc;
  transform: scale(1.1) translateZ(0);
  box-shadow: 0 4px 12px rgba(153, 102, 204, 0.4);
}

.featured-menu-btn:active .menu-circle {
  transform: scale(0.94);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.featured-menu-btn:focus-visible .menu-circle {
  box-shadow: 0 0 0 3px rgba(153, 102, 204, 0.7);
}

@keyframes featured-play-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes featured-pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    transform: scale(1.05);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    transform: scale(1);
  }
}

.podcasts-section {
  padding: 32px 48px;
}

.podcasts-section:first-of-type {
  border-top: none;
  padding-top: 40px;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: -0.5px;
  padding-left: 20px;
}

.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 28px;
  max-width: 100%;
  padding: 20px 0 0 20px;
}

.podcast-grid-card {
  cursor: pointer;
  transition: var(--transition-smooth);
}

.podcast-grid-card:hover {
  transform: scale(1.08);
}

.card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  padding-bottom: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #2c2c2e;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.card-image.loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(60, 60, 64, 0) 0%,
      rgba(60, 60, 64, 0.8) 50%,
      rgba(60, 60, 64, 0) 100%);
  background-size: 200% 100%;
  animation: loading-shimmer 2s infinite;
  z-index: 2;
}

.card-image.error::before {
  content: "⚠";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f1f23;
  font-size: 2rem;
  color: #7a7a7f;
  z-index: 1;
}

.card-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.card-image.loaded img {
  opacity: 1;
}

@keyframes loading-shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(2px);
}

.podcast-grid-card:hover .card-overlay {
  opacity: 1;
}

.play-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pod-primary);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 20px rgba(143, 103, 158, 0.3);
}

.play-btn:hover {
  transform: scale(1.15);
  background: #9966cc;
  box-shadow: 0 12px 30px rgba(153, 102, 204, 0.5);
}

.card-content {
  padding: 0;
}

.card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
  position: relative;
  cursor: default;
  min-height: 2.7em;
}

.podcast-grid-card:hover .card-title {
  color: var(--pod-accent);
}

/* Tooltip para título de podcast truncado */
.card-title[title]:hover {
  position: relative;
}

.card-title[title]::before {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  max-width: 280px;
  min-width: max-content;
  word-break: break-word;
  white-space: pre-wrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(153, 102, 204, 0.3);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
  margin-bottom: 8px;
}

.card-title[title]:hover::before {
  opacity: 1;
  visibility: visible;
  animation: tooltip-fade-in 0.2s ease;
}

.card-title[title]::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 8px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(0, 0, 0, 0.95);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
  margin-bottom: -4px;
  pointer-events: none;
}

.card-title[title]:hover::after {
  opacity: 1;
  visibility: visible;
}

.card-meta-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  width: 100%;
}

.card-date {
  font-size: 0.8rem;
  color: #a1a1a6;
  margin: 0;
  font-weight: 500;
  line-height: 1;
  text-align: left;
}

.card-views {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.75rem;
  color: #a855f7;
  font-weight: 600;
  background: rgba(168, 85, 247, 0.1);
  padding: 1px 6px;
  border-radius: 4px;
}

.card-views i {
  font-size: 0.8rem;
}

.card-author {
  font-size: 0.85rem;
  color: #a1a1a6;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
  position: relative;
  cursor: default;
  min-height: 1.35em;
}

.podcast-grid-card:hover .card-author {
  color: #c9c9d0;
}

/* Tooltip para autor de podcast truncado */
.card-author[title]:hover {
  position: relative;
}

.card-author[title]::before {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  color: #e5e7eb;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  max-width: 280px;
  min-width: max-content;
  word-break: break-word;
  white-space: pre-wrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(153, 102, 204, 0.3);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
  margin-bottom: 8px;
}

.card-author[title]:hover::before {
  opacity: 1;
  visibility: visible;
  animation: tooltip-fade-in 0.2s ease;
}

.card-author[title]::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 8px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(0, 0, 0, 0.95);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
  margin-bottom: -4px;
  pointer-events: none;
}

.card-author[title]:hover::after {
  opacity: 1;
  visibility: visible;
}

.play-btn {
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  width: 22px;
  height: 22px;
  position: absolute;
  bottom: 8px;
  right: 8px;
  top: auto;
  left: auto;
  transform: none;
  z-index: 10;
}

.play-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, background-color;
  transform: translateZ(0);
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
}

.featured-play-btn.loading .play-circle,
.play-program-btn.loading .play-circle {
  cursor: wait;
}

.featured-play-btn.loading .play-circle::after,
.play-program-btn.loading .play-circle::after {
  content: "";
  width: 0;
  height: 0;
  border-radius: 50%;
  border: 0;
  border-top-color: #ffffff;
}

.featured-play-btn.loading .play-icon,
.play-program-btn.loading .play-icon {
  opacity: 0;
}

.featured-play-btn[aria-busy="true"],
.play-program-btn[aria-busy="true"] {
  pointer-events: none;
}

@keyframes play-btn-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.play-btn:hover .play-circle {
  background: #9966cc;
  border-color: none;
  transform: scale(1.1) translateZ(0);
  box-shadow: 0 4px 12px rgba(153, 102, 204, 0.4);
}

.play-circle .play-icon {
  position: relative;
  width: 12px;
  height: 12px;
  background: none;
  font-size: 0;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.play-circle .play-icon i {
  display: none;
}

.play-circle .play-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #ffffff;
  transform: translateX(0.5px);
}

.play-circle.playing .play-icon {
  width: 12px;
  height: 12px;
}

.play-circle.playing .play-icon::before {
  width: 7px;
  height: 10px;
  border: none;
  background: linear-gradient(to right,
      #ffffff 0 2px,
      transparent 2px 4px,
      #ffffff 4px 6px);
}

.play-btn:hover .play-circle .play-icon,
.play-btn:focus-visible .play-circle .play-icon {
  transform: scale(1.08);
}

.play-btn:focus-visible .play-circle {
  box-shadow: 0 0 0 3px rgba(153, 102, 204, 0.7);
}

@media (hover: hover) {
  .play-btn:hover .play-circle {
    transform: scale(1.15) translateZ(0);
  }
}

.featured-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
  width: 230px;
  overflow: hidden;
  text-overflow: ellipsis;
  align-self: flex-start;
}

.featured-play-btn .btn-text {
  margin-left: 8px;
  font-weight: 600;
}

.section-programas-carousel .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(30, 30, 30, 0.8);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.carousel-nav:hover {
  background: #fff;
  color: #000;
}

.programs-carousel-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px;
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
  -ms-overflow-style: none;
  /* Hide scrollbar IE/Edge */
}

.programs-carousel-container::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Webkit */
}

.programs-carousel-track {
  display: flex !important;
  gap: 20px;
  width: 100%;
  padding: 10px 0;
}

.program-card {
  cursor: pointer;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(31, 31, 31, 0.8), rgba(40, 40, 40, 0.6));
  position: relative;
  border-radius: 12px;
  flex: 0 0 calc((100% - 60px) / 4);
  /* Desktop: 4 cards (3 gaps of 20px) */
  min-width: 0;
}

@media (max-width: 1199px) {
  .program-card {
    flex: 0 0 calc((100% - 40px) / 3);
    /* Tablet: 3 cards (2 gaps of 20px) */
  }
}

.program-card::before {
  position: absolute;
  background: linear-gradient(135deg, rgba(179, 107, 255, 0.1), transparent);
  border-radius: 16px;
}

.program-card:hover {
  box-shadow: 0 2px 2px rgba(179, 107, 255, 0.1), 0 0 1px rgba(179, 107, 255, 0.1);
  border-color: rgba(179, 107, 255, 0.1);
}

.program-card:hover::before {
  opacity: 1;
}

.program-card:active {
  transform: translateY(-4px) scale(0.98);
}

.program-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, rgba(153, 102, 204, 0.1), rgba(0, 0, 0, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.program-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.program-card:hover .program-overlay {
  opacity: 1;
}

.program-overlay.menu-open {
  opacity: 1;
}

.program-card .play-btn {
  position: absolute !important;
  width: 36px !important;
  height: 36px !important;
  margin-right: auto !important;
  bottom: 8px !important;
  left: 8px !important;
  right: auto !important;
  border-radius: 50%;
  background: rgba(153, 102, 204, 0.9);
  display: flex;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(153, 102, 204, 0.4);
}

.program-card:hover .play-btn {
  transform: scale(1);
  background: rgba(153, 102, 204, 1);
  box-shadow: 0 2px 3px rgba(153, 102, 204, 0.6);
}

.card-menu-btn {
  position: absolute;
  bottom: 8px !important;
  right: 8px !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  font-size: 18px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.card-menu-btn i {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  display: block;
}

.card-menu-btn:hover,
.card-menu-btn:focus-visible {
  background: #9966cc;
  border-color: none;
  transform: scale(1.1) translateZ(0);
  box-shadow: 0 4px 12px rgba(153, 102, 204, 0.4);
}

.card-menu-popup {
  position: fixed;
  left: 10px;
  bottom: 46px;
  min-width: 220px;
  background: #252525ec;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
  padding: 4px 0;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease-out, transform 0.18s ease-out, visibility 0.18s ease-out;
}

/* Posicionamento especial para menu de featured */
#featuredEpisodeMenu {
  position: fixed;
  bottom: auto;
  top: 50%;
  left: auto;
  right: 50%;
  transform: translate(50%, -50%) translateY(8px);
}

#featuredEpisodeMenu.open {
  transform: translate(50%, -50%) translateY(0);
}

.card-menu-popup.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.card-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item {
  width: 100%;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: none;
  color: #e5e7eb;
  font-size: 0.85rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease, color 0.15s ease;
}

.menu-item i {
  font-size: 1rem;
  color: #9ca3af;
}

.menu-item:hover,
.menu-item:focus-visible {
  background: #27272f;
  color: #ffffff;
}

.menu-item:hover i,
.menu-item:focus-visible i {
  color: #e5e7eb;
}

.menu-item:active {
  background: #111827;
}

.program-card-content {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.program-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.program-date {
  font-size: 0.75rem;
  text-align: left;
  color: #9ca3af;
  font-weight: 500;
}

.podcasts-main-content::-webkit-scrollbar {
  width: 8px;
}

.podcasts-main-content::-webkit-scrollbar-track {
  background: var(--pod-bg-dark);
}

.podcasts-main-content::-webkit-scrollbar-thumb {
  background: #424245;
  border-radius: 4px;
}

.podcasts-main-content::-webkit-scrollbar-thumb:hover {
  background: #555558;
}

/* ============================================================================
   LAZY LOADING E PERFORMANCE
   ========================================================================== */

/* Prevenção de CLS (Cumulative Layout Shift) */
.card-image,
.player-artwork,
.featured-image {
  aspect-ratio: 1 / 1;
  contain: layout style paint;
}

.card-image img,
.player-artwork img,
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.card-image img[loading="lazy"] {
  opacity: 0.7;
}

.card-image img.loaded {
  opacity: 1;
}

/* Skeleton loading para imagens */
.card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(44, 44, 46, 0.8) 0%,
      rgba(66, 66, 69, 0.6) 50%,
      rgba(44, 44, 46, 0.8) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 12px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-image.loading::before {
  opacity: 1;
}

.card-image.loaded::before {
  opacity: 0;
  pointer-events: none;
}

/* Shimmer defined globally */

@keyframes fade-pulse {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 0.95;
  }
}

/* Otimização de renderização */
.podcast-grid-card {
  will-change: transform;
  contain: layout style paint;
}

.podcast-grid-card:hover {
  will-change: transform;
}

/* ============================================================================
   MELHORIAS DE HOVER E TRANSIÇÕES
   ========================================================================== */

.podcast-grid-card {
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.25s ease;
  transform-origin: center;
}

.podcast-grid-card:hover {
  transform: scale(1.01) translateY(-1px);
  filter: brightness(1.1);
}

.podcast-grid-card:active {
  transform: scale(1.02) translateY(-2px);
}

.card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: #2c2c2e;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s ease;
}

.podcast-grid-card:hover .card-image {
  box-shadow: 0 1px 4px rgba(153, 102, 204, 0.4);
  transform: scale(1.01);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.25s ease;
  backdrop-filter: none;
  z-index: 2;
}

.podcast-grid-card:hover .card-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0);
}

.play-btn {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: auto;
  top: auto;
  width: 32px;
  height: 32px;
  border-radius: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
  transform: scale(1);
  padding: 0;
  z-index: 3;
}

.podcast-grid-card:hover .play-btn {
  transform: scale(1.15);
}

.play-btn:hover {
  transform: scale(1.15);
  background: transparent;
  box-shadow: none;
}

.play-btn:active {
  transform: scale(0.95);
}

.play-btn-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 22px;
  color: #ffffff;
  padding: 0;
}

.play-btn-icon i {
  font-size: 22px;
  color: #ffffff;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

/* Estado de reprodução - pause */
.play-btn.playing .play-btn-icon i::before {
  color: #ffffff;
}

/* ============================================================================
   GRID FLEXÍVEL OTIMIZADO
   ========================================================================== */

.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 28px;
  max-width: 100%;
  /* Prevenção de reflow */
  contain: layout;
}

/* ============================================================================
   INFINITE SCROLL - LOADING SPINNER
   ============================================================================ */

.infinite-scroll-sentinel {
  width: 100%;
  height: 1px;
  pointer-events: none;
}

.infinite-scroll-spinner {
  display: none;
  width: 100%;
  padding: 48px 24px;
  justify-content: center;
  align-items: center;
  background: var(--pod-bg-dark);
  border-top: 1px solid rgba(66, 66, 69, 0.3);
  margin-top: 32px;
}

.infinite-scroll-spinner.show {
  display: flex;
}

.spinner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.spinner-animation {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
}

.spinner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pod-accent);
  animation: spinner-bounce 1.4s infinite ease-in-out both;
}

.spinner-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.spinner-dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes spinner-bounce {

  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.7;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.spinner-text {
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #a1a1a6;
  text-align: center;
  letter-spacing: 0.5px;
}

.spinner-text.error {
  color: #cd44ef;
  font-weight: 600;
}

.discover-more-section {
  padding: 24px 16px 12px 16px;
}

.discover-more-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}

/* Force 2 columns below 956px */
@media (max-width: 955px) {
  .discover-more-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.discover-more-section .discover-category-card {
  width: 100%;
  min-width: 0;
  height: 100px;
  /* Fixed height for consistency */
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 28px 28px;
  color: #f9fafb;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  appearance: none;
  -webkit-appearance: none;
  background: radial-gradient(1200px 400px at 20% 10%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg, var(--dc-a, #6d28d9) 0%, var(--dc-b, #2563eb) 55%, var(--dc-c, #f43f5e) 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.discover-more-section .discover-category-card::before {
  content: '';
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(closest-side at 30% 40%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 65%),
    radial-gradient(closest-side at 70% 55%, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0) 70%);
  filter: blur(18px);
  opacity: 0.75;
  transform: rotate(8deg);
  pointer-events: none;
}

.discover-more-section .discover-category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.discover-category-title {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.2;
  padding: 10px 12px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.discover-tone-1 {
  --dc-a: #6d28d9;
  --dc-b: #3b82f6;
  --dc-c: #22c55e;
}

.discover-tone-2 {
  --dc-a: #0ea5e9;
  --dc-b: #22c55e;
  --dc-c: #f59e0b;
}

.discover-tone-3 {
  --dc-a: #db2777;
  --dc-b: #f97316;
  --dc-c: #f43f5e;
}

.discover-tone-4 {
  --dc-a: #7c3aed;
  --dc-b: #ec4899;
  --dc-c: #f97316;
}

.discover-more-section .discover-category-card:hover {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.06);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
}

.discover-more-section .discover-category-card:active {
  transform: translateY(0);
  filter: saturate(1.02) brightness(1.02);
}

.discover-programs-section {
  padding: 20px 16px 40px 16px;
  max-width: 1440px;
  margin: 0 auto;
}

.discover-programs-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 0 1rem;
}

.discover-programs-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f9fafb;
}

.discover-back-btn {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #f9fafb;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.discover-programs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0 1rem;
  margin: 0 auto;
  max-width: 100%;
}

.program-card--discover .program-card-image {
  aspect-ratio: 1 / 1;
}

.program-card--discover .program-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-card--discover .program-card-content {
  padding: 10px 2px 0 2px;
}

.program-card--discover .card-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  color: #f9fafb;
}

.program-card--discover .program-date {
  display: none;
}

@media (max-width: 1199px) {
  .discover-programs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0 0.75rem;
  }
}

@media (max-width: 900px) {
  .discover-programs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0 0.75rem;
  }
}

@media (max-width: 520px) {
  .discover-programs-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 0 0.5rem;
  }

  .discover-more-section .discover-category-card {
    min-width: 0;
  }
}

/* Animação para tooltips */
@keyframes tooltip-fade-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================================
   FEATURED PROGRAM - ACTIONS ROW (COMPARTILHAR + ESTATÍSTICAS)
   ========================================================================== */

.featured-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.featured-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #b79bff 0%, #6b24b1 100%);
  color: #ffffff;
  border: none;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(183, 155, 255, 0.3);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.featured-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(183, 155, 255, 0.5);
  background: linear-gradient(135deg, #a891df 0%, #905afc 100%);
}

.featured-share-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 6px rgba(183, 155, 255, 0.3);
}

.featured-share-btn i {
  font-size: 1rem;
}

.featured-stat-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  color: #e5e5f0;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  white-space: nowrap;
}

.featured-stat-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(183, 155, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.featured-stat-item i {
  font-size: 1rem;
}

.featured-stat-value {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* ============================================================================
   FEATURED IMAGE - THUMBNAIL CONTROLS (PLAY + DETALHES)
   ========================================================================== */

.featured-thumbnail-controls {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  z-index: 4;
}

.btn-details-thumb {
  position: relative !important;
  bottom: 0 !important;
  left: auto !important;
  right: auto !important;
  width: 36px !important;
  height: 36px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  padding: 0 !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 1.2rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(6px) !important;
}

.btn-details-thumb:hover {
  background: rgba(0, 0, 0, 0.96) !important;
  transform: scale(1.1) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.65) !important;
}

.btn-details-thumb:active {
  transform: scale(0.94) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6) !important;
}

.btn-details-thumb i {
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-play-thumb {
  position: relative !important;
  left: 0 !important;
  right: auto !important;
  width: 36px !important;
  height: 36px !important;
  margin-right: auto !important;
}

/* Responsividade para Featured Actions Row */
@media (max-width: 768px) {
  .featured-actions-row {
    gap: 12px;
    margin-top: 12px;
  }

  .featured-share-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .featured-stat-item {
    padding: 4px 8px;
    font-size: 0.8rem;
  }

  .featured-stat-item i {
    font-size: 0.9rem;
  }

  .featured-stat-value {
    font-size: 0.8rem;
  }

  .featured-thumbnail-controls {
    padding: 0 4px;
  }

  .btn-play-thumb,
  .btn-details-thumb {
    width: 32px !important;
    height: 32px !important;
  }
}

/* ============================================================================
   TOAST NOTIFICATION ANIMATIONS
   ========================================================================== */

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(100px);
  }
}

/* ============================================================================
   NOVIDADES SECTION - FEATURED CARDS
   ========================================================================== */

.novidade-featured-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background-color: #2c2c2e;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.novidade-featured-card:hover {
  transform: scale(1.05);
}

.novidade-featured-card .card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(2px);
  gap: 16px;
}

.novidade-featured-card:hover .card-overlay {
  opacity: 1;
}

/* ===== SEÇÃO: PROGRAMAS EM DESTAQUE (NOVO LAYOUT) ===== */

.section-programas-destaque {
  padding: 32px 48px;
}

.programas-destaque-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.destaque-program-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  border-radius: 8px;
}

.destaque-program-card:hover {
  transform: translateY(-4px);
}

.destaque-card-tema {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--pod-primary, #b79bff);
  margin-bottom: -14px;
}

.destaque-card-titulo {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.3;
  min-height: 2.6em;
  /* Garante espaço para 2 linhas sempre */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.destaque-card-descricao {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.destaque-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #2c2c2e;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.destaque-program-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.destaque-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.destaque-program-card:hover .destaque-overlay {
  opacity: 1;
}

.destaque-play-btn,
.destaque-details-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 1.2rem;
}

.destaque-play-btn {
  position: absolute;
  width: 32px;
  height: 32px;
  bottom: 12px !important;
  left: 12px !important;
  right: auto;
  top: auto;
  background: rgba(183, 155, 255, 0.3);
  align-items: center;
  justify-content: center;
}

.destaque-play-btn:hover {
  background: rgba(183, 155, 255, 0.5);
  transform: scale(1.1);
}

.destaque-details-btn {
  position: absolute;
  width: 32px;
  height: 32px;
  bottom: 12px !important;
  right: 12px !important;
  left: auto;
  top: auto;
  background: rgba(255, 255, 255, 0.2);
  align-items: center;
  justify-content: center;
}

.destaque-details-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Responsivo: Tablet (768px - 1199px) */
@media (max-width: 1199px) {
  .programas-destaque-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-programas-destaque {
    padding: 32px 32px;
  }
}

/* Responsivo: Mobile (<768px) */
@media (max-width: 767px) {
  .programas-destaque-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-programas-destaque {
    padding: 24px 16px;
  }

  .destaque-card-titulo {
    font-size: 1rem;
  }

  .destaque-card-descricao {
    font-size: 0.85rem;
  }
}