/* Estilos específicos para a página demo-vsl */

.video-player-container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.video-placeholder {
    width: 100%;
    max-width: 800px;
    height: 450px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(64, 224, 208, 0.3);
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(64, 224, 208, 0.1) 0%, transparent 70%);
}

.video-play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #40e0d0 0%, #48cae4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.video-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(64, 224, 208, 0.5);
}

.video-play-button i {
    color: #1a1a2e;
    font-size: 2rem;
    margin-left: 4px;
}

.video-placeholder-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-text-center {
    text-align: center;
    margin: 2rem 0 1rem 0;
}

.cta-text-center p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Responsividade para o video player */
@media (max-width: 768px) {
    .video-placeholder {
        height: 300px;
        max-width: 100%;
    }
    
    .video-play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-play-button i {
        font-size: 1.5rem;
    }
    
    .video-placeholder-text {
        font-size: 1rem;
    }
    
    .cta-text-center p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .video-placeholder {
        height: 250px;
    }
    
    .video-play-button {
        width: 50px;
        height: 50px;
    }
    
    .video-play-button i {
        font-size: 1.2rem;
    }
    
    .cta-text-center p {
        font-size: 1rem;
    }
}


/* Usar mesma fonte da subheadline da hero section */
.demo-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .demo-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .demo-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
}
