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

    .features-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Ajusta para mobile */
      width: 90%;
      justify-content: center; /* Centraliza as colunas horizontalmente */
      margin: 0 auto; /* Centraliza o grid na página */
    }

    .feature-card {
      background: white;
      padding: 1.5rem; 
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 1rem;
      position: relative;
      width: 100%;
      max-width: 400px; 
      margin: 0 auto; /* Centraliza cada card dentro da sua célula */
    }

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

    .feature-card[data-tooltip]:hover::after {
      content: attr(data-tooltip);
      position: absolute;
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: #333;
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      font-size: 0.9rem;
      white-space: normal;
      max-width: 90vw; 
      z-index: 10;
      margin-bottom: 0.5rem;
      text-align: center;
    }

    .feature-card ul {
      list-style: none;
      padding: 0;
      margin: 0.5rem 0 0;
    }

    .feature-card ul li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .card-feedback {
      padding: 1rem; 
    }

    .icon {
      font-size: 2rem;
      flex-shrink: 0;
    }

    .price-section {
      padding: 2rem 1rem;
      text-align: center;
      width: 100%;
    }

    .price-comparison {
      display: flex;
      justify-content: center;
      gap: 1.5rem; 
      flex-wrap: wrap;
      margin: 2rem 0;
      width: 100%;
    }

    .price-card {
      background: white;
      padding: 1.5rem; 
      border-radius: 15px;
      flex: 1;
      min-width: 280px;
      max-width: 100%; 
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

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

    .price-card ul {
      list-style: none;
      padding: 0;
      margin: 1rem 0;
    }

    .price-card ul li {
      margin: 0.5rem 0;
    }

    .header {
      background: #fff;
      background-size: 200% 200%;
      animation: gradientShift 10s ease infinite;
      color: black;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    .header-content {
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .header-text {
      max-width: 100%;
      padding: 1.5rem; 
      backdrop-filter: blur(10px);
      transition: transform 0.3s ease;
      transform-origin: center;
    }

    .header-title {
      font-size: 1.5rem; 
      font-weight: 900;
    }

    .header-subtitle {
      font-size: 1rem; 
    }
  }


  @keyframes gradientShift {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
  }


  .comparison-section {
    width: 100%;
  }

  .comparison-grid {
    width: 100%;
  }

  .comparison-card {
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 400px; 
    margin: 0 auto; 
  }

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

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .animate-on-scroll {
    opacity: 0;
    transition: 0.5s ease;
  }

  .animate-on-scroll.visible {
    opacity: 1;
    animation: fadeInUp 0.8s ease forwards;
  }

/* Estilos adicionais para consistência */
h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem; 
  }
  h3 {
    font-size: 1.2rem; 
  }
}

.card {
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 100%; 
}

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

.btn-outline-primary {
  border-color: var(--accent);
  color: var(--accent);
}

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

.btn-outline-secondary {
  border-color: #ccc;
  color: #666;
}

.btn-outline-secondary:hover {
  background: #eee;
  color: #333;
}

.card img.rounded-circle {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card img.rounded-circle:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .card img.rounded-circle {
    width: 60px; 
    height: 60px;
  }
}

.card {
  border-radius: 15px;
  padding: 1rem; 
}

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

.fst-italic {
  font-style: italic;
}

.text-muted {
  color: #6c757d;
}

@media (max-width: 768px) {
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  .col-md-4, .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%; 
  }
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}
.security-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, #bdddff, #bdddff); 
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.6rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.security-badge:hover {
  transform: scale(1.05); 
}

.security-badge i {
  font-size: 1rem; 
}
.lead-form-container {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1rem;
  position: relative;
}

.input-icon i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.form-control {
  width: 100%;
  padding: 0.8rem 0.8rem 0.8rem 2.5rem; /* Espaço para o ícone */
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 5px rgba(46, 107, 239, 0.3);
}

.form-control::placeholder {
  color: #999;
}

@media (max-width: 768px) {
  .lead-form-container {
    padding: 1rem;
    max-width: 100%;
  }
  .form-control {
    font-size: 0.9rem;
    padding: 0.6rem 0.6rem 0.6rem 2rem;
  }
}
@media (max-width: 768px) {
  .cta-button {
    display: none;
  }
}

.bg-results {
  background-color: #fff;
  border-color: #000;
  border-width: 1px; /* Aumenta a espessura da borda */
  border-style: solid; /* Define o estilo da borda como sólida */
}
/* Reset de estilos para links */
a {
  text-decoration: none;
  color: inherit;
}

/* Estilo do botão flutuante */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  text-decoration: none !important; /* Garante que não terá sublinhado */
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  background-color: #128C7E;
}

.whatsapp-button i {
  color: white;
  font-size: 28px;
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background-color: #075E54;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  text-decoration: none; /* Remove sublinhado do tooltip */
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
}

