/* ===== 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(22px, 3.2vw, 38px);
  font-weight:700;
  line-height:1.1;
  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;
}

/* ===== HERO AO VIVO (transmissão do canal no YouTube) ===== */
.hero-live{
  cursor:default;
}
.hero-live .hero-video__video{
  z-index:0;
}
.hero-live .hero-video__body{
  pointer-events:none;
}
.hero-live__tag{
  background:rgba(180,0,0,0.92) !important;
}
.ao-vivo-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#ff2d2d;
  flex-shrink:0;
  box-shadow:0 0 0 0 rgba(255,45,45,0.6);
  animation:ao-vivo-pulse 1.4s infinite;
}
@keyframes ao-vivo-pulse{
  0%   { box-shadow:0 0 0 0 rgba(255,45,45,0.65); }
  70%  { box-shadow:0 0 0 9px rgba(255,45,45,0); }
  100% { box-shadow:0 0 0 0 rgba(255,45,45,0); }
}
.hero-live__btn{
  position:absolute;
  top:18px;
  right:18px;
  z-index:4;
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:rgba(6,14,30,0.65);
  border:1px solid rgba(255,255,255,0.28);
  color:#fff;
  font-family:'Inter', sans-serif;
  font-size:12.5px;
  font-weight:600;
  padding:9px 16px;
  border-radius:30px;
  cursor:pointer;
  transition:background 0.2s ease, transform 0.2s ease;
  pointer-events:auto;
}
.hero-live__btn:hover{
  background:rgba(196,18,48,0.9);
  border-color:transparent;
  transform:scale(1.05);
}
@media (max-width: 560px){
  .hero-live__btn{
    top:14px;
    right:14px;
    font-size:11px;
    padding:8px 12px;
  }
}

/* transmissão com embed bloqueado -> botão para assistir no YouTube */
.hero-live-cta{
  position:absolute;
  right:24px;
  bottom:24px;
  z-index:4;
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(196,18,48,0.95);
  color:#fff;
  font-family:'Oswald', sans-serif;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.06em;
  text-transform:uppercase;
  text-decoration:none;
  padding:12px 20px;
  border-radius:4px;
  box-shadow:0 6px 18px rgba(0,0,0,0.35);
  transition:background 0.2s ease, transform 0.2s ease;
}
.hero-live-cta:hover{
  background:#c41230;
  transform:translateY(-2px);
}
@media (max-width: 560px){
  .hero-live-cta{
    right:14px;
    bottom:16px;
    font-size:12px;
    padding:10px 14px;
  }
}

/* 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;
  }
  .match-ingressos{
    font-size:15px;
    padding:14px 24px;
    margin-top:16px;
  }
}
