/* Estilos para thumbnails clicáveis de vídeos do YouTube */

.demo-video-link {
    display: block;
    text-decoration: none;
    margin-bottom: 15px;
}

.demo-video-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.demo-video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.demo-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #000;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.demo-video-wrapper:hover .play-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.demo-video-wrapper:hover .play-button {
    transform: scale(1.15);
    filter: drop-shadow(0 6px 20px rgba(255, 0, 0, 0.6));
}

.play-button svg {
    transition: all 0.3s ease;
}

.demo-video-wrapper:hover .play-button svg {
    filter: brightness(1.2);
}
