/* ── Section Vídeo Vertical ── */
.section-video {
  padding: 4rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.video-header .label-topo {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.3rem 1rem;
  margin-bottom: 1rem;
}

.video-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.video-header h3 span {
  color: var(--gold-light);
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px; /* largura ideal para vídeo vertical 9:16 */
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.08);
}

.video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--navy-deep);
}

/* Barra de controles personalizada */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(7, 16, 32, 0.92) 0%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.video-wrapper:hover .video-controls {
  opacity: 1;
}

.video-play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}

.video-play-btn:hover {
  background: var(--gold-light);
  transform: scale(1.08);
}

.video-play-btn svg {
  width: 16px;
  height: 16px;
  color: var(--navy-deep);
  fill: currentColor;
  margin-left: 2px; /* ajuste óptico do ícone play */
}

.video-play-btn.is-paused svg.icon-pause { display: none; }
.video-play-btn.is-paused svg.icon-play  { display: block; }
.video-play-btn svg.icon-pause { display: block; }
.video-play-btn svg.icon-play  { display: none; }

.video-progress {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  cursor: pointer;
}

.video-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
}

.video-mute-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.video-mute-btn:hover {
  color: var(--gold-light);
}

.video-mute-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 480px) {
  .video-wrapper {
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}