/* ===================================================
   VIDEO SECTION
   =================================================== */
.video-section {
  background: var(--cream2);
  padding: 80px 0;
  text-align: center;
}

.video-section .container {
  max-width: 1200px;
}

.section-title {
  font-family: 'Cormorant Infant', serif;
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  max-width: 1320px;
  margin: 0 auto 24px;
  line-height: 1.4;
  letter-spacing: 4px;
}

.red-bold {
  color: #d3111a;
  font-weight: 700;
  font-family: 'Cormorant Infant', serif;
}

.section-sub {
  color: #000000;
  font-size: 1rem;
  margin-bottom: 48px;
  letter-spacing: 0.9px;
  font-family: 'Inter', sans-serif;
}

.video-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.video-leaf {
  flex-shrink: 0;
  width: clamp(24px, 4vw, 68px);
  height: auto;
  align-self: center;
  opacity: .85;
}

.video-wrapper {
  position: relative;
  flex: 1;
  min-width: 0;
  max-width: 1140px;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.22);
  border: 3px solid #ffe1a6;
}

.video-thumb-img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.play-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: transform .2s;
}

.play-btn:hover { transform: translate(-50%, -50%) scale(1.08); }

.play-icon-yt {
  font-size: 5rem;
  background: linear-gradient(to right, #eece66, #88763a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .95;
  display: block;
}

.video-embed {
  flex: 1;
  min-width: 0;
  max-width: 1140px;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.22);
  border: 3px solid #ffe1a6;
}

.video-embed--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.video-embed iframe { width: 100%; height: 100%; display: block; }

/* Fullscreen nativo (desktop) */
.video-embed:fullscreen,
.video-embed:-webkit-full-screen {
  max-width: none;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.video-embed:fullscreen iframe,
.video-embed:-webkit-full-screen iframe {
  max-width: min(100vw, 100vh * 16 / 9);
  max-height: min(100vh, 100vw * 9 / 16);
  width: min(100vw, 100vh * 16 / 9);
  height: min(100vh, 100vw * 9 / 16);
}

/* Fullscreen CSS (mobile — iPhone não suporta Fullscreen API) */
.video-embed--fs {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100dvh !important;
  max-width: none !important;
  aspect-ratio: unset !important;
  border-radius: 0 !important;
  border: none !important;
  z-index: 99999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  box-shadow: none;
  box-sizing: border-box;
}

.video-embed--fs iframe {
  width: min(100vw, 100dvh * 16 / 9) !important;
  height: min(100dvh, 100vw * 9 / 16) !important;
}

.video-fs-close {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 100000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.video-fs-close.visible {
  opacity: 1;
  pointer-events: auto;
}

.below-btn {
  color: #131314;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ===================================================
   DIVIDER
   =================================================== */
.divider-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 40px;
  background: var(--cream2);
}

.divider-line {
  flex: 1;
  max-width: 220px;
  height: 1.5px;
  background: #6b0f0f;
}

.divider-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #6b0f0f;
  flex-shrink: 0;
}

.cross {
  color: #6b0f0f;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1;
}

/* --- responsive --- */
@media (max-width: 720px) {
  .video-leaf { width: 28px; }
  .play-icon-yt { font-size: 3.5rem; }
}

@media (max-width: 480px) {
  .video-row { gap: 8px; }
  .video-leaf { display: none; }
  .video-wrapper,
  .video-embed { border-radius: 14px; }
  .section-title { font-size: 1.2rem; }
}
