:root {


  --primary: #54C600;
  /* Verde principal */
  --primary-light: #7bdd36;
  /* Verde claro */
  --primary-dark: #3a8a00;
  /* Verde escuro */

  /* Novas cores principais */
  --secondary: #EAF558;
  /* Amarelo vibrante */
  --secondary-light: #f1f88b;
  /* Tom mais claro do amarelo */
  --secondary-dark: #d9e04f;
  /* Tom mais escuro do amarelo */

  /* Tons de verde adicionais */
  --dark-green: #214000;
  /* Verde muito escuro */
  --medium-green: #336300;
  /* Verde médio */
  --light-green: #264F00;
  /* Verde médio/escuro */

  /* Cores de apoio */
  --accent: #FF6B00;
  /* Laranja como cor de destaque */
  --accent-light: #ff8c38;
  /* Laranja claro */

  /* Cores neutras */
  --dark: #121212;
  /* Preto suavizado */
  --dark-light: #2a2a2a;
  /* Cinza muito escuro */
  --light: #f8faf7;
  /* Branco esverdeado muito claro */
  --gray: #7a8b74;
  /* Cinza esverdeado */
  --gray-light: #e2e8df;
  /* Cinza claro esverdeado */

  /* Cores de estado */
  --success: #54C600;
  /* Usando o verde principal */
  --warning: #FFA500;
  /* Laranja padrão para avisos */
  --danger: #FF3A30;
  /* Vermelho vibrante */

  /* Gradientes */
  --gradient: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-light));

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);

  /* Bordas */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;

  /* Transições */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Cores específicas para componentes */
  --primary-action: var(--primary);
  --secondary-action: var(--secondary);
  --text-dark: var(--dark);
  --text-light: var(--light);
  --background-light: var(--light);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #ffffff;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.05em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.75rem;
}

p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-home {
  color: var(--dark-light);
}

.p-footer {
  color: var(--light);
}

/* Layout */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}


.home-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  /* Transparência um pouco maior */
  backdrop-filter: blur(12px);
  /* Blur mais perceptível */
  -webkit-backdrop-filter: blur(12px);
  /* Suporte para Safari */
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  /* Sombra mais suave */
  transition: all 0.3s ease;
  /* position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease; */
}

