:root {
  --primary: #622bd9; /* Roxo principal */
  --primary-dark: #4b21a8; /* Roxo mais escuro (derivado do principal) */
  --secondary: #f2ea79; /* Amarelo como cor secundária */
  --accent: #f079f2; /* Rosa como cor de destaque */
  --danger: #f27979; /* Vermelho para erros/destaques negativos */
  --dark: #0d0d0d; /* Preto quase puro para textos */
  --light: #f8fafc; /* Branco suave para fundos */
  --gray: #64748b; /* Cinza para textos secundários */
  --success: #10b981; /* Verde para sucesso (mantido) */
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 50px;
}

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

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--light);
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container nav img {
  padding: 8px 0;
  width: 110px;
}

/* Header */
header {
  background-color: var(--light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 1.1rem;
  font-size: 1em;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(98, 43, 217, 0.2);
}

.secondary-button {
  background-color: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.secondary-button:hover {
  background-color: var(--primary);
  color: white;
}

/* Hero Section */
.hero {
  padding: 15rem 0 5rem;
  background: linear-gradient(
    135deg,
    #f5e6ff 0%,
    #e8d1ff 100%
  ); /* Gradiente suave com tons roxos */
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero h1 {
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 600px;
}

.button-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.badge {
  display: inline-block;
  background-color: var(--accent); /* Usando o rosa como cor de badge */
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: white;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.section-title span {
  color: var(--primary);
}

.section-text span {
  color: var(--primary);
}

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

.feature-card {
  background-color: var(--light);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon img {
  width: 30px;
  height: 30px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Results Section */
.results {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    #f5f0ff 0%,
    #e8e1ff 100%
  ); /* Gradiente suave com tons roxos */
}

.results-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.results-image {
  flex: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.results-image img {
  width: 100%;
  height: auto;
  display: block;
}

.results-text {
  flex: 1;
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background-color: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background-color: var(--light);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent); /* Rosa para o badge de popular */
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom-left-radius: 0.5rem;
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1.5rem 0;
}

.price span {
  font-size: 1rem;
  color: var(--gray);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li:before {
  content: "✓";
  color: var(--success);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    #fff9f0 0%,
    #ffeed1 100%
  ); /* Gradiente suave com tons amarelados */
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text:before {
  content: '"';
  font-size: 4rem;
  color: var(--secondary); /* Amarelo para as aspas */
  opacity: 0.2;
  position: absolute;
  top: -1.5rem;
  left: -1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.author-info p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background-color: var(--primary);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

.cta .cta-button {
  background-color: var(--secondary); /* Amarelo para o botão CTA */
  color: var(--dark);
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.cta .cta-button:hover {
  background-color: #e0d971;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: white;
}

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

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1.5rem;
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  color: var(--gray);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-about p {
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--accent); /* Rosa para hover dos ícones sociais */
  transform: translateY(-3px);
}

.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary); /* Amarelo para hover dos links */
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  opacity: 0.8;

  a {
    text-decoration: none;
    color: var(--light);
  }
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content,
  .results-content {
    flex-direction: column;
  }

  .hero-text,
  .results-text {
    text-align: center;
  }

  .hero p {
    margin: 0 auto 2rem;
  }

  .button-group {
    justify-content: center;
  }

  .pricing-card.popular {
    transform: none;
  }
  .results-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .button-group {
    flex-direction: column;
    gap: 1rem;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .results-stats {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Process Steps */
.process-steps {
  text-align: center;
  margin: 2rem auto 0;
  padding: 2rem;
  border-radius: 0.5rem;
  max-width: 800px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  background-color: white;
}

.process-steps h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-weight: 600;
}

.process-steps ol {
  text-align: left;
  display: inline-block;
  margin: 0 auto;
  max-width: 600px;
  counter-reset: step-counter;
  padding-left: 1.5rem;
}

.process-steps li {
  margin-bottom: 1rem;
  padding-left: 1.8rem;
  position: relative;
  line-height: 1.5;
  counter-increment: step-counter;
  list-style: none;
}

.process-steps li:before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--accent); /* Rosa para os números dos passos */
  color: white;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
}

.process-steps li:last-child {
  margin-bottom: 0;
}
