/* Botón de Acción Principal (Píldora Spider-Man Style pero con Rosa) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--brand-pink);
  color: var(--text-inverse);
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  min-height: 50px;
  box-shadow: var(--shadow-raised);
}

.btn-primary:hover {
  background: var(--brand-pink-hover);
  box-shadow: var(--shadow-floating);
  transform: translateY(-4px);
}

.btn-primary:active {
  transform: translateY(0) scale(0.95);
  box-shadow: var(--shadow-raised);
}

/* Botón Fantasma / Outline */
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  padding: 12px 32px;
  border-radius: var(--radius-pill); /* Uniformizado con btn-primary */
  border: 2px solid var(--border-light);
  min-height: 50px;
}

.btn-ghost:hover {
  background: var(--bg-secondary);
  border-color: var(--brand-night);
  color: var(--brand-night);
}

/* Botones Iconos Sociales Circulares */
.btn-icon {
  background: var(--bg-primary);
  color: var(--text-primary);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-circle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-raised);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
  color: var(--brand-night);
}

.btn-icon:hover {
  background: var(--brand-pink);
  color: var(--text-inverse);
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px) scale(1.05);
  border-color: var(--brand-pink);
}
