/* assets/css/style.css */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary: #10b981;
  --secondary-dark: #059669;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
}

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

/* Botão WhatsApp Flutuante */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

/* Navbar */
.navbar {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 99;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 130px;
}

.logo h1 {
  color: var(--primary);
  font-size: 1.5rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 23px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary);
}

.btn-azul {
  background-color: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn-azul:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.btn-teste-gratis {
  background-color: var(--secondary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-teste-gratis:hover {
  background-color: var(--secondary-dark);
  color: var(--white);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 80px 0;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.text-highlight {
  background: linear-gradient(90deg, var(--secondary) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.btn-verde {
  background-color: var(--secondary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-verde:hover {
  background-color: var(--secondary-dark);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--white);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
}

.hero-stats {
  display: flex;
  gap: 30px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}

.stat-text {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--white);
}

.features h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: var(--dark);
}

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

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

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

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.8rem;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray);
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background-color: var(--light);
}

.how-it-works h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: var(--dark);
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.step {
  flex: 1;
  text-align: center;
  padding: 30px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 15px;
  color: var(--dark);
}

.step p {
  color: var(--gray);
}

/* Integrations Section */
.integrations {
  padding: 80px 0;
  background-color: var(--white);
}

.integrations h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: var(--dark);
}

.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.logos-grid img {
  height: 50px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.logos-grid img:hover {
  opacity: 1;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--light);
}

.testimonials h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: var(--dark);
}

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

.card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

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

.stars {
  color: #fbbf24;
  margin-bottom: 15px;
}

.card p {
  font-style: italic;
  margin-bottom: 15px;
  color: var(--dark);
}

.card span {
  color: var(--gray);
  font-weight: 500;
}

/* Pricing Teaser */
.pricing-teaser {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
}

.pricing-teaser h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.pricing-teaser p {
  margin-bottom: 30px;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* FAQ Teaser */
.faq-teaser {
  padding: 80px 0;
  background-color: var(--white);
}

.faq-teaser h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: var(--dark);
}

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

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--gray-light);
}

.faq-item h3 {
  margin-bottom: 10px;
  color: var(--dark);
}

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

.faq-teaser .btn-outline {
  display: block;
  width: fit-content;
  margin: 0 auto;
  color: var(--primary);
  border-color: var(--primary);
}

.faq-teaser .btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* CTA Final */
.cta-final {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
}

.cta-final h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-final p {
  margin-bottom: 30px;
  font-size: 1.2rem;
  opacity: 0.9;
}

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

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

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

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

.footer-section ul li a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--white);
}

.footer-section .logo {
  margin-bottom: 20px;
}

.footer-section .logo h2 {
  color: var(--white);
}

.footer-section p {
  color: var(--gray-light);
}

