/* ========================================
   Lucre com Resumo de Filmes — Landing Page
   Yellow Accent Theme on Black
   ======================================== */

:root {
  --accent: #FFD600;
  --accent-light: #FFE740;
  --accent-dark: #E6C200;
  --accent-glow: rgba(255, 214, 0, 0.35);
  --accent-glow-soft: rgba(255, 214, 0, 0.12);
  --bg: #000000;
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Background Glows */
.glow {
  position: fixed;
  width: 400px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.glow-left {
  top: -100px;
  left: -200px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
}

.glow-right {
  top: 100px;
  right: -200px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
}

/* Container */
.container {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  padding: 32px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100vh;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  background: rgba(255, 214, 0, 0.06);
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease-out;
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
}

.badge-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent);
  text-transform: uppercase;
}

/* Headline */
.headline {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 440px;
  animation: fadeInUp 0.7s ease-out 0.1s both;
}

.highlight {
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
}

/* Video Wrapper */
.video-wrapper {
  width: 100%;
  max-width: 380px;
  margin-bottom: 28px;
  animation: fadeInUp 0.7s ease-out 0.2s both;
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 16px;
  border: 2px solid var(--accent);
  overflow: hidden;
  box-shadow:
    0 0 30px var(--accent-glow),
    0 0 80px var(--accent-glow-soft);
  background: #0a0a0a;
}

#vslVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  transition: opacity 0.3s ease;
}

.video-overlay:hover .play-button {
  transform: scale(1.1);
  box-shadow: 0 0 40px var(--accent-glow);
}

.play-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 20px var(--accent-glow);
  margin-bottom: 16px;
}

.play-button svg {
  margin-left: 3px;
}

.video-cta-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.video-player {
  width: 100%;
  height: 100%;
}

.video-player > div {
  width: 100%;
  height: 100%;
}

/* OBS Box */
.obs-box {
  padding: 14px 24px;
  border: 1.5px solid var(--accent);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
  background: rgba(255, 214, 0, 0.04);
  animation: fadeInUp 0.7s ease-out 0.3s both;
}

.obs-label {
  color: var(--accent);
  font-weight: 800;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  padding: 18px 32px;
  background: var(--accent);
  color: #000;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow:
    0 4px 20px var(--accent-glow),
    0 0 40px var(--accent-glow-soft);
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease-out 0.4s both;
}

.cta-button:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow:
    0 6px 30px var(--accent-glow),
    0 0 60px var(--accent-glow-soft);
}

.cta-button:active {
  transform: translateY(0);
}

/* Guarantee */
.guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  animation: fadeInUp 0.7s ease-out 0.5s both;
}

.guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-text {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

/* Footer */
.footer {
  font-size: 12px;
  color: #555;
  margin-top: auto;
  padding-top: 24px;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pulse animation on CTA */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow:
      0 4px 20px var(--accent-glow),
      0 0 40px var(--accent-glow-soft);
  }
  50% {
    box-shadow:
      0 4px 30px rgba(255, 214, 0, 0.5),
      0 0 60px rgba(255, 214, 0, 0.2);
  }
}

.cta-button {
  animation: fadeInUp 0.7s ease-out 0.4s both, pulse-glow 2.5s ease-in-out 1.5s infinite;
}

/* Responsive */
@media (min-width: 768px) {
  .container {
    padding-top: 60px;
    max-width: 520px;
  }

  .headline {
    font-size: 32px;
  }

  .video-wrapper {
    max-width: 420px;
  }

  .cta-button {
    max-width: 420px;
    font-size: 18px;
    padding: 20px 36px;
  }
}

@media (max-width: 380px) {
  .headline {
    font-size: 22px;
  }

  .badge-text {
    font-size: 11px;
  }

  .cta-button {
    font-size: 14px;
    padding: 16px 24px;
  }
}
