/* Regras que estavam inline no <style> da página original */

/* Evita quebra no mobile e mantém legível */
.demo-section h2 {
  text-align: center;
  white-space: nowrap;
  font-size: clamp(1rem, 4.5vw, 1.6rem);
}

/* Mantém o container responsivo (já usado pelo iframe/vídeo) */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-container video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
