/* Barra de compartir */
.aletheia-share {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin: .75rem 0;
}

/* Botones generales */
.aletheia-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: 0.9rem;
  padding: .45rem .75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  border: 1px solid #d0d7de;
  background: #f9fafb;
  color: #111;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.aletheia-btn:hover {
  background: #eef2f7;
  border-color: #c6d0d8;
}
.aletheia-btn i {
  font-size: 1.1em;
}

/* Tamaños opcionales */
.size-sm .aletheia-btn { font-size: 0.8rem; padding: .3rem .55rem; border-radius: 0.4rem; }
.size-lg .aletheia-btn { font-size: 1rem; padding: .55rem .95rem; border-radius: 0.6rem; }

/* Colores de marcas */
.aletheia-btn.whatsapp { border-color: #25d36633; }
.aletheia-btn.whatsapp:hover { background: #25d36611; }
.aletheia-btn.facebook { border-color: #1877f233; }
.aletheia-btn.facebook:hover { background: #1877f211; }
.aletheia-btn.x { border-color: #00000033; }
.aletheia-btn.x:hover { background: #00000011; }
.aletheia-btn.telegram { border-color: #229ed933; }
.aletheia-btn.telegram:hover { background: #229ed911; }
.aletheia-btn.linkedin { border-color: #0a66c233; }
.aletheia-btn.linkedin:hover { background: #0a66c211; }
.aletheia-btn.email { border-color: #6b728033; }
.aletheia-btn.email:hover { background: #6b728011; }

/* Responsive ajustes */
@media (max-width: 480px) {
  .aletheia-share {
    flex-direction: column;
    gap: .6rem;
  }
  .aletheia-btn {
    width: 100%;
    justify-content: center;
  }
}