.feature-text {
    max-width: 100%;
    border-radius: 20px;
    height: auto;
    padding: 32px 24px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .feature-text p{
    color: white;
  }

  .feature-text{
    color: #024248;
  }

  .image-bg{
    max-width: 100%;
    padding: 32px;
    border-radius: 20px;
    height: auto;
    background-size: cover;
    background-position: center;
  }
  
  .wrapper-grid-feature{
    max-width: 1142px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 2rem 0;
    gap: 24px;
  }


  /* Estilização para links dentro da classe feature-text */
.feature-text a {
  color: white !important;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

/* Adiciona ícone específico depois do texto */
.feature-text a::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f138"; /* fa-solid fa-circle-chevron-right */
  margin-left: 8px;
  font-size: 1em;
}

/* Hover effect */
.feature-text a:hover {
  color: #f8f9fa !important;
  text-decoration: underline;
  transform: translateX(3px);
}

/* Animação do ícone no hover */
.feature-text a:hover::after {
  transform: translateX(2px);
  transition: transform 0.3s ease;
}

  .h2-feature{
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    color: #D6F9F8;
  }

  .p-feature{
    font-size: 16px;
    font-weight: 400;
    color: white;
  }

  .p{
    margin: 0;
    color: white;
  }

  @media (max-width: 768px){
    .wrapper-grid-feature{
      margin: auto;
      display: grid;
      grid-template-columns: 1fr;
      padding: 0;
      gap: 24px;
      margin-top: 40px;
      margin-bottom: 40px;
    }

    .image-bg{
      height: 300px;
      margin-top: 30px;
    }

    .h2-feature{
      font-size: 32px;
    }

    .feature-text {
      max-width: 100%;
      border-radius: 20px;
      min-height: 300px;
      height: auto;
      padding: 32px 24px;
      color: white;
    }
  }