* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f6fefb;
  color: #113;
  line-height: 1.6;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  background-color: #e6f5ef;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #0c3d4f;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn {
  background-color: #3bb78f;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #329e77;
}

.hero-image img {
  max-width: 350px;
  border-radius: 10px;
}

.sobre {
  display: flex;
  justify-content: space-between;
  padding: 3rem 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.sobre-texto {
  max-width: 500px;
}

.sobre-texto h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0c3d4f;
}

.sobre-imagem img {
  max-width: 300px;
  border-radius: 12px;
}

.depoimentos {
  padding: 4rem 2rem;
  background-color: #ffffff;
  text-align: center;
}


.depoimentos h2 {
  font-size: 2rem;
  color: #0c3d4f;
  margin-bottom: 2rem;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.card {
  background-color: #e6f5ef;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.card p {
  font-style: italic;
  margin-bottom: 1rem;
}

.card span {
  font-weight: bold;
  color: #3bb78f;
}

.card-img{
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.advantages {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    
  }

  .advantages h2 {
    text-align: center;
  }

/* ... estilos anteriores ... */

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text, .hero-image {
    max-width: 100%;
  }

  .hero-image img {
    max-width: 80%;
    margin-top: 2rem;
  }

  .sobre {
    flex-direction: column-reverse;
    text-align: center;
  }

  .sobre-imagem img {
    max-width: 80%;
    margin-bottom: 2rem;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }
}

.sobre {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 4rem 2rem;
}

.sobre {
    display: flex;
    align-items: center; /* Alinha os itens verticalmente ao centro */
    justify-content: flex-start; /* Alinha os itens à esquerda */
    gap: 2rem; /* Espaçamento entre a imagem e o texto */
    padding: 4rem 2rem;
}

.sobre-imagem {
    flex-shrink: 0; /* Impede que a imagem encolha */
    width: 400px;
}

.sobre-imagem img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.sobre-texto {
    flex-grow: 1; /* Permite que o texto ocupe o espaço restante */
}

.sobre-texto h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}