/* Landing Page Mega Hair - CSS Otimizado para Conversão */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  font-size: 16px;
}

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

/* Urgency Banner */
.urgency-banner {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%);
  color: white;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

.banner-content i:first-child {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.close-banner {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
  margin-left: 20px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.close-banner:hover {
  opacity: 1;
}

/* Header */
.header {
  background: white;
  padding: 12px 0;
  position: sticky;
  top: 52px;
  z-index: 998;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h2 {
  color: #6B5344;
  font-size: 1.4rem;
  font-weight: 700;
}

.cta-header {
  background: #FFD700;
  color: #6B5344;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.cta-header:hover {
  background: #D4AF37;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,215,0,0.3);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #6B5344 0%, #8B7355 100%);
  color: white;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="p" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="1200" height="600" fill="url(%23p)"/></svg>');
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 10px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-title .highlight {
  color: #FFD700;
  display: block;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.95);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 40px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}

.benefit-item i {
  color: #FFD700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cta-primary {
  background: #FFD700;
  color: #6B5344;
  border: none;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0 20px;
  box-shadow: 0 10px 30px rgba(255,215,0,0.3);
  animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.cta-primary:hover {
  background: #D4AF37;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,215,0,0.4);
}

.guarantee-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-top: 15px;
}

.guarantee-text i {
  color: #FFD700;
  margin-right: 5px;
}

/* Social Proof */
.social-proof {
  background: white;
  padding: 50px 0;
  border-bottom: 1px solid #E0E0E0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.proof-item {
  padding: 20px;
}

.proof-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #6B5344;
  margin-bottom: 10px;
}

.proof-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
}

/* Problem/Solution */
.problem-solution {
  padding: 60px 0;
  background: #F5E6D3;
}

.problem-solution h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #6B5344;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}

.comparison-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.comparison-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: #FF6B6B;
}

.comparison-box.solution h3 {
  color: #4CAF50;
}

.comparison-box ul {
  list-style: none;
}

.comparison-box li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: #666;
}

.arrow {
  text-align: center;
  font-size: 2rem;
  color: #6B5344;
}

/* Features */
.features {
  padding: 60px 0;
  background: white;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #6B5344;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #F5E6D3;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #6B5344;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: #6B5344;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #FFD700;
}

.feature-card h3 {
  color: #6B5344;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
  padding: 60px 0;
  background: white;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #6B5344;
}

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

.testimonial-card {
  background: #F5E6D3;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}

.stars i {
  color: #FFD700;
  font-size: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: #333;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 0.9rem;
  color: #666;
}

.testimonial-author strong {
  color: #6B5344;
}

/* Pricing */
.pricing {
  padding: 60px 0;
  background: #F5E6D3;
}

.pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #6B5344;
}

.pricing-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-card.featured {
  border-color: #6B5344;
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #6B5344;
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge.featured-badge {
  background: #FFD700;
  color: #6B5344;
}

.pricing-card h3 {
  color: #6B5344;
  margin: 20px 0 15px;
  font-size: 1.3rem;
}

.price {
  margin: 20px 0;
  position: relative;
}

.original {
  color: #999;
  text-decoration: line-through;
  font-size: 0.95rem;
  margin-right: 10px;
}

.current {
  font-size: 2.5rem;
  font-weight: 800;
  color: #6B5344;
}

.discount {
  position: absolute;
  top: -10px;
  right: 0;
  background: #FF6B6B;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 700;
}

.features-list {
  list-style: none;
  margin: 25px 0;
  text-align: left;
}

.features-list li {
  padding: 10px 0;
  color: #666;
  font-size: 0.9rem;
  border-bottom: 1px solid #E0E0E0;
}

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

.features-list i {
  color: #4CAF50;
  margin-right: 10px;
  font-weight: 700;
}

.btn-pricing {
  background: #6B5344;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 20px;
}

.btn-pricing:hover {
  background: #8B7355;
  transform: translateY(-2px);
}

.btn-pricing.featured-btn {
  background: #FFD700;
  color: #6B5344;
}

.btn-pricing.featured-btn:hover {
  background: #D4AF37;
}

/* FAQ */
.faq {
  padding: 60px 0;
  background: white;
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #6B5344;
}

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

.faq-item {
  background: #F5E6D3;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  background: white;
  border-left: 4px solid #6B5344;
}

.faq-question:hover {
  background: #F5E6D3;
}

.faq-question h4 {
  margin: 0;
  color: #6B5344;
  font-size: 1rem;
  text-align: left;
}

.faq-question i {
  color: #6B5344;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

.faq-answer p {
  padding: 0 20px 20px;
  color: #666;
  margin: 0;
}

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

/* Form Section */
.form-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #6B5344 0%, #8B7355 100%);
  color: white;
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.form-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.form-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 5px;
  font-size: 1rem;
  background: rgba(255,255,255,0.1);
  color: white;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input::placeholder {
  color: rgba(255,255,255,0.7);
}

.form-group select {
  color: rgba(255,255,255,0.7);
}

.form-group select option {
  background: #333;
  color: white;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #FFD700;
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.2);
}

.btn-submit {
  background: #FFD700;
  color: #6B5344;
  border: none;
  padding: 16px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #D4AF37;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,215,0,0.3);
}

.form-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.form-guarantee i {
  color: #FFD700;
}

.form-benefits {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.form-benefits h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.form-benefits ul {
  list-style: none;
}

.form-benefits li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.form-benefits i {
  color: #FFD700;
  font-size: 1.2rem;
}

/* Final CTA */
.final-cta {
  background: #FFD700;
  color: #6B5344;
  padding: 50px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.final-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #6B5344;
}

.btn-final {
  background: #6B5344;
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-final:hover {
  background: #8B7355;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 30px 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer p {
  margin: 5px 0;
  color: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

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

  .hero-benefits {
    grid-template-columns: 1fr;
  }

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

  .arrow {
    transform: rotate(90deg);
    margin: 20px 0;
  }

  .form-wrapper {
    grid-template-columns: 1fr;
  }

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

  .pricing-card.featured {
    transform: scale(1);
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0 40px;
  }

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

  .hero-title .highlight {
    display: inline;
  }

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

  .cta-primary {
    padding: 14px 30px;
    font-size: 1rem;
  }

  h2 {
    font-size: 1.8rem !important;
  }

  .banner-content {
    font-size: 0.8rem;
  }

  .banner-content i:last-child {
    margin-left: 10px;
  }

  .cta-header {
    padding: 8px 15px;
    font-size: 0.85rem;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .proof-item {
    padding: 10px;
  }

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

  .proof-label {
    font-size: 0.85rem;
  }
}