/* ===============================
   HERO — AGENCIA CLÁSICA
=============================== */

.hero-agency {
  position: relative;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 3rem;
}

/* Video */

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Oscurecer video */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* Contenido */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}



/* Responsive */

@media (max-width: 768px) {
  .hero-agency {
    padding: 0 2rem;
  }

}