/* ==========================================================================
   NEW LADING PAGE STYLES
   ========================================================================== */

/* ---- Hero Stats ---- */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-inverse);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(0, 229, 255, 0.2);
}

/* ---- Compare Section (Antes vs Depois) ---- */
.compare-section {
  padding: var(--space-3xl) 0;
  background-color: var(--bg);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.compare-after {
  border-color: rgba(72, 187, 120, 0.5);
  box-shadow: 0 10px 30px rgba(72, 187, 120, 0.1);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(72, 187, 120, 0.05) 100%);
}

.compare-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-inverse);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

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

.compare-list li {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

/* ---- Testimonials ---- */
.testimonials-section {
  padding: var(--space-3xl) 0;
  background-color: var(--bg-elevated);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--warning);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.testimonial-author strong {
  color: var(--text-inverse);
  font-size: 0.875rem;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ---- FAQ Section ---- */
.faq-section {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  background: var(--bg-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  text-align: left;
  color: var(--text-inverse);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  font-weight: 300;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--primary);
}

.faq-answer p {
  color: var(--text-secondary);
  padding: 0 var(--space-lg);
  margin: 0;
}

.faq-item.open .faq-answer {
  max-height: 500px; /* Arbitrary large height */
  padding: 0 0 var(--space-lg) 0;
}

.faq-item.open .faq-answer p {
  padding: 0 var(--space-lg);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* ---- CTA Section ---- */
.cta-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--primary-light) 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--text-inverse);
  margin-bottom: var(--space-md);
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ==========================================================================
   PRICING PAGE STYLES
   ========================================================================== */

.pricing-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
}

.pricing-section {
  padding: 0 0 var(--space-3xl) 0;
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 1100px;
  margin: 0 auto var(--space-3xl);
  align-items: center;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.pricing-featured {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(0, 229, 255, 0.03) 100%);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary-dark);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 229, 255, 0.3);
}

.pricing-card-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.pricing-plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-inverse);
  display: block;
  margin-bottom: var(--space-xs);
}

.pricing-plan-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.pricing-price {
  text-align: center;
  margin-bottom: var(--space-xl);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.pricing-amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-inverse);
  line-height: 1;
}

.pricing-cents {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.pricing-period {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: var(--space-sm);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl) 0;
}

.pricing-features li {
  padding: var(--space-sm) 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li.excluded {
  color: var(--text-muted);
  opacity: 0.5;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  text-align: center;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  background: var(--primary-light);
  color: var(--text-inverse);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.pricing-btn:hover {
  background: var(--bg-elevated);
  border-color: var(--text-muted);
}

.pricing-btn-featured {
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
}

.pricing-btn-featured:hover {
  background: var(--accent-light);
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
  border: none;
}

/* Garantias */
.pricing-guarantees {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  border-top: 1px solid var(--border);
  padding-top: var(--space-2xl);
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

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

.guarantee-item strong {
  color: var(--text-inverse);
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.guarantee-item p {
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */

@media (max-width: 900px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .pricing-featured {
    transform: none;
  }
  
  .pricing-featured:hover {
    transform: translateY(-5px);
  }
  
  .pricing-guarantees {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .pricing-guarantees {
    grid-template-columns: 1fr;
  }
}
