/* ============================================
   VÍDEOS - Página de Vídeos
   ============================================ */

/* ---------- FEATURED VIDEO ---------- */
.video-featured-section {
  background: var(--white);
  padding-bottom: 30px;
}

.video-featured {
  max-width: 900px;
  margin: 0 auto;
}

.video-player {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16/9;
}

.video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.video-play-overlay:hover {
  background: rgba(0, 0, 0, 0.25);
}

.play-btn-big {
  width: 80px;
  height: 80px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  transition: var(--transition);
  box-shadow: 0 0 0 0 rgba(237, 28, 36, 0.4);
  animation: pulse-play 2s ease-in-out infinite;
}

.video-play-overlay:hover .play-btn-big {
  transform: scale(1.1);
  background: var(--red-dark);
}

.play-btn-big i {
  margin-left: 5px;
}

@keyframes pulse-play {
  0%, 100% { box-shadow: 0 0 0 0 rgba(237, 28, 36, 0.4); }
  50% { box-shadow: 0 0 0 20px rgba(237, 28, 36, 0); }
}

.video-featured-info {
  padding: 25px 5px;
  text-align: center;
}

.video-featured-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.video-featured-info p {
  font-size: 0.92rem;
  color: var(--gray-600);
}

/* ---------- VIDEO GRID ---------- */
.video-gallery-section {
  background: var(--gray-50);
  padding-top: 50px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.video-card.active {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), var(--shadow-lg);
}

/* Thumbnail */
.vc-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.vc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.video-card:hover .vc-thumb img {
  transform: scale(1.08);
}

.vc-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 50px;
  height: 50px;
  background: rgba(237, 28, 36, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
  opacity: 0.9;
}

.vc-play i {
  margin-left: 3px;
}

.video-card:hover .vc-play {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.vc-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

/* Info */
.vc-info {
  padding: 16px;
}

.vc-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.4;
}

.vc-info p {
  font-size: 0.78rem;
  color: var(--gray-400);
  line-height: 1.4;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .video-player {
    border-radius: var(--radius-md);
  }

  .play-btn-big {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .video-featured-info h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
