/* Base */
:root {
  /* Cores principais */
  --color-primary: #6c63ff; /* Roxo Primário */
  --color-secondary: #5747d1;
  --color-accent: #4f8cf5; /* Azul Claro */
  --color-success: #28a745; /* Verde de Destaque */
  --color-white: #ffffff;
  --color-light-gray: #f9f9f9;
  --color-gray-200: #cccccc;
  --color-gray-300: #666666;
  --color-dark: #333333;
  --color-error: #dc3545;
  --color-warning: #ffc107;

  /* Dimensões */
  --radius-default: 8px;
  --box-shadow-light: 0 2px 6px rgba(0, 0, 0, 0.2);
  --max-width: 1024px;
}

/* Reset e estilos gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Cabeçalho */
header {
  background-color: var(--color-white);
  box-shadow: var(--box-shadow-light);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
}

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

.logo img {
  height: 40px;
}

/* Seções */
.section {
  padding: 60px 0;
}

#hero {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  color: var(--color-white);
  padding: 80px 0;
}

.hero-content {
  max-width: 600px;
}

.hero-image {
  margin-top: 30px;
  text-align: center;
}

.badge {
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 20px;
}

h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

h2 {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}

h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Botões */
.cta-primary {
  background-color: var(--color-success);
  color: var(--color-white);
  border: none;
  padding: 15px 30px;
  border-radius: var(--radius-default);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
  text-align: center;
  display: inline-block;
  min-height: 50px;
}

.cta-primary:hover {
  background-color: #218838;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(40, 167, 69, 0.4);
}

.cta-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 10px 20px;
  border-radius: var(--radius-default);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}

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

.cta-container {
  margin-top: 30px;
}

/* Contador */
.counter-text {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
}

.counter-text strong {
  color: var(--color-warning);
}

.blink {
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

.highlight {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 24px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background-color: var(--color-white);
  border-radius: var(--radius-default);
  box-shadow: var(--box-shadow-light);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.icon {
  font-size: 40px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

/* Target */
.target-content {
  display: flex;
  flex-direction: column;
}

.target-image {
  margin-bottom: 30px;
  text-align: center;
}

.target-list ul {
  list-style: none;
}

.target-list li {
  margin-bottom: 15px;
  font-size: 18px;
}

.target-list i {
  color: var(--color-success);
  margin-right: 10px;
}

/* Beta Section */
.beta-section {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-success) 100%
  );
  color: var(--color-white);
}

.beta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.beta-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-default);
  padding: 20px;
  display: flex;
  align-items: flex-start;
}

.beta-check {
  color: var(--color-success);
  font-size: 24px;
  margin-right: 15px;
  background-color: var(--color-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.beta-counter {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-default);
  padding: 20px;
  margin-top: 30px;
}

.beta-counter p {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.testimonial-card {
  background-color: var(--color-white);
  border-radius: var(--radius-default);
  box-shadow: var(--box-shadow-light);
  padding: 25px;
  display: flex;
  align-items: flex-start;
}

.testimonial-avatar {
  margin-right: 15px;
}

.testimonial-avatar img {
  width: 250px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.quote {
  font-style: italic;
  margin-bottom: 10px;
  position: relative;
}

.quote::before {
  content: '"';
  font-size: 30px;
  color: var(--color-primary);
  opacity: 0.3;
  position: absolute;
  left: -15px;
  top: -10px;
}

.author {
  font-weight: 600;
  color: var(--color-primary);
}

/* Lead Magnet */
#lead-magnet {
  background-color: var(--color-light-gray);
}

.lead-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.lead-content a {
  text-decoration: none;
  color: var(--color-white);
}

#lead-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#lead-form input {
  padding: 15px;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-default);
  font-size: 16px;
}

#lead-form input:focus {
  border-color: var(--color-primary);
  outline: none;
}

.lead-image {
  margin-top: 40px;
  text-align: center;
  display: none;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: var(--radius-default);
  box-shadow: var(--box-shadow-light);
  padding: 20px;
}

.faq-item h3 {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item h3::after {
  content: "+";
  font-size: 22px;
}

.faq-answer {
  margin-top: 15px;
  display: none;
}

.faq-answer ul {
  margin-left: 20px;
  margin-top: 10px;
}

.faq-answer li {
  margin-bottom: 5px;
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
}

.faq-cta p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
}

.cta {
  text-decoration: none;
}

/* Footer */
footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 60px 0 30px;
}

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

.footer-logo p {
  margin-top: 15px;
  color: var(--color-gray-200);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

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

.social-icons a:hover {
  background-color: var(--color-primary);
  transform: translateY(-3px);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--color-gray-200);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-gray-200);
}

/* Responsividade */
@media (min-width: 768px) {
  .target-content {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .target-image {
    flex: 1;
    margin-bottom: 0;
  }

  .target-list {
    flex: 1;
  }

  .lead-content {
    flex: 1;
  }

  #lead-magnet .container {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .lead-image {
    display: block;
    flex: 1;
  }

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

  /* Hero responsivo */
  #hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .hero-content {
    flex: 1;
  }

  .hero-image {
    flex: 1;
    margin-top: 0;
  }
}

/* Animações */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Acesso FAQ */
.faq-item.active h3::after {
  content: "-";
}

.faq-item.active .faq-answer {
  display: block;
}

.footer-logo img {
  width: 150px;
}
