/* Reset e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  :root {
    --primary: #1a56db;
    --primary-dark: #104bb9;
    --secondary: #0fcc45;
    --secondary-dark: #0ba938;
    --light: #f8fafc;
    --dark: #1e293b;
    --gray: #64748b;
    --light-gray: #e2e8f0;
  }
  
  body {
    color: var(--dark);
    background-color: white;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  section {
    padding: 5rem 0;
  }
  
  /* Tipografia */
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  /* Botões */
  .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: white;
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 86, 219, 0.2);
  }
  
  .btn-secondary {
    background-color: var(--secondary);
    color: white;
  }
  
  .btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 204, 69, 0.2);
  }
  
  .btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
  }
  
  .btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
  }
  
  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  /* Header */
  header {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 40px;
  }
  
  .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-left: 0.5rem;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fd 100%);
    padding-top: 10rem;
    padding-bottom: 6rem;
    text-align: center;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero h1 {
    margin-bottom: 1.5rem;
    color: var(--dark);
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
  }
  
  .hero-image {
    max-width: 100%;
    margin-top: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  
  /* Benefits Section */
  .benefits {
    background-color: white;
  }
  
  .section-title {
    position: relative;
    display: inline-block;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
  }
  
  .benefits-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
  }
  
  .benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .benefit-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
  }
  
  .benefit-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  /* Demo Section */
  .demo {
    background-color: var(--light);
    text-align: center;
  }
  
  .demo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
  }
  
  .demo-text {
    max-width: 500px;
    text-align: left;
  }
  
  .demo-image {
    max-width: 300px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 24px;
  }
  
  /* Pricing Section */
  .pricing {
    background-color: white;
    text-align: center;
  }
  
  .pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
  }
  
  .price-card {
    background-color: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
  }
  
  .price-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary);
    position: relative;
  }
  
  .price-card.featured::before {
    content: 'Mais popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .price-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
  }
  
  .price-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
  }
  
  .price-period {
    font-size: 0.9rem;
    color: var(--gray);
  }
  
  .price-features {
    margin: 2rem 0;
    text-align: left;
    flex-grow: 1;
  }
  
  .price-features li {
    padding: 0.5rem 0;
    list-style: none;
    display: flex;
    align-items: center;
  }
  
  .price-features li::before {
    content: '✓';
    color: var(--primary);
    margin-right: 0.5rem;
    font-weight: bold;
  }
  
  .price-button {
    width: 100%;
  }
  
  /* How it works */
  .how-it-works {
    background-color: var(--light);
    text-align: center;
  }
  
  .steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
  }
  
  .step-card {
    background-color: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
  }
  
  .step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .step-number {
    font-size: 5rem;
    font-weight: 700;
    color: rgba(26, 86, 219, 0.1);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    z-index: -1;
  }
  
  .step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
  }
  
  .step-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  /* Testimonials */
  .testimonials {
    background-color: white;
    text-align: center;
  }
  
  .testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
  }
  
  .testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    border: 1px solid var(--light-gray);
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .testimonial-text::before,
  .testimonial-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary);
    position: absolute;
    opacity: 0.3;
  }
  
  .testimonial-text::before {
    left: -1rem;
    top: -0.5rem;
  }
  
  .testimonial-text::after {
    right: -1rem;
    bottom: -1.5rem;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1rem;
  }
  
  .testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
  }
  
  .testimonial-name {
    font-weight: 600;
  }
  
  .testimonial-position {
    font-size: 0.9rem;
    color: var(--gray);
  }
  
  /* FAQ Section */
  .faq {
    background-color: var(--light);
  }
  
  .faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
  }
  
  .faq-item {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: white;
  }
  
  .faq-question {
    background-color: white;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    border-bottom: 1px solid var(--light-gray);
  }
  
  .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .faq-question.active::after {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-answer-content {
    padding: 1.5rem;
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px;
  }
  
  /* Footer */
  footer {
    background-color: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
  
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
  }
  
  .footer-about {
    margin-bottom: 2rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 0.8rem;
  }
  
  .footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-links a:hover {
    color: white;
    padding-left: 5px;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .social-icon {
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
  }
  
  .footer-bottom {
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* WhatsApp Floating Button */
  .whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--secondary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(15, 204, 69, 0.3);
    z-index: 999;
    font-size: 1.8rem;
    transition: all 0.3s ease;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(15, 204, 69, 0.4);
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .animate {
    animation: fadeIn 0.6s ease-out forwards;
  }
  
  .delay-1 { animation-delay: 0.2s; }
  .delay-2 { animation-delay: 0.4s; }
  .delay-3 { animation-delay: 0.6s; }
  .delay-4 { animation-delay: 0.8s; }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .benefits-container,
    .pricing-container,
    .steps-container,
    .testimonials-container {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .demo-container {
      flex-direction: column;
      text-align: center;
    }
    
    .demo-text {
      text-align: center;
      max-width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    
    .hero {
      padding-top: 8rem;
      padding-bottom: 4rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      gap: 1rem;
    }
    
    .benefits-container,
    .pricing-container,
    .steps-container,
    .testimonials-container {
      grid-template-columns: 1fr;
    }
    
    .price-card.featured {
      transform: scale(1);
    }
    
    .price-card.featured:hover {
      transform: translateY(-10px);
    }
    
    .footer-container {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 1rem;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    
    .btn {
      width: 100%;
    }
    
    .header-container {
      flex-direction: column;
      gap: 1rem;
    }
  }
  /* Correção do CSS para as perguntas frequentes */
.faq-item {
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: white;
}

.faq-question {
  background-color: white;
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  position: relative;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.faq-question.active::after {
  content: '-';
  transform: rotate(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* Valor fixo suficientemente grande para acomodar o conteúdo */
}