.header-hidden {
  transform: translateY(-100%);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo {
  display: flex;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  gap: 5px;

  img {
    margin: auto;
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

.hero {
  height: 100vh;
  display: flex;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Camada branca com degradê */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgb(255, 255, 255), rgba(255, 255, 255, 0.678));
  z-index: 1;
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  /* top: -50%;
  left: -10%;
  width: 120%;
  height: 150%; */
  background: var(--gradient);
  opacity: 0.03;
  transform: rotate(-4deg);
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.trust-badges {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--dark);
}

.swiper-buttons {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
  /* permite clique nos botões sem interferir no Swiper */
  z-index: 10;
}

.swiper-buttons button {
  pointer-events: all;
  /* reativa clique nos botões */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  background: white;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.swiper-buttons button:hover {
  background: var(--primary);
  color: white;
}

@media (max-width: 768px) {
  .swiper-buttons {
    top: 50% !important;
    transform: translateY(-50%) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 1rem !important;
  }
}

#image-scaly {
  position: relative;
  z-index: 1;
  background-image: url('./imgs/4600x220.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#image-scaly::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgb(255, 255, 255) 0%,
      rgba(255, 255, 255, 0.7) 20%,
      rgba(255, 255, 255, 0) 30%,
      rgba(248, 250, 247, 0) 70%,
      #f8faf781 80%,
      #F8FAF7 100%);
  z-index: 2;
  pointer-events: none;
}


/* Para telas menores, usa a imagem menor com ajuste responsivo */
@media (max-width: 768px) {
  #image-scaly {
    background-image: url('./imgs/2300x1100.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: auto;
    height: 200px;
  }
}




/* Features Section */
.features {
  background: var(--light);
}

/* 1. Container principal ocultando overflow no desktop */
/* Container fixo - oculta o overflow */
.features-grid {
  position: relative;
  overflow: hidden;
}

/* Track animado */
.features-track {
  display: flex;
  gap: 2rem;
  /* Animação contínua: move de 0% a -50% repetidamente */
  animation: scrollInfinite 30s linear infinite;
  will-change: transform;
}

@keyframes scrollInfinite {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.features-grid::-webkit-scrollbar {
  display: none;
}

.feature-card {
  height: 300px;
  flex: 0 0 auto;
  margin: 0 1rem;
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: var(--border-radius-md);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.steps-wrapper {
  position: relative;
}

/* How It Works */
.steps {
  padding: 20px;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin: 0 auto;
}

.steps {
  -webkit-overflow-scrolling: touch;
  /* rolagem com momentum no iOS */
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: var(--primary) transparent;
  /* Firefox */
}

.steps::-webkit-scrollbar {
  width: 8px;
  display: block !important;
}

.steps {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: auto !important;
}

.steps::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 4px;
}

.steps::-webkit-scrollbar-track {
  background: transparent;
}

#how-it-works .container {
  overflow: hidden;
}


.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.step:hover {
  box-shadow: var(--shadow-md);
}

.step-card {
  position: relative;
}

.step-number {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}

/* Testimonials */
.testimonials {
  background: var(--light);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-content {
  font-style: italic;
  margin-top: 1rem;
  margin-bottom: 1rem;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-size: 5rem;
  position: absolute;
  top: -70px;
  left: -1rem;
  color: var(--gray-light);
  z-index: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.2rem;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.price-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);

  display: flex;
  flex-direction: column;

  ul {
    flex: 1;
  }

  p {
    margin: 0 !important;
  }
}

.price-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--gradient);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}

.price-container {
  display: flex;
  flex-direction: column;

  small {
    font-size: 1.2rem;
    font-weight: 200;
    text-decoration: line-through;
  }
}

.price {
  font-size: 3rem;
  font-weight: 700;
  /* margin: 1rem 0; */
}

.price span {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 400;
}

.price-features {
  list-style: none;
  /* margin: 2rem 0; */
  margin-bottom: 1rem;
}

.price-features li {
  padding: 2px 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--success);
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--light);
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

/* CTA Section */
.cta-section {
  background: var(--gradient);
  color: white;
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Footer */
.main-footer {
  background: var(--dark);
  color: white;
  padding: 6rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col {
  ul {
    li {
      a {
        color: var(--gray);
      }
    }
  }
}



.footer-logo-container {
  display: flex;
  flex-direction: row;
  gap: 5px;

  img {
    margin: auto 0;
  }
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: auto 0;
}

.footer-links h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: var(--gray-light);
  font-size: 0.9rem;
}

@media (max-width: 768px) {


  .container-section-metodologia {
    padding: 0px !important;
  }


  .steps-wrapper {
    position: relative;
  }

  .steps {
    overflow-y: scroll;
    max-height: 80vh;
    flex-direction: column;
    padding-right: 1rem;
    scrollbar-width: auto;
  }

  .steps::-webkit-scrollbar {
    width: 8px;
  }

  .steps::-webkit-scrollbar-thumb {
    background-color: var(--primary-light);
    border-radius: 4px;
  }

  .steps::-webkit-scrollbar-track {
    background: #e0e0e0;
  }

  /* Scroll FALSO */
  .steps-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 2px;
    width: 6px;
    height: 100%;
    background-color: var(--primary-light);
    border-radius: 4px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 10;
  }


  .hero {
    padding: 7rem 0 10rem;
  }
}

/* Responsividade */
@media (max-width: 1024px) {

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 6rem 0;
  }
}

