/* Mantém a proporção nativa 1800 × 490 do vídeo no topo em telas grandes. */
@media (min-width: 901px) {
  .hero {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1800 / 490;
  }

  .hero video {
    object-fit: cover;
  }

  .hero-content {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero h1 {
    font-size: clamp(42px, 4.5vw, 70px);
  }

  .hero-content > p {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .hero-actions {
    margin-top: 18px;
    margin-bottom: 18px;
  }
}
