.units {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3),
    rgba(238, 244, 250, 0.65)
  );
}
.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.unit-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 22px;
  padding: 22px;
  transition: 0.28s ease;
}
.unit-card:hover {
  transform: translateY(-6px);
}
.unit-phone {
  cursor: pointer;
}
.unit-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.unit-number {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff3da, #ffe7b1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amarelo-escuro);
  font-weight: 800;
  flex: 0 0 auto;
}
.unit-card h3 {
  color: var(--azul-escuro);
  font-size: 1.08rem;
}
.unit-card p {
  width: 100%;
  color: var(--texto-suave);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.unit-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.unit-phone {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef3ff;
  color: var(--azul-escuro);
  font-weight: 700;
  font-size: 0.9rem;
}
