.instagram {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 80px;
  gap: 20px;
  background-color: white;
}

.instagram h1 {
  margin-top: 30px;
  font-size: 3rem;
  text-align: center;
  color: #003366;
}

/* Vídeo principal */
.video-container iframe {
  width: 800px;
  height: 450px;
  max-width: 100%;
  aspect-ratio: 16 / 9; /* Manté proporció automàticament */
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsiu per a pantalles petites (mòbils) */
@media (max-width: 768px) {
  .instagram h1 {
    font-size: 2rem;
    margin-top: 20px;
    padding: 0 10px;
  }

  .video-container iframe {
    width: 100%;
    height: auto;
  }
}
