/* ===================================
   CURSO SALES PAGE STYLES
   =================================== */

/* Reset e Base */
.curso-vendas-page {
  background: var(--bg-primary);
}

/* Header Sales */
.header-sales {
  position: sticky;
  top: 0;
  background: rgba(26, 29, 40, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header-sales .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-sales {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-sales .logo-image {
  width: 40px;
  height: 40px;
}

/* Hero Sales */
.hero-sales {
  padding: 80px 0 100px;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 140, 66, .08), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 140, 66, .05), transparent 50%);
}

.hero-sales .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge-sales {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 140, 66, 0.1);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  color: var(--accent-primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-sales h1 {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 15px;
}

.benefit-item i {
  color: var(--accent-primary);
  font-size: 20px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-accent);
  text-decoration: none;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(255, 140, 66, 0.4);
}

.btn-large {
  font-size: 20px;
  padding: 20px 50px;
}

.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(255, 140, 66, .25);
  }
  50% {
    box-shadow: 0 8px 40px rgba(255, 140, 66, .5);
  }
}

.hero-guarantee {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.hero-guarantee i {
  color: var(--accent-primary);
}

.hero-sales-image {
  position: relative;
}

.hero-sales-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-stats {
  position: absolute;
  bottom: -30px;
  left: 20px;
  right: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  justify-content: space-around;
  box-shadow: var(--shadow-lg);
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 4px;
}

.stat-item span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Section Header Sales */
.section-header-sales {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-sales h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
}

/* Resultado Section */
.resultado-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.resultado-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.resultado-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition-normal);
}

.resultado-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
}

.resultado-numero {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 12px;
  line-height: 1;
}

.resultado-desc {
  color: var(--text-secondary);
  font-size: 16px;
}

.resultado-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.resultado-text p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Oferta Section */
.oferta-section {
  padding: 100px 0;
  text-align: center;
}

.oferta-label {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(255, 140, 66, 0.1);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  color: var(--accent-primary);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.oferta-content {
  max-width: 800px;
  margin: 0 auto;
}

.oferta-content h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 24px;
}

.oferta-content > p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 48px;
}

.oferta-pricing {
  background: var(--bg-card);
  border: 2px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-bottom: 32px;
}

.price-old {
  margin-bottom: 16px;
}

.price-old span {
  font-size: 24px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-new {
  margin-bottom: 24px;
}

.price-label {
  display: block;
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.price-value {
  font-size: 72px;
  font-weight: 900;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.price-installment {
  font-size: 18px;
  color: var(--text-secondary);
}

.oferta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
}

.feature-item i {
  font-size: 24px;
  color: var(--accent-primary);
}

/* Depoimentos Section */
.depoimentos-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.depoimento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-normal);
}

.depoimento-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
}

.depoimento-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.depoimento-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-accent);
}

.depoimento-header strong {
  display: block;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.rating {
  display: flex;
  gap: 4px;
}

.rating i {
  color: #ffc107;
  font-size: 14px;
}

.depoimento-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
}

/* Conteúdo Section */
.conteudo-section {
  padding: 100px 0;
}

.projetos-exemplos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.projeto-exemplo {
  text-align: center;
}

.projeto-exemplo img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  margin-bottom: 16px;
  background: var(--bg-primary);
}

.projeto-exemplo h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.projeto-exemplo p {
  color: var(--text-secondary);
  font-size: 14px;
}

.modulos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.modulo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-normal);
}

.modulo-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md);
}

.modulo-header {
  margin-bottom: 20px;
}

.modulo-numero {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 140, 66, 0.1);
  border: 1px solid var(--border-accent);
  border-radius: 6px;
  color: var(--accent-primary);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.modulo-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.modulo-aulas {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modulo-aulas li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modulo-aulas li:last-child {
  border-bottom: none;
}

.modulo-aulas li i {
  color: var(--accent-primary);
  font-size: 16px;
}

.cta-center {
  text-align: center;
}

/* Garantia Section */
.garantia-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.garantia-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.garantia-badge {
  width: 250px;
  flex-shrink: 0;
}

.garantia-text h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
}

.garantia-text p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Professor Section */
.professor-section {
  padding: 100px 0;
}

.professor-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.professor-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.professor-bio h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.professor-title {
  font-size: 18px;
  color: var(--accent-primary);
  font-weight: 600;
  margin-bottom: 24px;
}

.professor-bio p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.professor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.professor-stats .stat {
  text-align: center;
}

.professor-stats strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 8px;
}

.professor-stats span {
  font-size: 14px;
  color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--border-accent);
}

.faq-item.active {
  border-color: var(--accent-primary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.faq-question i {
  color: var(--accent-primary);
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 32px 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* CTA Final Section */
.cta-final-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.cta-final-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 48px;
}

.cta-final-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
}

.cta-feature i {
  color: var(--accent-primary);
  font-size: 24px;
}

.cta-final-pricing {
  margin-bottom: 32px;
}

.price-strike {
  font-size: 28px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.price-current {
  font-size: 64px;
  font-weight: 900;
  color: var(--accent-primary);
  margin-bottom: 8px;
}

.price-installments {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.cta-final-warning {
  margin-top: 24px;
  font-size: 15px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-final-warning i {
  color: #ffc107;
}

/* Footer Sales */
.footer-sales {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  text-align: center;
}

.footer-sales p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 8px 0;
}

.footer-sales a {
  color: var(--accent-primary);
  text-decoration: none;
}

.footer-sales a:hover {
  text-decoration: underline;
}

/* Highlight */
.highlight {
  color: var(--accent-primary);
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-sales .container {
    grid-template-columns: 1fr;
  }
  
  .resultado-content,
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }
  
  .modulos-grid {
    grid-template-columns: 1fr;
  }
  
  .professor-content {
    grid-template-columns: 1fr;
  }
  
  .cta-final-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-benefits {
    grid-template-columns: 1fr;
  }
  
  .projetos-exemplos {
    grid-template-columns: 1fr;
  }
  
  .oferta-features {
    flex-direction: column;
    gap: 16px;
  }
  
  .garantia-content {
    flex-direction: column;
  }
  
  .price-value {
    font-size: 48px;
  }
}