@media (max-width: 1000px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: calc(80px - 1rem);
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .step {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .container {
    padding: 0 1.5rem;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* clientes atendidos */
.clients-section {
  padding: 1rem 1rem;
  /* background: #f8fafc; */
  overflow: hidden;
  position: relative;
}

.clients-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.2rem;
  color: #1e1e2f;
  font-weight: 700;
}

.clients-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

.clients-track {
  display: flex;
  align-items: center;
  width: calc(220px * 12);
  /* 6 itens x 2 (duplicado) */
  animation: scroll 40s linear infinite;
}

.client-item {
  width: 200px;
  margin: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 1rem;
  padding: 15px;
  /* background: white; */
  border-radius: 12px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
  /* transition: all 0.3s ease; */
}

.client-logo {
  height: 30px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.client-name {
  font-size: 1rem;
  font-weight: 600;
  color: #334155;
  text-align: center;
}

/* .client-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
} */

.client-item:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-220px * 6));
    /* Move metade do comprimento */
  }
}

@media (max-width: 768px) {
  .features-track {
    animation: none !important;
  }

  .features-grid {
    overflow-x: auto;
    /* scroll manual */
    scroll-snap-type: x mandatory;
    /* snap em cada card */
    -webkit-overflow-scrolling: touch;
    /* momentum iOS */
    overscroll-behavior: contain;
    /* previne “bounce” fora do container */
  }

  .features-grid::-webkit-scrollbar {
    display: none;
    /* esconde scrollbar no mobile */
  }

  .feature-card {
    scroll-snap-align: start;
    /* cada card encaixa ao parar */

    h3 {
      max-width: 80%;
      margin: auto;
    }
  }
}

@media (max-width: 768px) {

  .features-grid::-webkit-scrollbar {
    display: none;
  }

  .clients-track {
    width: calc(180px * 12);
    animation: scroll 30s linear infinite;
  }

  .client-item {
    width: 160px;
    margin: 0 10px;
    padding: 1rem;
  }

  .client-logo {
    height: 40px;
  }

  .client-name {
    font-size: 0.9rem;
  }

  @keyframes scroll {
    100% {
      transform: translateX(calc(-180px * 6));
    }
  }
}

/* numeros e dados */

.stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.stat-card {
  padding: 1.5rem;
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.stat-card h3 {
  font-size: 2.5rem;
  color: var(--primary);
  ;
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: #64748b;
  font-size: 1rem;
}

/* Divisor vertical para desktop */
.divider {
  height: 60px;
  border-left: 2px dashed #e2e8f0;
}

/* Divisor horizontal para mobile */
@media (max-width: 768px) {
  .stats {
    flex-direction: column;
  }

  .divider {
    height: 0;
    width: 60%;
    margin: 1rem 0;
    border-left: none;
    border-top: 2px dashed #e2e8f0;
  }
}

/* text and image */
.text-image-section {
  padding: 6rem 0;
  background: #ffffff;
}

.text-image-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-image-content-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.text-content {
  flex: 1;
}

.text-content h2 {
  font-size: 2.5rem;
  color: #1e1e2f;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.text-content p {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}



.benefits-list-bullet-point {
  list-style: none;
  margin: 2rem 0;
}

.benefits-list-bullet-point li {
  margin-bottom: 1rem;
  flex-direction: row;
  display: flex;
  align-items: start;
  gap: 0.5rem;
  color: #334155;

  strong {
    display: flex;
    gap: 5px;

    i {
      margin: auto;
    }
  }
}

.benefits-list-bullet-point i {
  color: var(--primary);
  margin-top: 5px;
}

.benefits-list {
  list-style: none;
  margin: 2rem 0;
}

.benefits-list li {
  margin-bottom: 1rem;
  flex-direction: column;
  display: flex;
  align-items: start;
  gap: 0.5rem;
  color: #334155;

  strong {
    display: flex;
    gap: 5px;

    i {
      margin: auto;
    }
  }
}

.benefits-list i {
  color: var(--primary);
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--gradient);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.image-content {
  flex: 1;
}

.feature-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {

  .text-image-content-wrapper {
    flex-direction: column;
  }

  .content-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .text-content,
  .image-content {
    width: 100%;
  }

  .text-content h2 {
    font-size: 2rem;
  }

  .image-content {
    order: -1;
  }
}
