.portada-novedades {
  position: relative;
  width: 100%;
  height: 52vh;
  min-height: 320px;
  max-height: 560px;
  overflow: hidden;
  display: grid;
  align-items: center;
  justify-items: center;
  padding-top: 16px;
}

.video-fondo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capa {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.45));
}

.contenido-portada {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  display: grid;
  gap: 8px;
  padding: 0 16px;
}

.contenido-portada h1 {
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.05;
}

.contenido-portada p {
  font-size: clamp(14px, 2.5vw, 18px);
  opacity: .95;
}

.btn-cta {
  display: inline-block;
  margin-top: 6px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #353593;
  color: #fff;
  text-decoration: none;
  box-shadow: 2px 2px 4px rgba(0,0,0,.25);
}

.btn-cta:hover {
  background: #000;
  color: #e8e8e8;
  font-weight: 700;
  box-shadow: 3px 3px 5px rgba(0,0,0,.35);
}