/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Oswald:wght@500;700&display=swap');

html {
  scroll-behavior: smooth;
}

:root {
  --bg-color: #0b0b0f;
  --card-bg: #16161a;
  --text-color: #e0e0e0;
  --heading-color: #ffffff;
  --primary-color: #8b5cf6;
  /* Violet */
  --primary-hover: #7c3aed;
  --secondary-color: #22c55e;
  /* Green for CTA and Success */
  --secondary-hover: #16a34a;
  --danger-color: #ef4444;
  --accent-glow: rgba(139, 92, 246, 0.4);

  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;

  --border-radius: 12px;
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 600px;
  /* Mobile-first focus, reading optimized */
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utilities */
.text-center {
  text-align: center;
}

.text-gradient {
  background: linear-gradient(to right, #a78bfa, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight {
  color: var(--secondary-color);
  font-weight: 700;
}

.hidden-mobile {
  display: block;
}

/* Sections */
section {
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}

.headline {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.subheadline {
  font-size: 1.25rem;
  color: #a1a1aa;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* Problem Section */
.problem-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(239, 68, 68, 0.2);
  margin-bottom: 2rem;
}

.pain-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.pain-icon {
  color: var(--danger-color);
  font-size: 1.5rem;
}

/* Solution Section */
.product-showcase {
  background: linear-gradient(180deg, var(--card-bg) 0%, var(--bg-color) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
  z-index: 0;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.product-title {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  gap: 1.5rem;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 3px solid var(--secondary-color);
}

.benefit-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

/* Modules */
.module-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.module {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.module:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.module-header {
  font-family: 'Oswald', sans-serif;
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* Price & Offer */
.price-box {
  background: linear-gradient(145deg, #1a1a20, #0f0f12);
  border: 2px solid var(--secondary-color);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  position: relative;
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.15);
}

.old-price {
  text-decoration: line-through;
  color: #71717a;
  font-size: 1.2rem;
}

.new-price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
  margin: 1rem 0;
  font-family: 'Oswald', sans-serif;
}

.price-installments {
  font-size: 1.1rem;
  color: #d1d5db;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  width: 100%;
  padding: 1.2rem 2rem;
  background-color: var(--secondary-color);
  color: #000;
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

.cta-btn:hover {
  background-color: var(--secondary-hover);
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* Bumps/Bonus */
.bonus-section {
  background: rgba(139, 92, 246, 0.05);
  border: 1px dashed var(--primary-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-top: 2rem;
}

/* Guarantee */
.guarantee-badge {
  max-width: 150px;
  margin: 0 auto 1rem;
  display: block;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  color: #52525b;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Media Queries for Desktop */
@media (min-width: 768px) {
  .container {
    max-width: 800px;
  }

  .headline {
    font-size: 3.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Video Container */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 350px;
  /* Mobile width for Shorts */
  margin: 2rem auto;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
  border: 2px solid rgba(139, 92, 246, 0.5);
  aspect-ratio: 9/16;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Social Proof / Testimonials */
.social-proof-section {
  padding: 2rem 0;
  background-color: transparent;
}

.testimonial-card {
  background: #ffffff;
  color: #1f2937;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary-color);
}

.testimonial-content {
  flex: 1;
}

.user-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: #000;
}

.user-comment {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #374151;
}

.meta-info {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.5rem;
}