/* ==========================================================================
   ÍNDICE
   ==========================================================================
   1. Reset e Estilos Base
   2. Tipografia
   3. Utilitários (Container, Textos, Seções, Botões)
   4. Animações
   5. Header (Navegação e Dropdown)
   6. Seção: Hero
   7. Seção: Sobre Nós (About)
   8. Seção: Serviços (Services)
   9. Seção: Preços (Pricing)
   10. Seção: Depoimentos (Testimonials)
   11. Seção: Contato (Contact)
   12. Footer (Rodapé)
   13. Design Responsivo
   ========================================================================== */

/* -------------------------------------------------------------------------- */
/* 1. Reset e Estilos Base */
/* -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400; /* Peso 400 é mais padrão para corpo de texto */
  line-height: 1.7;
  color: #212529;
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block; /* Evita espaços indesejados abaixo da imagem */
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* -------------------------------------------------------------------------- */
/* 2. Tipografia */
/* -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-weight: 700; /* Um pouco mais de peso para destaque */
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #212529;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: #4a5055;
}

/* -------------------------------------------------------------------------- */
/* 3. Utilitários (Container, Textos, Seções, Botões) */
/* -------------------------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.text-gradient {
  background: linear-gradient(135deg, #7141b1 0%, #4d5ad8 50%, #1AA1EF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  margin-bottom: 3rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #7141b1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-description {
  font-size: 1.1rem;
  color: #4a5055;
  max-width: 700px; /* Um pouco mais de largura para melhor leitura */
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #7141b1 0%, #4d5ad8 50%, #1AA1EF 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(113, 65, 177, 0.3);
}

.btn-outline {
  background: transparent;
  color: #7141b1;
  border-color: #7141b1;
}

.btn-outline:hover {
  background: #7141b1;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(113, 65, 177, 0.2);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* -------------------------------------------------------------------------- */
/* 4. Animações */
/* -------------------------------------------------------------------------- */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* -------------------------------------------------------------------------- */
/* 5. Header (Navegação e Dropdown) */
/* -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f1f3f5;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-item {
  position: relative; /* <<< AJUSTE ESSENCIAL: Adicionado para ancorar o dropdown */
}

.nav-link {
  font-weight: 500;
  color: #212529;
  position: relative;
  display: flex; /* Adicionado para alinhar ícone */
  align-items: center; /* Adicionado para alinhar ícone */
  gap: 0.5rem; /* Adicionado para espaçar ícone */
}

.nav-link:hover, .nav-link.active {
  color: #7141b1;
}

.dropdown-icon {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 1001;
  border-top: 2px solid #7141b1;
  /* Animação de entrada */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  white-space: nowrap; /* Impede que o texto quebre */
}

