const links = [
"https://www.instagram.com/p/CtboAodrvBa/?igsh=b3Vkamd4cGo0bTQ%3D&img_index=1",
"https://www.instagram.com/p/CtJpWvWLcvx/?igsh=MWUzN2tqeG16dGZlcA%3D%3D&img_index=1",
"https://www.instagram.com/p/CwP1GaoroqS/?igsh=MWh0MnhudDQ0YjNxMg%3D%3D",
"https://www.instagram.com/reel/CuHeb8XMLz7/?igsh=azIxMXo4bWNsZmJn"
// Adicione mais links aqui
];
const container = document.getElementById("instagram-embeds");
links.forEach(link => {
const embed = document.createElement("div");
embed.style = "border: 1px solid #ddd; border-radius: 5px; padding: 10px; max-width: 350px; width: 100%;";
embed.innerHTML = `
<blockquote class="instagram-media"
style="background: #FFF; border: 0; border-radius: 3px; box-shadow: 0 0 1px 0 rgba(0,0,0,0.5), 0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width: 100%; min-width: 150px; padding: 0;"
data-instgrm-permalink="${link}"
data-instgrm-version="14">
`;
container.appendChild(embed);
});