* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(135deg, #1f002e 0%, #2d1b3d 50%, #1f002e 100%);
  color: #ffffff;
  overflow-x: hidden;
  position: relative;
}

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

/* Particles Background */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(247, 37, 133, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(31, 0, 46, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(247, 37, 133, 0.2);
}

.header .container {
  display: flex;
  justify-content: flex-start; /* Desktop: lado esquerdo */
  align-items: center;
}

/* Mobile: centralizar */
@media (max-width: 768px) {
  .header .container {
    justify-content: center; /* Mobile: centralizado */
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: #f72585;
}

/* Hero Section */
.hero {
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(45deg, #f72585, #ff4ecb);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(45deg, #f72585, #ff4ecb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: #ff4ecb;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-description {
  font-size: 18px;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Video Section - CORRIGIDO */
.video-section {
  padding: 60px 0;
  position: relative;
  z-index: 10;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.video-placeholder {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16 / 9; /* Proporção correta para vídeos */
  background: #000;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
}

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

/* Countdown */
.countdown-container {
  text-align: center;
  margin-top: 40px;
}

.countdown-text {
  font-size: 18px;
  margin-bottom: 20px;
  color: #cccccc;
}

.highlight {
  color: #f72585;
  font-weight: 600;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.time-unit {
  background: rgba(247, 37, 133, 0.1);
  border: 2px solid #f72585;
  border-radius: 10px;
  padding: 20px;
  min-width: 100px;
  text-align: center;
}

.time-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #f72585;
  line-height: 1;
}

.time-label {
  font-size: 14px;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Lead Section */
.lead-section {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.problem-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(247, 37, 133, 0.2);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.problem-item:hover {
  transform: translateY(-5px);
  border-color: #f72585;
  box-shadow: 0 15px 40px rgba(247, 37, 133, 0.2);
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.problem-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
}

/* Story Section */
.story-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  z-index: 10;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #cccccc;
}

.highlight-text {
  background: linear-gradient(45deg, #f72585, #ff4ecb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 20px !important;
}

/* Authority Section */
.authority-section {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

.authority-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.expert-photo {
  width: 100%;
  max-width: 300px;
  border-radius: 15px;
  border: 3px solid #f72585;
}

.authority-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #f72585;
}

.authority-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #cccccc;
}

.credentials {
  margin-top: 30px;
}

.credential-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  color: #cccccc;
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  z-index: 10;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(247, 37, 133, 0.2);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #f72585;
  box-shadow: 0 15px 40px rgba(247, 37, 133, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #f72585;
}

.testimonial-info h4 {
  color: #f72585;
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-info span {
  color: #cccccc;
  font-size: 14px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 15px;
}

.stars {
  color: #ffd700;
  font-size: 18px;
}

/* Offer Section */
.offer-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(247, 37, 133, 0.1), rgba(255, 78, 203, 0.1));
  position: relative;
  z-index: 10;
}

.offer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.offer-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #f72585;
}

.price-container {
  position: relative;
  margin-bottom: 40px;
}

.old-price {
  font-size: 1.5rem;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 10px;
}

.current-price {
  font-size: 3rem;
  font-weight: 800;
  color: #f72585;
  margin-bottom: 20px;
}

.discount-badge {
  display: inline-block;
  background: linear-gradient(45deg, #f72585, #ff4ecb);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 18px;
  animation: pulse 2s infinite;
}

.offer-includes {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
}

.offer-includes h4 {
  font-size: 1.5rem;
  color: #f72585;
  margin-bottom: 20px;
  text-align: center;
}

.includes-grid {
  display: grid;
  gap: 15px;
}

.include-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
}

.check {
  color: #00ff88;
  font-weight: bold;
  font-size: 18px;
}

.main-cta-button {
  background: linear-gradient(45deg, #f72585, #ff4ecb);
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(247, 37, 133, 0.4);
}

.payment-info {
  color: #cccccc;
  font-size: 14px;
}

.payment-info p {
  margin-bottom: 5px;
}

/* Product Showcase */
.product-showcase {
  text-align: center;
  margin-bottom: 40px;
}

.product-image {
  max-width: 400px; /* Aumentado de 300px para 400px */
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(247, 37, 133, 0.3));
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .product-image {
    max-width: 320px; /* Aumentado de 250px para 320px */
  }
}

@media (max-width: 480px) {
  .product-image {
    max-width: 280px; /* Aumentado de 200px para 280px */
  }
}

/* Guarantee */
.guarantee-section {
  padding: 60px 0;
  position: relative;
  z-index: 10;
}

.guarantee-content {
  max-width: 600px;
  margin: 0 auto;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(0, 255, 136, 0.1);
  border: 2px solid #00ff88;
  border-radius: 15px;
  padding: 30px;
}

.guarantee-icon {
  font-size: 3rem;
}

.guarantee-text h4 {
  color: #00ff88;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.guarantee-text p {
  color: #cccccc;
  line-height: 1.6;
}

/* FAQ */
.faq-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  z-index: 10;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(247, 37, 133, 0.2);
  margin-bottom: 20px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #f72585;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: 20px;
  color: #cccccc;
  line-height: 1.6;
}

/* Final CTA */
.final-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(247, 37, 133, 0.2), rgba(255, 78, 203, 0.2));
  position: relative;
  z-index: 10;
}

.final-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.final-cta-content h3 {
  font-size: 2rem;
  color: #f72585;
  margin-bottom: 30px;
}

.countdown-final {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.final-cta-button {
  background: linear-gradient(45deg, #f72585, #ff4ecb);
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.final-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(247, 37, 133, 0.4);
}

.urgency-text {
  color: #ff4ecb;
  font-weight: 600;
  font-size: 16px;
}

/* Footer */
.footer {
  padding: 40px 0;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(247, 37, 133, 0.2);
  position: relative;
  z-index: 10;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: #f72585;
  margin-bottom: 20px;
}

.footer-content p {
  color: #cccccc;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f72585;
}

/* Responsive - Video Section */
@media (max-width: 1024px) {
  .video-container {
    max-width: 95%;
  }
}

@media (max-width: 768px) {
  .header .container {
    justify-content: center;
  }

  .authority-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .countdown {
    gap: 15px;
  }

  .time-unit {
    min-width: 80px;
    padding: 15px;
  }

  .time-number {
    font-size: 2rem;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-badge {
    flex-direction: column;
    text-align: center;
  }

  .countdown-final {
    gap: 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .video-placeholder {
    border-radius: 10px;
  }

  .play-button svg {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 100px 0 40px;
  }

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

  .hero-subtitle {
    font-size: 1.2rem;
  }

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

  .offer-title {
    font-size: 1.8rem;
  }

  .current-price {
    font-size: 2.5rem;
  }

  .main-cta-button,
  .final-cta-button {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .video-placeholder {
    border-radius: 8px;
  }

  .play-button svg {
    width: 40px;
    height: 40px;
  }
}
