/* ===== HERO VIDEO — capa de notícia com vídeo ===== */

.hero-video{
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  background:#000;
  cursor:pointer;
}

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

/* overlay gradiente — escuro embaixo, transparente em cima */
.hero-video::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(0deg,
    rgba(6,14,30,0.92) 0%,
    rgba(6,14,30,0.60) 28%,
    rgba(6,14,30,0.18) 50%,
    rgba(6,14,30,0) 68%
  );
  z-index:1;
  pointer-events:none;
}

/* corpo do texto */
.hero-video__body{
  position:relative;
  z-index:2;
  width:100%;
  color:#fff;
  padding:0 clamp(16px, 2.5vw, 32px) clamp(28px, 5vw, 44px);
}

.hero-video__tag{
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:rgba(196,18,48,0.88);
  color:#fff;
  font-family:'Oswald', sans-serif;
  font-size:11px;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  padding:5px 14px;
  border-radius:3px;
  margin-bottom:12px;
}

.hero-video__tag svg{
  width:11px;
  height:11px;
  flex-shrink:0;
}

.hero-video__title{
  font-family:'Oswald', sans-serif;
  font-size:clamp(26px, 4.2vw, 50px);
  font-weight:700;
  line-height:1.05;
  text-transform:uppercase;
  margin:0 0 8px;
  color:#fff;
  max-width:90%;
}

/* play button centralizado */
.hero-video__play{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:3;
  width:72px;
  height:72px;
  border-radius:50%;
  background:rgba(196,18,48,0.82);
  border:2px solid rgba(255,255,255,0.25);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background 0.25s ease, transform 0.25s ease, opacity 0.3s ease;
}

.hero-video:hover .hero-video__play{
  background:rgba(196,18,48,1);
  transform:translate(-50%,-50%) scale(1.08);
}

.hero-video.is-playing .hero-video__play{
  opacity:0;
  pointer-events:none;
}

.hero-video__play svg{
  width:28px;
  height:28px;
  margin-left:3px;
}

/* barra de progresso sutil */
.hero-video__progress{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:3px;
  background:rgba(255,255,255,0.15);
  z-index:3;
}

.hero-video__progress-bar{
  height:100%;
  width:0%;
  background:var(--vermelho-claro);
  transition:width 0.3s linear;
}

/* botão INGRESSOS AQUI */
.match-ingressos{
  display:block;
  background:#C41230;
  color:#fff;
  text-align:center;
  font-family:'Oswald', sans-serif;
  font-size:13px;
  font-weight:600;
  letter-spacing:0.1em;
  text-transform:uppercase;
  padding:11px 20px;
  border-radius:4px;
  text-decoration:none;
  margin-top:12px;
  transition:background 0.2s ease;
}
.match-ingressos:hover{
  background:#9e0f27;
}

/* ===== RESPONSIVO ===== */

/* tablet */
@media (max-width: 900px){
  .hero-video{
    aspect-ratio:16/9;
    max-height:62vh;
  }
  .hero-video__body{
    padding:0 clamp(16px, 3vw, 32px) clamp(24px, 4vw, 36px);
  }
  .hero-video__play{
    width:60px;
    height:60px;
  }
  .hero-video__play svg{
    width:24px;
    height:24px;
  }
}

/* mobile */
@media (max-width: 560px){
  .hero-video{
    aspect-ratio:16/9;
    max-height:56vh;
  }
  .hero-video__video{
    object-position:center 40%;
  }
  .hero-video__body{
    padding:0 16px 22px;
  }
  .hero-video__tag{
    font-size:10px;
    padding:4px 10px;
    margin-bottom:10px;
  }
  .hero-video__title{
    font-size:24px;
    margin-bottom:6px;
  }
  .hero-video__play{
    width:52px;
    height:52px;
  }
  .hero-video__play svg{
    width:20px;
    height:20px;
  }
  .hero-video__progress{
    height:2px;
  }
}
