/* Container principal */
.text{
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 32px);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #1f2937;              /* cinza-escuro elegante */
  line-height: 1.7;
  font-size: 16px;
  background: #ffffff;
}

/* Títulos das seções */
.text h2{
  font-size: clamp(1.15rem, 1.2vw + 0.9rem, 1.5rem);
  font-weight: 700;
  color: #0f172a;              /* quase preto */
  margin: 26px 0 10px;
  padding-left: 12px;
  border-left: 4px solid #e5e7eb;  /* detalhe minimalista */
  letter-spacing: 0.2px;
}

/* Parágrafos */
.text p{
  margin: 8px 0 12px;
  color: #374151;
}

/* Listas */
.text ul{
  list-style: none;
  padding-left: 0;
  margin: 0 0 14px;
}

.text ul li{
  position: relative;
  padding-left: 22px;
  margin: 6px 0;
  color: #374151;
}

/* Bullet custom discreto */
.text ul li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;         /* cinza clarinho */
  transform: translateY(-50%);
}

/* Links */
.text a{
  color: #0ea5e9;              /* azul moderno */
  text-decoration: none;
  font-weight: 600;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.text a:hover{
  color: #0284c7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Destaque para bloco de contato (último p) */
.text h2 + p + p{
  background: #f9fafb;
  border: 1px solid #eef2f7;
  padding: 14px 16px;
  border-radius: 10px;
  color: #111827;
}

/* Separação sutil entre seções */
.text h2:not(:first-of-type){
  scroll-margin-top: 90px;
}

/* Responsivo */
@media (max-width: 600px){
  .text{
    font-size: 15px;
    line-height: 1.75;
  }

  .text h2{
    margin-top: 22px;
  }
}
