#sobre {
  width: 100%;
  /* Alterado de height para min-height para permitir que o conteúdo cresça em telas menores */
  min-height: 100vh;
  height: auto; /* Garante que a altura se ajuste ao conteúdo */
  padding: 10rem 2rem;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--dark-purple);
}

.about-content {
  width: 80%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
}

.about-text {
  width: 90%;
}

.empresaMerce {
  width: 100%;

  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.noMundo {
  font-size: 1.2rem;
}

.cta-button-secondary {
  display: inline-block;
  margin-top: 1.5rem;

  background-color: var(--primary-orange);
  color: var(--light-text);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(126, 34, 206, 0.35);
}

.about-image {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 80%;
  border-radius: 8px;
}
