    .video-container {
        position: relative;
        width: 100%;
        max-width: 1000px;
        margin: 40px auto;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        aspect-ratio: 16 / 9;
    }

    iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../images/foto_video.png') center/cover no-repeat;
		background-size:100% 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: opacity 0.4s ease;
        z-index: 2;
    }

    .overlay.hidden {
        opacity: 0;
        pointer-events: none;
    }

    .play-button {
        width: 70px;
        height: 70px;
        background: rgba(0,0,0,0.6);
        border-radius: 50%;
        position: relative;
    }

    .play-button::before {
        content: '';
        position: absolute;
        left: 26px;
        top: 20px;
        border-style: solid;
        border-width: 15px 0 15px 25px;
        border-color: transparent transparent transparent white;
    }

    @media (max-width: 600px) {
        .play-button {
            width: 50px;
            height: 50px;
        }

        .play-button::before {
            left: 18px;
            top: 14px;
            border-width: 10px 0 10px 18px;
        }
    }
	
	
	