/* ------- yt-lite:v1 — facade de embed do YouTube (LGPD-friendly) -------
   Carrega so a thumbnail; o iframe (youtube-nocookie) so entra no clique.
   Nenhum cookie/tracking do YouTube antes do play. */
.yt-lite {
    position: relative;
    display: block;
    width: 100%;
    max-width: 720px;
    margin: 1.75rem 0 2rem;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: #000 center / cover no-repeat;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
}
.yt-lite::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
    transition: background 0.2s ease;
}
.yt-lite:hover::before { background: rgba(0,0,0,0.15); }
.yt-lite .yt-lite-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 72px; height: 50px;
    border-radius: 14px;
    background: rgba(212, 33, 33, 0.92);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease, transform 0.15s ease;
    z-index: 1;
}
.yt-lite:hover .yt-lite-play { background: #ff0000; transform: translate(-50%, -50%) scale(1.06); }
.yt-lite .yt-lite-play::after {
    content: "";
    border-style: solid;
    border-width: 11px 0 11px 19px;
    border-color: transparent transparent transparent #fff;
    margin-left: 4px;
}
.yt-lite .yt-lite-title {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1.1rem 1.25rem 0.9rem;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.35;
    z-index: 1;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.yt-lite iframe {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    border: 0;
}
.yt-lite.yt-lite-activated { cursor: default; }
.yt-lite.yt-lite-activated::before,
.yt-lite.yt-lite-activated .yt-lite-play,
.yt-lite.yt-lite-activated .yt-lite-title { display: none; }