/* Animação de pulsar */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .whatsapp-button {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-button i {
    font-size: 24px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}
/* Estilo para dispositivos móveis (telas menores que 992px) */
@media (max-width: 991.98px) {
  .container.position-relative.h-100.d-flex.flex-column.justify-content-center.text-white {
    align-items: center !important;
    text-align: center !important;
    padding: 20px !important;
  }
  
  .animate__animated.animate__fadeInUp {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  h1.display-3.fw-bold.mb-3,
  p.lead.fs-2.mb-4 {
    text-align: center !important;
    width: 100% !important;
  }
  
  .d-flex.flex-wrap.gap-3.mt-4 {
    justify-content: center !important;
    width: 100% !important;
  }
  
  /* Ajuste específico para o botão mobile */
  a.btn.btn-outline-light.btn-lg.px-4.py-3.rounded-pill.fw-bold.shadow.d-lg-none {
    width: 100%;
    max-width: 300px;
  }
}
.feedback {
  margin-top: -80px;
}

.bg-1 {
  background-color: #fff;
  color: #000;
  font-weight: 1px;
  border-left: 5px solid #800080;
}
.text-03af8d {
  color: #800080;
}
@media (max-width: 767.98px) {
  header {
    height: 400px !important;
  }
  .lead.fs-2 {
    font-size: 1.25rem !important;
  }
  h1.display-3 {
    font-size: 2.5rem !important;
  }
  /* Ajuste do novo texto introdutório */
  .text-uppercase {
    font-size: 0.8rem !important;
  }
}

/* Efeito hover para os logos */
.partner-logo img:hover {
  filter: grayscale(0%) opacity(100%) !important;
  transform: scale(1.15);
}

/* Efeito hover para os cards */
.testimonial-card {
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

/* Efeito de gradiente no hover do botão */
.shadow-lg-hover {
  transition: all 0.3s ease;
}
.shadow-lg-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,107,107,0.3) !important;
}
/* Estilos Modernos para Depoimentos */
.testimonials-section {
  background-color: #f9fafc;
  position: relative;
  overflow: hidden;
}

.modern-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 35px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.client-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  margin-right: 20px;
  flex-shrink: 0;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #f8f9fa;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.avatar-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 2px solid white;
  font-size: 0.8rem;
}

.bg-primary {
  background: #00a884;
}

.bg-danger {
  background: #ff3c53;
}

.client-info {
  flex: 1;
}

.client-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1e293b;
}

.client-position {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 10px;
}

.client-rating {
  display: flex;
  align-items: center;
}

.stars {
  color: #f59e0b;
  margin-right: 8px;
}

.stars i {
  font-size: 0.9rem;
}

.rating-value {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}

.testimonial-text {
  position: relative;
  margin-bottom: 25px;
}

.quote-icon {
  position: absolute;
  top: -15px;
  left: -10px;
  font-size: 60px;
  color: rgba(0, 168, 132, 0.05);
  z-index: 0;
}

blockquote {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #334155;
  font-style: italic;
  margin: 0;
  padding-left: 30px;
}

.testimonial-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.stat-item {
  display: flex;
  align-items: center;
  background: rgba(0, 168, 132, 0.08);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}

.stat-icon {
  color: #00a884;
  margin-right: 8px;
  font-size: 0.9rem;
}

.testimonial-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
  z-index: 0;
}

.deco-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: #00a884;
}

.shape-2 {
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #ff3c53;
}

/* Responsividade */
@media (max-width: 992px) {

  .modern-card {
    padding: 25px;
    
  }
  
  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }
  
  .client-avatar {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  blockquote {
    padding-left: 20px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .modern-card {
    padding: 20px;
  }
  
  .testimonial-stats {
    justify-content: center;
  }
  
  .client-avatar {
    width: 70px;
    height: 70px;
  }
  
  .client-name {
    font-size: 1.2rem;
  }
}
/* Efeitos de hover */
.shadow-hover {
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.shadow-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Animações */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll[data-animation="fadeInUp"] {
  animation: fadeInUp 0.6s ease forwards;
}

/* Animação dos números */
.result-percentage {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

/* Estilo para desktop (min-width: 992px) */
@media (min-width: 992px) {
  .features-grid {
    padding: 5rem; /* Ajustado para consistência */
  }
  .title-desktop {
    font-size: 9rem; /* Tamanho grande para desktop */
    color: #fff; /* Mantido do código original */
  }
  .p-desktop {
    font-size: 1.25rem; /* Tamanho maior para legibilidade */
    margin-bottom: -100px; /* Margem negativa mantida para desktop */
    color: #fff; /* Cor ajustada para contraste com o gradiente */
  }
}

/* Estilo para mobile (max-width: 991px) */
@media (max-width: 991px) {
  .features-grid {
    padding: 2rem; /* Menos padding em mobile */
  }
  .title-desktop {
    font-size: clamp(1.8rem, 6vw, 2.5rem); /* Tamanho ajustado para mobile */
    color: #fff; /* Mantém a cor */
  }
  .p-desktop {
    font-size: clamp(1rem, 4vw, 1.1rem); /* Fonte menor para mobile */
    margin-bottom: 1rem; /* Remove margem negativa para evitar sobreposição */
    color: #fff; /* Mantém a cor */
  }
}
.features-grid .row {
  display: flex;
  flex-wrap: wrap;
}

.features-grid .col-md-4 {
  display: flex;
}

.feature-card {
  display: flex;
  flex-direction: column;
  flex: 1; /* Isso fará com que todos os cards se expandam para a mesma altura */
}
.text-800080 {
  color: #9400D3;
}
.btn-primary {
  background-color: #6f42c1; /* Roxo elegante */
  color: #fff; /* Texto branco */
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.1s ease;
}

.btn-primary:hover {
  background-color: #5a32a3; /* Roxo mais escuro ao passar o mouse */
  transform: scale(1.02);
}

.btn-primary:active {
  background-color: #4a288b;
  transform: scale(0.98);
}

.btn-primary:disabled {
  background-color: #c1a5e3;
  cursor: not-allowed;
  opacity: 0.6;
}
