/* =====================================================
   VIDEO INSTITUCIONAL — CINEMÁTICO PREMIUM
   ===================================================== */

:root {
  --sol-yellow: #FFD200;
  --dark-bg: #0f1720;
  --text-light: #ffffff;
  --text-soft: rgba(255,255,255,.75);
}

/* ===============================
   SECÇÃO
   =============================== */

.video-institucional {
  position: relative;
  padding: 70px 0;
  background: url("/assets/img/video-bg.jpg") center/cover no-repeat;
  overflow: hidden;
  color: var(--text-light);
}

/* OVERLAY CINEMÁTICO */

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15,23,32,.95) 0%,
    rgba(15,23,32,.85) 40%,
    rgba(15,23,32,.4) 100%
  );
}

/* CONTAINER */

.video-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* ===============================
   TEXTO
   =============================== */

.video-eyebrow {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sol-yellow);
  display: inline-block;
  margin-bottom: 20px;
}

.video-content h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.video-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 36px;
  max-width: 520px;
}

/* BOTÃO */

.btn-video-primary {
  display: inline-block;
  background: var(--sol-yellow);
  color: #000;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 14px;
  text-decoration: none;
  transition: all .25s ease;
}

.btn-video-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,.25);
}

/* ===============================
   VIDEO CARD
   =============================== */

.video-card {
  position: relative;
  height: 360px;
  border-radius: 24px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BOTÃO PLAY PREMIUM */

.video-play {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: none;
  background: var(--sol-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  position: relative;
  transition: transform .3s ease;
}

.video-play:hover {
  transform: scale(1.08);
}

/* EFEITO PULSE */

.video-play::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--sol-yellow);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: .7; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

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

@media (max-width: 992px) {

  .video-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .video-content p {
    margin-left: auto;
    margin-right: auto;
  }

}


/* =====================================
   LINHA SEPARADORA VIDEO INSTITUCIONAL
===================================== */

.video-institucional{
  position:relative;
  padding-bottom:95px;
}

.video-institucional::after{
  content:"";

  position:absolute;

  left:50%;
  bottom:30px;

  transform:translateX(-50%);

  width:min(1280px, calc(100% - 40px));
  height:3px;

  border-radius:999px;

  background:
  linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,210,0,.20) 15%,
    #FFD200 50%,
    rgba(255,210,0,.20) 85%,
    transparent 100%
  );

  box-shadow:
    0 0 15px rgba(255,210,0,.25);

  pointer-events:none;
}
