/* INSTAGRAM TITLE - ALINHAMENTO CENTRALIZADO */

/* ===========================
   DESKTOP: TÍTULO CENTRALIZADO COM O VÍDEO
   =========================== */

@media (min-width: 1024px) {
  .instagram-section {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza horizontalmente */
  }

  .instagram-title {
    text-align: center !important; /* Centraliza o texto */
    margin-bottom: 2rem !important;
    width: 100%;
  }

  .instagram-container {
    display: flex;
    justify-content: center; /* Centraliza o vídeo */
    width: 100%;
  }

  .instagram-media {
    margin: 0 auto !important; /* Garante centralização */
  }
}