/* ===== HERO ===== */
.hero-video-wrap{
  position: relative;
  height: clamp(540px, 78vh, 820px);
  overflow: hidden;
}
.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%; /* ajuste fino do enquadramento */
}
.hero-overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 60% at 20% 10%, rgba(0,0,0,.15), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(5,10,20,.25), rgba(5,10,20,.72));
}

/* Esconde o texto grande do hero (“as letras”) */
.hidden{ display:none !important; }

/* ===== Barra de controles (“faixa”) ===== */
.hero-bar{
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,15,25,.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 8px 12px;
}
.hero-btn{
  appearance: none;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
  padding: 8px 12px;
  cursor: pointer;
}
.hero-btn:hover{ background: rgba(255,255,255,.15); }
.hero-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 8px 14px;
}
.hero-cta:hover{ background: rgba(255,255,255,.15); }

@media (max-width: 1024px){
  .hero-video-wrap{ height: clamp(480px, 70vh, 760px); }
}
@media (max-width: 640px){
  .hero-video-wrap{ height: clamp(420px, 64vh, 640px); }
  .hero-cta{ display:none; } /* em telas pequenas, deixa só Play/Som na faixa */
}
