.sobre {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: min(1090px, calc(100% - 32px));
  padding: 32px;
  margin: 100px auto;
  border: 1px solid #1847c7;
  background-color: aliceblue;
  border-radius: 20px;
}

.sobre p {
  color: #1847c7;
  width: 100%;
  max-width: 72ch;
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  line-height: 1.7;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
  text-align: left;
  overflow-wrap: break-word;
}

.sobre a {
  text-decoration: none;
  color: blueviolet;
  background: turquoise;
  padding: 8px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.sobre a:hover {
  color: #ffffff;
  text-decoration: wavy;
  background: #1847c7;
  border-radius: 20px;
}

@media (max-width: 1100px) {
  .sobre {
    width: min(100%, calc(100% - 24px));
    padding: 24px;
    margin: 50px auto;
  }

  .sobre p {
    font-size: clamp(1rem, 2.2vw, 1.12rem);
    line-height: 1.65;
  }
}

@media (max-width: 640px) {
  .sobre {
    width: calc(100% - 16px);
    padding: 18px 14px;
    border-radius: 14px;
    margin: 30px auto;
    gap: 14px;
  }

  .sobre h1 {
    font-size: clamp(1.4rem, 6.5vw, 1.9rem);
    text-align: center;
  }

  .sobre p {
    font-size: 0.98rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 4px;
  }

  .sobre a {
    width: 100%;
    font-size: 0.95rem;
  }
}