/* === Grid e Cards de Serviços === */
.services-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-image {
  flex-shrink: 0;
  width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image img {
  max-width: 100%;
  height: auto;
}

.service-text {
  flex: 1;
}

.service-text h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.service-text p {
  margin: 0;
  line-height: 1.6;
  color: #333;
}

/* == Desktop: força 2 colunas == */
@media (min-width: 769px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === Ajustes SÓ para Mobile (<768px) === */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem 0;
    margin-top: 1.5rem;
  }

  .service-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    box-sizing: border-box;
  }

  .service-image {
    width: 6rem;
    margin-bottom: 1rem;
  }
  .service-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  html, body {
    overflow-x: hidden;
  }
}