/* style.css */
/* Base */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Inter',sans-serif; color:#333; }
.container { width:90%; max-width:1200px; margin:0 auto; }

/* Hero e vídeo */
#hero {
  position:relative;
  overflow:hidden;
  height:calc(100vh - var(--header-height));
}
.hero-video {
  position:absolute;
  top:0; left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

/* Scroll-offset Mobile */
@media (max-width: 768px) {
  #services,
  #trabalho,
  #about,
  #contato {
    scroll-margin-top: var(--header-height);
  }
}

/* Footer */
.footer { background:#111827; color:#9CA3AF; padding:2rem 0; }
