/* ===== Serviços ===== */
.services {
  padding: 100px 20px;
  text-align: center;
  color: #000;
  background: #fff;
}

.services-header {
  margin-bottom: 60px;
}

.services-logo {
  max-width: 220px;
  margin: 0 auto;
  display: block;
}

/* Grid responsivo e organizado */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px; /* mais espaçamento entre os cards */
  max-width: 1200px;
  margin: 0 auto;
  align-items: start; /* garante alinhamento uniforme */
}

.service-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  padding: 10px;
}

/* Títulos maiores e responsivos */
.service-item h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  line-height: 1.3;
}

/* Texto com melhor legibilidade */
.service-item p {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto;
}
