.cloud {
  width: 882px;
  height: 302.4px;

  background: linear-gradient(to bottom, #FFE0C6 5%, #F9B88B 100%); /* laranja suave */
  background: -webkit-linear-gradient(top, #FFE0C6 5%, #F9B88B 100%);
  background: -moz-linear-gradient(top, #FFE0C6 5%, #F9B88B 100%);
  background: -ms-linear-gradient(top, #FFE0C6 5%, #F9B88B 100%);
  background: -o-linear-gradient(top, #FFE0C6 5%, #F9B88B 100%);

  border-radius: 252px;
  position: relative;
  margin: 120px auto 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Bolotas (mesma cor do fundo da nuvem) */
.cloud:after,
.cloud:before {
  content: '';
  position: absolute;
  background: #F9B88B;
  z-index: -1;
}

.cloud:after {
  width: 252px;
  height: 252px;
  top: -126px;
  left: 126px;
  border-radius: 252px;
}

.cloud:before {
  width: 453.6px;
  height: 453.6px;
  top: -226.8px;
  right: 126px;
  border-radius: 507.6px;
}

.titulo-sobre {
  font-size: 2rem;
  color: #DD8240; /* mantém destaque laranja */
  font-weight: bold;
  margin-bottom: 1.2rem;
}

.descricao-sobre {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #333;
}
