/* ===== CONTENEDOR ===== */
.contenido {
  max-width: 100%;
  margin: 1px auto;
  padding: 0 20px;
  text-align: justify;
}

.contenido p {
  text-align: justify;
  text-justify: inter-word;
  overflow-wrap: break-word;
}

/* ===== TITULO ===== */
.contenido h2 {
  text-align: center;
  color: #bfa23a;
  font-family: Papyrus, fantasy;
}

/* ===== TOOLTIP UNIVERSAL (DW + NAVEGADOR) ===== */
.tooltip {
  cursor: pointer;
  text-decoration: underline dotted;
  text-underline-offset: 2px;
  display: inline;
}

/* texto del tooltip */
.tooltip .tooltiptext {
  display: inline;        /* siempre visible → DW OK */
  font-size: 11px;
  line-height: 1.4em;
  color: #ccc;
  margin-left: 5px;
}

/* ===== CITAS ===== */
sup {
  font-size: 0.75em;
}

/* ===== REFERENCIAS ===== */
#referencias {
  margin-top: 20px;
  font-size: 0.9em;
  color: #ccc;
}

#referencias p {
  text-align: left;
  margin-bottom: 6px;
  line-height: 1.4em;
}

#referencias a {
  text-decoration: none;
  margin-left: 5px;
  color: #aaa;
}

/* ===== IMAGEN EFECTO ===== */
.imagen-efecto {
  border: 1px solid #F40004;
  transition: opacity 0.1s ease-in-out;
}

.imagen-efecto:hover {
  animation: titileo 0.5s infinite alternate;
}

@keyframes titileo {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

/* ===== CONTENEDOR EXTRA ===== */
.contenedor {
  text-align: center;
  margin-top: 20px;
}

.titulo {
  margin-top: 10px;
}