/* ============================================
   LANA AUTOMOTIVA — Serviços Hero (Section 2)
   3 cards horizontais: ícone 3D + título + desc + link
   ============================================ */

.servicos-hero {
  width: 100%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

@media (max-width: 1280px) {
  .servicos-hero {
    padding: 0 var(--space-6) 48px;
  }
}

@media (max-width: 767px) {
  .servicos-hero {
    padding: var(--space-8) var(--space-4);
  }
}

/* ── Inner row: 3 cards ── */

.servicos-hero__grid {
  width: 100%;
  max-width: var(--container-max);
  display: flex;
  gap: 32px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .servicos-hero__grid {
    flex-direction: column;
    gap: var(--space-4);
  }
}

/* ══════════════════════════════════════════
   Card
   ══════════════════════════════════════════ */

.servicos-card {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: rgba(54, 57, 58, 0.02);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.servicos-card:hover {
  border-color: var(--color-neutral-100);
}

/* ── Card image ── */

.servicos-card__img-wrap {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.servicos-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── Card body ── */

.servicos-card__body {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.servicos-card__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  /* 16px */
  font-weight: var(--font-medium);
  line-height: 1.4;
  color: var(--color-blue-brand-600);
  white-space: nowrap;
}

.servicos-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  /* 14px */
  font-weight: var(--font-regular);
  line-height: 1.5;
  color: var(--color-neutral-400);
}

/* ── Card CTA row ── */

.servicos-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 6px 0;
  text-decoration: none;
}

.servicos-card__cta-label {
  font-family: var(--font-body);
  font-size: var(--text-base);
  /* 16px */
  font-weight: var(--font-medium);
  line-height: 1.3;
  color: var(--color-blue-brand-600);
  white-space: nowrap;
}

.servicos-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--color-blue-brand-600);
  border-radius: 8px;
  flex-shrink: 0;
}

.servicos-card__arrow svg {
  width: 12.5px;
  height: 12.5px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.servicos-card:hover .servicos-card__arrow svg {
  transform: translate(2px, -2px);
}