/* VIDEO WIDGET - Base Styles */

.sslp-video-widget {
    padding: 60px 0;
}

.sslp-video-widget__header {
    text-align: center;
    margin-bottom: 40px;
}

.sslp-video-widget__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(156, 168, 70, 0.15);
    color: var(--sslp-accent, #9CA846);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.sslp-video-widget__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.sslp-video-widget__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.sslp-video-widget__wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.sslp-video-widget__player {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

/* Cover com thumbnail */
.sslp-video-widget__cover {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    cursor: pointer;
}

.sslp-video-widget__thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play wrapper - CENTRALIZADO */
.sslp-video-widget__play-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

/* Play button */
.sslp-video-widget__play-btn {
    width: 90px;
    height: 90px;
    border: none;
    background: var(--sslp-accent, #9CA846);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(156, 168, 70, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: sslp-play-glow 2s ease-in-out infinite;
}

.sslp-video-widget__play-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 50px rgba(156, 168, 70, 0.7);
}

.sslp-video-widget__play-btn svg {
    width: 40px;
    height: 40px;
    color: #fff;
    margin-left: 5px;
}

@keyframes sslp-play-glow {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(156, 168, 70, 0.5), 0 10px 40px rgba(156, 168, 70, 0.4);
    }
    50% { 
        box-shadow: 0 0 0 15px rgba(156, 168, 70, 0), 0 10px 40px rgba(156, 168, 70, 0.4);
    }
}

/* Duration badge */
.sslp-video-widget__play-duration {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Esconder label (já tem duration) */
.sslp-video-widget__play-label {
    display: none;
}

/* Video container */
.sslp-video-widget__video-container {
    aspect-ratio: 16/9;
    background: #000;
}

.sslp-video-widget__video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* CTA */
.sslp-video-widget__cta {
    text-align: center;
    margin-top: 40px;
}

/* Glow */
.sslp-video-widget__glow {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    background: radial-gradient(ellipse, rgba(156, 168, 70, 0.3) 0%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
}
