/* ─── LOGO MARK ─────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
}

.logo-mark {
  font-family: var(--heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
}

.logo-mark::before {
  content: '';
  position: absolute;
  left: 2px;
  top: -6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
}

/* ─── WHATSAPP FLOTANTE ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* ─── TAG / BADGE ───────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--light);
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
