/* ===== RESET E VARIÁVEIS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #ffbb00;
  --color-green: #00c851;
  --color-green-hover: #00a043;
  --color-yellow: #ffbb00;
  --color-yellow-hover: #e0a800;
  --color-dark: #0a0a0a;
  --color-gray: #1a1a1a;
  --color-light-gray: #2a2a2a;
  --color-text: #ffffff;
  --color-text-secondary: #dddddd;
  --gradient-dark: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 100%);
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--color-dark);
  color: var(--color-text);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}



/* ===== HEADER ===== */
.header {
  position: relative;
  z-index: 100;
  padding: 40px 0;
  background-image: url('https://page.gensparksite.com/v1/base64_upload/88229fdab26cc295ae08893f169f50c2');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.header .container {
  position: relative;
  z-index: 2;
}

.logo {
  text-align: center;
}

.logo img {
  max-width: 250px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(255, 187, 0, 0.5));
  position: relative;
  z-index: 2;
}

/* Responsividade do Header */
@media (max-width: 768px) {
  .header {
    padding: 30px 0;
    background-size: cover;
    background-position: center center;
  }
  
  .logo img {
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 25px 0;
  }
  
  .logo img {
    max-width: 180px;
  }
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  z-index: 10;
  padding: 80px 0 60px;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-yellow);
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(255, 187, 0, 0.5);
  line-height: 1.2;
}

.hero-description {
  font-size: 1.3rem;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-green {
  background-color: var(--color-green);
  color: #fff;
}

.btn-green:hover {
  background-color: var(--color-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 200, 81, 0.4);
}

.btn-yellow {
  background-color: var(--color-yellow);
  color: #000;
}

.btn-yellow:hover {
  background-color: var(--color-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 187, 0, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-yellow);
  color: var(--color-yellow);
}

.btn-outline:hover {
  background-color: var(--color-yellow);
  color: #000;
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

.btn-xlarge {
  padding: 22px 50px;
  font-size: 1.3rem;
}

.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(0, 200, 81, 0.3);
  }
  50% {
    box-shadow: 0 4px 30px rgba(0, 200, 81, 0.6);
  }
}

/* ===== VÍDEO PRINCIPAL ===== */
.main-video-section {
  position: relative;
  z-index: 10;
  padding: 40px 0;
}

.video-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.simple-video-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 50px rgba(255, 187, 0, 0.3);
}

.simple-video-container video {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== BOTÃO DE SOM NOS VÍDEOS ===== */
.video-with-sound {
  position: relative;
}

.sound-toggle-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid var(--color-yellow);
  border-radius: 50%;
  color: var(--color-yellow);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
  z-index: 10;
  backdrop-filter: blur(5px);
}

.video-with-sound:hover .sound-toggle-btn {
  opacity: 1;
  transform: scale(1);
}

.sound-toggle-btn:hover {
  background: rgba(255, 187, 0, 0.9);
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(255, 187, 0, 0.5);
}

.sound-toggle-btn:active {
  transform: scale(0.95);
}

.sound-toggle-btn.unmuted {
  background: rgba(255, 187, 0, 0.8);
  color: #000;
  border-color: var(--color-yellow);
}

.sound-toggle-btn i {
  pointer-events: none;
}

/* Mobile - Botão sempre visível */
@media (max-width: 768px) {
  .sound-toggle-btn {
    opacity: 0.8;
    transform: scale(1);
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    bottom: 15px;
    right: 15px;
  }
  
  .video-with-sound:hover .sound-toggle-btn {
    opacity: 1;
  }
}

/* Animação de pulso ao ativar som */
@keyframes soundPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* ===== CONTENT SECTION ===== */
.content-section {
  position: relative;
  z-index: 10;
  padding: 60px 0;
}

.content-box {
  background: var(--gradient-dark);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 187, 0, 0.2);
}