.footer-section i {
  margin-right: 10px;
  color: var(--primary-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-light);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .steps {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
  }
  
  nav.active {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .logos-grid {
    gap: 20px;
  }
  
  .logos-grid img {
    height: 40px;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .features, .how-it-works, .integrations, .testimonials, .pricing-teaser, .faq-teaser, .cta-final {
    padding: 60px 0;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .features h2, .how-it-works h2, .integrations h2, .testimonials h2, .faq-teaser h2 {
    font-size: 1.8rem;
  }
}

/* Estilos para páginas internas */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Depoimentos */
.depoimentos {
  padding: 80px 0;
  background-color: var(--white);
}

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

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

.depoimento-card:hover {
  transform: translateY(-5px);
}

.depoimento-avatar {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.5rem;
}

.depoimento-texto {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--dark);
  line-height: 1.6;
}

.depoimento-author strong {
  display: block;
  color: var(--dark);
  margin-bottom: 5px;
}

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

.cta-depoimentos {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
}

.cta-depoimentos h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-depoimentos p {
  margin-bottom: 30px;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* FAQ */
.faq {
  padding: 80px 0;
  background-color: var(--white);
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.faq-category {
  background-color: var(--gray-light);
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.faq-category.active,
.faq-category:hover {
  background-color: var(--primary);
  color: var(--white);
}

.faq-category-content {
  display: none;
  max-width: 800px;
  margin: 0 auto;
}

.faq-category-content.active {
  display: block;
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 15px;
}

.faq-question {
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
}

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

.faq-answer p {
  padding-bottom: 20px;
  color: var(--gray);
  line-height: 1.6;
}

.faq-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: var(--light);
  border-radius: 10px;
}

.faq-cta h3 {
  margin-bottom: 10px;
  color: var(--dark);
}

.faq-cta p {
  margin-bottom: 20px;
  color: var(--gray);
}

/* Preços */
.precos {
  padding: 80px 0;
  background-color: var(--white);
}

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

.plano {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 30px;
  position: relative;
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.plano:hover {
  transform: translateY(-5px);
}

.plano.destaque {
  border-color: var(--primary);
  transform: scale(1.05);
}

.plano-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.plano-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-light);
}

.plano-header h3 {
  color: var(--dark);
  margin-bottom: 10px;
}

.plano-header p {
  color: var(--gray);
  margin-bottom: 15px;
}

.plano-preco {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.preco {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
}

.periodo {
  color: var(--gray);
}

.plano-beneficios {
  list-style: none;
  margin-bottom: 30px;
}

.plano-beneficios li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.plano-beneficios .fa-check {
  color: var(--secondary);
}

.plano-beneficios .fa-times {
  color: var(--gray-light);
}

.plano-beneficios .disabled {
  color: var(--gray);
  text-decoration: line-through;
}

.plano .btn-verde,
.plano .btn-outline {
  display: block;
  width: 100%;
  text-align: center;
}

.precos-cta {
  text-align: center;
  padding: 60px 0;
  background-color: var(--light);
  border-radius: 10px;
  margin-bottom: 60px;
}

.precos-cta h2 {
  margin-bottom: 15px;
  color: var(--dark);
}

.precos-cta p {
  margin-bottom: 30px;
  color: var(--gray);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.precos-faq h3 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--dark);
}

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

.faq-grid .faq-item {
  border: none;
  padding: 25px;
  background-color: var(--light);
  border-radius: 10px;
}

.faq-grid .faq-item h4 {
  margin-bottom: 15px;
  color: var(--dark);
}

.faq-grid .faq-item p {
  color: var(--gray);
  line-height: 1.6;
}

/* Recursos */
.recursos-destaque {
  padding: 80px 0;
  background-color: var(--white);
}

.recurso-item {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

.recurso-item.reverse {
  flex-direction: row-reverse;
}

.recurso-content {
  flex: 1;
}

.recurso-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.recurso-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--gray);
  line-height: 1.6;
}

.recurso-lista {
  list-style: none;
}

.recurso-lista li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.recurso-lista .fa-check {
  color: var(--secondary);
}

.recurso-imagem {
  flex: 1;
  text-align: center;
}

.recurso-imagem img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

.recursos-grid {
  padding: 80px 0;
  background-color: var(--light);
}

.recursos-grid h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: var(--dark);
}

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

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

.recurso-card:hover {
  transform: translateY(-5px);
}

.recurso-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.5rem;
}

.recurso-card h3 {
  margin-bottom: 15px;
  color: var(--dark);
}

.recurso-card p {
  color: var(--gray);
  line-height: 1.6;
}

.cta-recursos {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
}

.cta-recursos h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-recursos p {
  margin-bottom: 30px;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Responsividade adicional */
@media (max-width: 768px) {
  .page-header {
    padding: 60px 0;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }
  
  .recurso-item,
  .recurso-item.reverse {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .planos {
    grid-template-columns: 1fr;
  }
  
  .plano.destaque {
    transform: none;
  }
  
  .faq-categories {
    justify-content: flex-start;
  }
}
