.ric-vas{
  position: relative;
  overflow: hidden;
  min-height: var(--ric-vas-h-desktop, 520px);
  display: flex;
  align-items: center;}

.ric-vas__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ric-vas__video--placeholder{
  position: absolute;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #0b49ff;
  color: rgba(255,255,255,.85);
  font-size: 14px;
}

.ric-vas__overlay{
  position: absolute;
  inset: 0;
  background: var(--ric-vas-overlay, #0b49ff);
  opacity: var(--ric-vas-overlay-opacity, 0.55);
  pointer-events: none;
}

.ric-vas__inner{
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 26px 22px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: center;
}

.ric-vas__left{
  display:flex;
  justify-content: center;
}

/* ✅ NOVO: painel com cor + alpha */
.ric-vas__panel{
  background: var(--ric-vas-panel, rgba(11, 73, 255, 0.35));
}

.ric-vas__title{
  margin: 0 0 14px;
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 42px);
  line-height: 1.08;
  white-space: pre-line;
  color: var(--ric-vas-title, #fff);
}

.ric-vas__body{
  margin: 0 0 14px;
  color: var(--ric-vas-text, rgba(255,255,255,.9));
  line-height: 1.4;
  font-size: 22px;
}

.ric-vas__footer{
  margin: 0;
  color: var(--ric-vas-text, rgba(255,255,255,.9));
  font-weight: 300;
  font-size: 22px;
}

@media (max-width: 900px){
  .ric-vas__inner{
    grid-template-columns: 1fr;
    text-align: center;
  }
}
