.servicos {
  position: relative;
  padding: 40px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, #020817 0%, #030b1b 100%);
}

.servicos::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(17, 150, 243, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(17, 150, 243, 0.04), transparent 35%);
}

.section-header {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 55px;
  text-align: center;
}

.section-header .eyebrow {
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.section-header h2 {
  max-width: 760px;
  margin: 0;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
}

.lista__servicos {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 170px;
  align-items: center;
  gap: 28px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(17, 150, 243, 0.10);
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(5, 14, 32, 0.98),
      rgba(2, 8, 20, 0.98)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    inset 0 0 18px rgba(17, 150, 243, 0.015),
    0 8px 26px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .7;
  background:
    linear-gradient(
      90deg,
      rgba(17, 150, 243, 0.025),
      transparent 35%
    );
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 150, 243, 0.18);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(17, 150, 243, 0.05);
}

.service-icon {
  display: flex;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid rgba(17, 150, 243, 0.10);
  border-radius: 30px;
  background:
    linear-gradient(
      145deg,
      rgba(8, 25, 52, 0.96),
      rgba(4, 13, 30, 0.96)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    inset 0 0 10px rgba(17, 150, 243, 0.02),
    0 0 14px rgba(17, 150, 243, 0.035);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-icon img {
  width: 115px;
  height: 115px;
  max-width: unset;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(17, 150, 243, 0.18));
}

.service-card:hover .service-icon {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(17, 150, 243, 0.18);
  box-shadow:
    0 0 18px rgba(17, 150, 243, 0.06),
    0 0 34px rgba(17, 150, 243, 0.025);
}

.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-content h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.service-content p {
  max-width: 300px;
  font-size: 0.96rem;
  line-height: 1.7;
}

@media (max-width: 1200px) {
  .lista__servicos {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .servicos {
    padding: 80px 0;
  }

  .section-header h2 {
    font-size: 2rem;
    line-height: 1.15;
    letter-spacing: -1px;
  }

  .lista__servicos {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    gap: 20px;
    padding: 24px;
  }

  .service-icon {
    width: 115px;
    height: 115px;
    border-radius: 24px;
  }

  .service-icon img {
    width: 115px;
    height: 115px;
  }

  .service-content h3 {
    font-size: 1rem;
  }

  .service-content p {
    font-size: 0.88rem;
    line-height: 1.6;
  }
}
