/* ===================== BUTTONS ===================== */
.btn-pink {
  padding: 0.8rem 1.8rem;
  background: #4e45d5;
  color: #fff;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-pink:hover {
  transform: scale(1.07);
}

/* ===================== HERO SOCIAL ICONS ===================== */
.hero-socials {
  display: flex;
  gap: 18px;
  margin-top: 1.8rem;
}

.hero-socials a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #7b7b7b;
  background: rgba(255,255,255,0.25);
  transition: 0.4s ease;
}

.hero-socials a:hover {
  color: #fff;
}

/* ===================== CARDS ===================== */
.card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}
