.glosario-tooltip {
  position: relative;
  cursor: help;
  border-bottom: 1px dotted #fea15a;
}

.glosario-tooltip:hover::after {
  content: attr(data-descripcion) "  → Leer más";
  position: absolute;
  left: 0;
  bottom: 125%;
  background: #222;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  width: 250px;
  font-size: 14px;
  line-height: 1.3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 1000;
}

@media (max-width: 768px) {
  .glosario-tooltip:hover::after {
    position: fixed;
    bottom: 10%;
    left: 10%;
    right: 10%;
    width: auto;
    text-align: center;
    font-size: 15px;
    border-radius: 12px;
  }
}
