/**
 * Estilos para Card Click Handler
 * Deixa claro que os cards são clicáveis
 */

/* Novidades - Card Clicável */
.novidade-featured-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.novidade-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.novidade-featured-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    border-radius: inherit;
}

.novidade-featured-card:hover::after {
    opacity: 1;
}

/* Principais Card Novidades - Clicável */
.principais-card-novidades {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.principais-card-novidades:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(158, 13, 187, 0.2);
    border-color: rgba(158, 13, 187, 0.5);
}

/* Top 5 - Card Clicável */
.podcast-top-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Principais Card Top - Clicável */
.principais-card-top {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.principais-card-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(158, 13, 187, 0.2);
    border-color: rgba(158, 13, 187, 0.5);
}

/* Resultado de Busca - Clicável */
.search-result-card,
.search-podcast-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.search-result-card:hover,
.search-podcast-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(158, 13, 187, 0.2);
    border-color: rgba(158, 13, 187, 0.5);
}

/* Programa Relacionado - Clicável */
.program-related-card[data-program-id] {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.program-related-card[data-program-id]:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(158, 13, 187, 0.2);
}

/* Feedback ao clicar */
.novidade-featured-card:active,
.principais-card-novidades:active,
.podcast-top-card:active,
.principais-card-top:active,
.search-result-card:active,
.search-podcast-card:active,
.program-related-card[data-program-id]:active {
    transform: scale(0.98);
}

