#ww .video-container {
    width: 100%;
    max-width: 700px;
    height: 60vh; /* 40% del alto de la pantalla */
    max-height: 400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

#ww .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none; /* Elimina borde por defecto del iframe */
}

#ww h1 {
    text-align: center;
    margin: 20px 0;
    padding: 0 15px; /* Padding para no pegarse a los bordes en móviles */
    font-size: 2rem; /* Tamaño base */
}

/* Media Queries para ajustes específicos */
@media (max-width: 768px) {
    .video-container {
        max-width: 95%; /* Ocupa más espacio en tablets */
    }
    
    h1 {
        font-size: 1.8rem; /* Tamaño ligeramente menor */
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem; /* Tamaño más pequeño para móviles */
        margin: 15px 0;
    }
    
    .video-container {
        padding-bottom: 75%; /* Puedes ajustar a 4:3 (75%) si prefieres */
    }
}