/* Estilos específicos para a demonstração do Multiview */
.demo-container {
    background: #f8f9fa;
    padding: 60px 0;
}

.demo-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
}

.demo-player {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.demo-screen {
    position: relative;
    width: 100%;
    height: 300px;
    background: #000;
    border-bottom: 3px solid #0066cc;
    overflow: hidden;
}

.demo-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-screen:hover .demo-overlay {
    opacity: 1;
}

.fullscreen-btn {
    background: #0066cc;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fullscreen-btn:hover {
    background: #0052a3;
    transform: scale(1.05);
}

.demo-info {
    padding: 25px;
}

.demo-info h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.demo-info p {
    color: #666;
    line-height: 1.6;
}

/* Modal Fullscreen */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 95%;
    height: 95%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 0, 0, 0.7);
}

#fullscreenIframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.modal-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .demo-content {
        flex-direction: column;
    }
    
    .demo-player {
        min-width: 100%;
    }
    
    .demo-screen {
        height: 250px;
    }
    
    .modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}