.content-box h2 {
  font-size: 2.2rem;
  color: var(--color-yellow);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.lead {
  font-size: 1.2rem;
  text-align: center;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.features-grid {
  margin: 40px 0;
}

.features-grid h3 {
  font-size: 1.8rem;
  color: var(--color-yellow);
  margin-bottom: 25px;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.features-list i {
  color: var(--color-green);
  font-size: 1.3rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.why-different {
  margin: 40px 0;
  padding: 30px;
  background: rgba(255, 187, 0, 0.1);
  border-radius: 12px;
  border-left: 4px solid var(--color-yellow);
}

.why-different h3 {
  font-size: 1.8rem;
  color: var(--color-yellow);
  margin-bottom: 20px;
}

.pricing-box {
  margin: 50px 0;
  padding: 40px;
  background: linear-gradient(135deg, rgba(0, 200, 81, 0.1) 0%, rgba(0, 150, 60, 0.1) 100%);
  border-radius: 16px;
  text-align: center;
  border: 2px solid var(--color-green);
}

.pricing-box h3 {
  font-size: 2rem;
  color: var(--color-green);
  margin-bottom: 25px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 25px 0 35px;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-features li {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.remember-box {
  margin: 40px 0;
  padding: 30px;
  background: rgba(255, 187, 0, 0.1);
  border-radius: 12px;
  text-align: center;
}

.remember-box h3 {
  font-size: 1.8rem;
  color: var(--color-yellow);
  margin-bottom: 20px;
}

.highlight {
  font-weight: 600;
  color: var(--color-yellow);
  font-size: 1.15rem;
}

/* ===== PREVIEW SECTION (VÍDEO VERTICAL) ===== */
.preview-section {
  position: relative;
  z-index: 10;
  padding: 80px 0;
  background: var(--gradient-dark);
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-yellow);
  text-align: center;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 50px;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.preview-video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(255, 187, 0, 0.3);
  background: #000;
  width: 100%;
  min-height: 500px;
}

.preview-video video {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  object-fit: cover;
}

.preview-content {
  padding: 30px;
}

.preview-content h3 {
  font-size: 2rem;
  color: var(--color-yellow);
  margin-bottom: 20px;
}

.preview-content p {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: 25px;
  line-height: 1.7;
}

.preview-benefits {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.preview-benefits li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-benefits i {
  color: var(--color-yellow);
  font-size: 1.2rem;
}

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  z-index: 10;
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(135deg, rgba(0, 200, 81, 0.15) 0%, rgba(0, 150, 60, 0.15) 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  border: 2px solid var(--color-green);
  box-shadow: 0 10px 50px rgba(0, 200, 81, 0.2);
}

.cta-box h2 {
  font-size: 2.5rem;
  color: var(--color-yellow);
  margin-bottom: 20px;
}

.cta-box p {
  font-size: 1.3rem;
  color: var(--color-text-secondary);
  margin-bottom: 35px;
}

.guarantee {
  margin-top: 25px;
  font-size: 1rem;
  color: var(--color-text-secondary);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 10;
  padding: 40px 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 187, 0, 0.2);
}

.footer p {
  margin: 5px 0;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 968px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .content-box {
    padding: 35px 25px;
  }

  .preview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .preview-video video {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .logo img {
    max-width: 200px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .content-box h2 {
    font-size: 1.7rem;
  }

  .lead {
    font-size: 1rem;
  }

  .features-grid h3,
  .why-different h3,
  .remember-box h3 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .preview-content {
    padding: 20px 0;
  }

  .cta-box {
    padding: 40px 25px;
  }

  .cta-box h2 {
    font-size: 2rem;
  }

  .cta-box p {
    font-size: 1.1rem;
  }

  .controls-row {
    gap: 10px;
  }

  .time-display {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .btn-large {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .btn-xlarge {
    padding: 16px 28px;
    font-size: 1.1rem;
  }

  .content-box {
    padding: 25px 20px;
  }

  .pricing-box {
    padding: 30px 20px;
  }

  .overlay-content h3 {
    font-size: 1.3rem;
  }

  .overlay-content {
    padding: 20px;
  }
}
