.help-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: var(--z-index-tooltip);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.help-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.help-frame {
  background: var(--acento-principal);
  border-radius: 12px;
  padding: 8px;
  max-width: 640px;
  width: 90%;
  max-height: 640px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.help-close {
  position: relative;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blanco-fondo);
  border: solid 1px var(--blanco-fondo);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.help-close svg {
  fill: var(--acento-principal);
}

.help-close:hover {
  background: var(--acento-principal);
  border: solid 1px var(--blanco-fondo);
}

.help-close:hover svg {
  fill: var(--blanco-fondo);
}

.help-modal {
  background: var(--blanco-fondo);
  border-radius: 4px;
  padding: 12px;
  overflow-y: auto;
  flex: 1;
  width: 100%;
  font-family: var(--font-display);
  color: var(--negro-principal);
}

/*estilo de parrafos */

.help-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.help-cat {
  width: 200px;
  margin-bottom: 16px;
}

.help-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--negro-principal);
  line-height: 1;
  letter-spacing: -0.06em;
  text-align: left;
  width: 100%;
}

.help-subtitle {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gris-medio);
  line-height: 1;
  letter-spacing: -0.06em;
  text-align: left;
  width: 100%;
}

.help-section {
  border-top: 1px solid var(--gris-claro);
  padding-top: 12px;
  margin-top: 8px;
  margin-bottom: 24px;
}

.help-section-label {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--negro-principal);
  letter-spacing: -0.02em;
}

.help-item {
  margin-top: 24px;
  margin-bottom: 32px;
}

.help-item-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--gris-medio);
  line-height: 1;
  letter-spacing: -0.06em;
  text-align: left;
  width: 100%;
}

.help-item-text {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gris-medio);
  line-height: 1.2;
  margin-bottom: 4px;
}

.help-item-preview {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
