.garantia-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.garantia-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

/* STATUS */
.garantia-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #2e7d32;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #2e7d32;
  border-radius: 50%;
}

/* SERVIÇO */
.garantia-servico {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

/* INFOS */
.garantia-info {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.garantia-info small {
  font-size: 12px;
  color: #6b7280;
}

.garantia-info strong {
  font-size: 14px;
  color: #111827;
}

/* DIVIDER */
.garantia-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 8px 0;
}

/* CTA */
.garantia-cta {
  margin-top: auto;
  text-align: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: #2563eb;
  border: 1px solid #dbeafe;
  transition: all 0.2s ease;
}

.garantia-cta:hover {
  background: #eff6ff;
}

.garantias-grid {
    justify-content: flex-start;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.status-ativa .status-dot {
  background: #2e7d32;
}

.status-expirada .status-dot {
  background: #9ca3af;
}

.status-expirada {
  opacity: 0.85;
}
