  .hero {
      background: linear-gradient(to right, #6a11cb, #2575fc);
      color: white;
      padding: 60px 20px;
      text-align: center;
  }

  .benefits img {
      max-width: 100%;
  }

  .testimonials {
      background: #f8f9fa;
      padding: 40px 20px;
  }

  .cta-bottom {
      background: #2575fc;
      color: white;
      padding: 50px 20px;
      text-align: center;
  }

  .cta a {
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  padding: 15px 30px;
  color: #242222;
  background-color: aliceblue;
  margin: 10px 10px 0 10px;
  transition: all 0.3s ease; 
}

.cta a:hover {
  color: #f7f3f3;
  background-color: #03050a;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

  .statistics span {
      font-size: x-large;
      font-weight: 600;
  }

  li {
    padding: 10px;
  }

   .footer {
    background-color: #f8f9fa; /* Cor de fundo suave */
    padding: 20px 0;
    margin-top: 40px; /* Espaço acima do footer */
    border-top: 1px solid #e9ecef; /* Linha separadora */
  }

  .footer .container {
    display: flex;
    flex-direction: row; /* Elementos em linha */
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Alinha verticalmente */
    gap: 30px; /* Espaço entre os elementos */
    flex-wrap: wrap; /* Permite quebra de linha em telas pequenas */
  }

  .footer p {
    margin: 0; 
    color: #2a2e31;
    font-size: 0.9rem;
  }

  .footer a {
    color: #0b58ca; 
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer a:hover {
    color: #08449e; 
    text-decoration: underline;
  }

  /* Responsividade para mobile */
  @media (max-width: 576px) {
    .footer .container {
      flex-direction: column;
      gap: 10px;
    }
  }