/* Voice Selector Styles */

.voice-selector-wrapper {
    width: 100%;
}

.voice-card {
    position: relative;
    padding: 1rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.voice-card:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border-color: rgba(238, 43, 124, 0.3);
    transform: translateY(-2px);
}

.voice-card-selected {
    background: linear-gradient(145deg, rgba(238, 43, 124, 0.15), rgba(139, 92, 246, 0.15));
    border-color: rgba(238, 43, 124, 0.5);
    box-shadow: 0 0 20px rgba(238, 43, 124, 0.2);
}

.voice-card-selected:hover {
    background: linear-gradient(145deg, rgba(238, 43, 124, 0.2), rgba(139, 92, 246, 0.2));
    border-color: rgba(238, 43, 124, 0.6);
}

.voice-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
}

.voice-play-btn:hover {
    background: rgba(238, 43, 124, 0.2);
    border-color: rgba(238, 43, 124, 0.4);
    transform: scale(1.1);
}

.voice-play-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.voice-selected-indicator {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ee2b7c, #8b5cf6);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(238, 43, 124, 0.4);
}

.voice-selected-indicator .material-symbols-outlined {
    font-size: 16px;
    color: white;
}

/* Animações */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(238, 43, 124, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(238, 43, 124, 0.5);
    }
}

.voice-card-selected {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Responsivo */
@media (max-width: 768px) {
    .voice-card {
        padding: 0.75rem;
    }

    .voice-play-btn {
        width: 32px;
        height: 32px;
    }
}
