/* Seção de Material Rico (Lead Magnet) */
.lead-magnet-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.lead-magnet-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  background-repeat: repeat;
  animation: float 20s infinite linear;
  z-index: 0;
}

@keyframes float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.lead-magnet-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lead-magnet-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.3s ease;
}

.lead-magnet-image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.lead-magnet-image img {
  width: 100%;
  height: auto;
  display: block;
}

.lead-magnet-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lead-magnet-image:hover::after {
  opacity: 1;
}

.lead-magnet-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #667eea;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s ease;
}

.lead-magnet-image:hover .lead-magnet-play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.lead-magnet-text {
  color: #fff;
}

.lead-magnet-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.lead-magnet-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  opacity: 0.95;
}

.lead-magnet-features {
  list-style: none;
  margin-bottom: 2rem;
  padding: 0;
}

.lead-magnet-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.lead-magnet-features li::before {
  content: '✓';
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-weight: bold;
  flex-shrink: 0;
}

.lead-magnet-cta {
  display: inline-block;
  background: #fff;
  color: #667eea;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lead-magnet-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: #f0f0f0;
}

.lead-magnet-cta i {
  margin-right: 0.5rem;
}

/* Responsividade */
@media (max-width: 1024px) {
  .lead-magnet-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .lead-magnet-image {
    transform: perspective(1000px) rotateY(0deg);
  }
  
  .lead-magnet-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .lead-magnet-section {
    padding: 3rem 0;
  }
  
  .lead-magnet-text h2 {
    font-size: 1.8rem;
  }
  
  .lead-magnet-text p {
    font-size: 1rem;
  }
  
  .lead-magnet-features li {
    font-size: 0.95rem;
  }
}

/* Seção de Vantagens */
.advantages-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #f8f9fa, #fff);
  position: relative;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.advantage-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.advantage-card:hover::before {
  transform: scaleX(1);
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #667eea;
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: #fff;
  transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.1) rotate(5deg);
}

.advantage-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 600;
}

.advantage-card p {
  color: #666;
  line-height: 1.8;
  font-size: 0.95rem;
}

.advantages-highlight {
  background: linear-gradient(135deg, #667eea15, #764ba215);
  border-radius: 1.5rem;
  padding: 3rem;
  margin-top: 3rem;
  text-align: center;
}

.advantages-highlight h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.advantages-highlight p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.advantages-highlight-cta {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.advantages-highlight-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
  .advantages-section {
    padding: 3rem 0;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .advantage-card {
    padding: 1.5rem;
  }
  
  .advantages-highlight {
    padding: 2rem;
  }
}