.dropdown-link:hover {
  background: #f8f9fa;
  color: #7141b1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

/* -------------------------------------------------------------------------- */
/* 6. Seção: Hero */
/* -------------------------------------------------------------------------- */
.hero {
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  background: #f7f9fc;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 2;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #7141b1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-image-container {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-graphic img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  animation: float 8s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 0.875rem;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.floating-card i { color: #7141b1; }
.card-1 { top: 30%; left: 10%; }
.card-2 { top: 15%; right: 15%; animation-delay: 2s; }
.card-3 { bottom: 25%; left: 20%; animation-delay: 4s; }
.card-4 { bottom: 20%; right: 10%; animation-delay: 1s; }
.card-5 { top: 45%; right: 5%; animation-delay: 3s; }

/* -------------------------------------------------------------------------- */
/* 7. Seção: Sobre Nós (About) */
/* -------------------------------------------------------------------------- */
.about {
  padding: 100px 0;
}

.about .section-header {
  margin-bottom: 4rem;
}

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

.about-features,
.about-image {
  flex: 1;
  min-width: 0;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #7141b1;
}

.feature-icon i { font-size: 1.25rem; }
.feature-content h4 { margin-bottom: 0.5rem; }
.feature-content p { margin: 0; }

.about-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------------------------------------------------------------------------- */
/* 8. Seção: Serviços (Services) */
/* -------------------------------------------------------------------------- */
.services {
  padding: 100px 0;
  background: #f7f9fc;
}

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

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: #f1e9fc;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #7141b1;
}

.service-icon i { font-size: 1.5rem; }
.service-title { margin-bottom: 1rem; }
.service-description { margin-bottom: 1.5rem; }

.service-link {
  color: #7141b1;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link:hover { color: #4d5ad8; }
.service-link i { transition: transform 0.3s ease; }
.service-link:hover i { transform: translateX(5px); }


/* -------------------------------------------------------------------------- */
/* 9. Seção: Preços (Pricing) */
/* -------------------------------------------------------------------------- */
.pricing {
    padding: 100px 0;
}

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

.pricing-card {
    background: white;
    border: 2px solid #f1f3f5;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured {
    border-color: #7141b1;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(113, 65, 177, 0.15);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7141b1, #4d5ad8);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header { margin-bottom: 2rem; }
.pricing-title { margin-bottom: 0.5rem; }
.pricing-subtitle { font-size: 0.875rem; margin-bottom: 1.5rem; min-height: 50px; } /* Adicionado min-height para alinhar os cards */

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    color: #7141b1;
}

.currency { font-size: 1.25rem; font-weight: 600; }
.amount { font-size: 3rem; font-weight: 700; }
.period { font-size: 1rem; color: #6c757d; }

.pricing-features { margin-bottom: 2rem; }
.pricing-features ul { list-style: none; text-align: left; }

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.pricing-features li i {
    color: #28a745;
    margin-top: 5px;      /* ADICIONADO: Ajusta a altura do ícone */
    flex-shrink: 0;       /* ADICIONADO: Impede que o ícone seja espremido */
}

/* NOVA REGRA: Garante que o texto ocupe o espaço restante e quebre a linha corretamente */
.pricing-features li span {
    flex: 1;
}

/* -------------------------------------------------------------------------- */
/* 10. Seção: Depoimentos (Testimonials) */
/* -------------------------------------------------------------------------- */
.testimonials {
  padding: 100px 0;
  background: #f7f9fc;
}

.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: #ffc107;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

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

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

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-btn {
  width: 50px;
  height: 50px;
  border: 2px solid #7141b1;
  background: white;
  color: #7141b1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonial-btn:hover { background: #7141b1; color: white; }

.testimonial-dots { display: flex; gap: 0.5rem; }

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active { background: #7141b1; }


/* -------------------------------------------------------------------------- */
/* 11. Seção: Contato (Contact) */
/* -------------------------------------------------------------------------- */
.contact {
  padding: 100px 0;
  margin-bottom: -50px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #7141b1;
}

.contact-icon i { font-size: 1.25rem; }
.contact-text h4 { margin-bottom: 0.5rem; }
.contact-text p { margin: 0; }

.contact-form {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 20px;
}

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.5rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  background: white;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7141b1;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.contact-item-link .contact-item {
  transition: all 0.3s ease;
  border-radius: 15px;
}

.contact-item-link:hover .contact-item {
  transform: translateY(-4px);
  background-color: #f8f9fa;
}

/* -------------------------------------------------------------------------- */
/* 12. Footer (Rodapé) */
/* -------------------------------------------------------------------------- */
.footer {
  background: #212529;
  color: #adb5bd;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo h3 {
  background: linear-gradient(135deg, #7141b1, #4d5ad8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border: 2px solid #495057;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover { border-color: #7141b1; color: #7141b1; }

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

.footer-column h4 { color: white; margin-bottom: 1rem; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.5rem; }
.footer-column a:hover { color: #7141b1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #495057;
}

.footer-copyright p { margin: 0; }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a:hover { color: #7141b1; }

/* -------------------------------------------------------------------------- */
/* 13. Design Responsivo */
/* -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .hero-content, .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-image {
    margin-top: 2rem;
  }

  .hero-text { text-align: center; }
  .hero-image-container { order: -1; height: 300px; margin-bottom: 2rem; }
  .hero-stats, .hero-buttons { justify-content: center; }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #212529;
    transition: all 0.3s ease;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 1rem 0;
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
  }

  .nav.nav-open { 
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
  }

  .nav-list { flex-direction: column; gap: 0; padding: 0; }
  .nav-item { border-bottom: 1px solid #f1f3f5; }
  .nav-item:last-child { border-bottom: none; }
  .nav-link { padding: 1rem 20px; display: flex; justify-content: space-between; }
  
  /* AJUSTES PARA DROPDOWN MOBILE */
  .dropdown-menu {
      position: static;
      box-shadow: none;
      border: none;
      border-top: 1px solid #f1f3f5;
      background: #f8f9fa;
      transform: none !important;
      opacity: 1 !important;
      visibility: visible !important;
      max-height: 0;
      overflow: hidden;
      padding: 0;
      transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .nav-item.dropdown-open > .dropdown-menu {
      max-height: 300px; /* Altura suficiente para os itens */
      padding: 0.5rem 0;
  }

  .dropdown-link {
      padding: 0.75rem 2.5rem; /* Indentação para indicar sub-item */
  }

  .nav-item.dropdown-open > .nav-link .dropdown-icon {
      transform: rotate(180deg);
  }
}

@media (max-width: 768px) {
  .services-grid, .pricing-grid, .footer-content {
    grid-template-columns: 1fr;
  }

  .pricing-card-featured { transform: none; }
  .footer-content { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
  .about, .services, .pricing, .testimonials, .contact { padding: 60px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  .floating-card { display: none; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
/* ==========================================================================
   Estilos Adicionais
   ========================================================================== */

/* Botão de Voltar ao Topo */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7141b1, #4d5ad8);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(113, 65, 177, 0.4);
    z-index: 999;
    
    /* Estado inicial (escondido) */
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* Estado visível */
.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(113, 65, 177, 0.5);
}

.scroll-to-top i {
    width: 24px;
    height: 24px;
}

/* ==========================================================================
   ESTILOS PARA LANDING PAGE - MANUTENÇÃO DE MÁQUINAS
   ========================================================================== */

/* Seção de Dores (Problem Section) */
.problem-section {
    padding: 100px 0;
    background-color: #f7f9fc;
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.problem-card {
    text-align: center;
    padding: 2rem;
}
.problem-card h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/* Seção do Ciclo da Manutenção */
.maintenance-cycle {
    padding: 100px 0;
}
.cycle-step {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}
.cycle-step.reverse {
    flex-direction: row-reverse;
}
.cycle-image {
    flex: 1;
    min-width: 0;
}
.cycle-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.cycle-text {
    flex: 1.2;
    min-width: 0;
}
.cycle-tag {
    display: inline-block;
    background: #f1e9fc;
    color: #7141b1;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
}
.cycle-text h3 {
    font-size: 2rem;
}
.cycle-text ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}
.cycle-text li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    text-align: left;
}
.cycle-text li i {
    color: #28a745;
}

/* Seção de KPIs */
.kpi-section {
    padding: 100px 0;
    background-color: #f7f9fc;
}
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.kpi-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
}
.kpi-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7141b1, #4d5ad8);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.kpi-icon i {
    width: 28px;
    height: 28px;
}
.kpi-card h4 {
    font-size: 1.25rem;
}

/* Responsividade para novas seções */
@media(max-width: 992px) {
    .cycle-step, .cycle-step.reverse {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .cycle-text ul {
        justify-content: center;
    }
}