.p-highlight {
  padding: 12px 16px;
  border-left: 4px solid #0d6efd; /* color institucional */
  background-color: rgba(13, 110, 253, 0.05);
  font-size: 1.05rem;
  line-height: 1.6;
}

.p-fade {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.p-keywords span {
  position: relative;
  font-weight: 600;
}

.p-keywords span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #0d6efd;
  transition: width 0.3s ease;
}

.p-keywords span:hover::after {
  width: 100%;
}

.p-card {
  max-width: 700px;
  padding: 16px 20px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  font-size: 1rem;
  line-height: 1.6;
}

.p-guided::after {
  content: " |";
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

.p-clean {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #555;
  max-width: 720px;
}


.blink {
  animation: blink 1s steps(1, start) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}
