/* ═══ SERVIÇOS ═══ */
.rg-service{
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; padding: 30px 26px; height: 100%;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.rg-service:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(12,59,34,.12);
  border-color: transparent;
}
.rg-service-ic{
  width: 60px; height: 60px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.7rem;
  color: #fff; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--green), var(--leaf));
  box-shadow: 0 10px 22px rgba(27,138,75,.28);
}
.rg-service h3{ font-size: 1.2rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.rg-service p{ color: var(--muted); margin: 0; line-height: 1.6; }
