/* ============================================
   AYUDA VISOR PAGE
   ============================================ */

/* Hero decoratives */
.sun--av   { width: 240px; height: 240px; top: -60px; right: -50px; opacity: 0.7; }
.cloud--av { width: 280px; bottom: 0; left: -30px; }

/* Guide text */
.guide-intro { color: var(--gray-600); margin-bottom: 1.5rem; font-size: 0.95rem; }
.help-cta-note { margin-top: 1rem; font-size: 0.8rem; color: var(--gray-600); }

.help-hero {
  padding: 5rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.help-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.help-hero-sub {
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

/* ===== GUIDE LAYOUT ===== */
.help-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 1.5rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ===== QUICK NAV (table of contents) ===== */
.help-toc {
  padding: 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.help-toc-title {
  width: 100%;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.toc-link {
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 999px;
  padding: 0.3rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: background 0.2s;
}

.toc-link:hover {
  background: rgba(37,99,235,0.15);
}

/* ===== GUIDE SECTION ===== */
.guide-section {
  scroll-margin-top: 6rem;
}

.guide-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.guide-section-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  background: rgba(245,158,11,0.15);
}

.guide-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--navy);
}

/* ===== REQUIREMENTS ===== */
.req-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.req-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}

.req-chip-icon {
  font-size: 1.1rem;
}

/* ===== STEPS ===== */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-md);
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  font-family: var(--font-display);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.step-body {}

.step-body > strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.step-body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

.step-body a {
  color: var(--blue);
  text-decoration: underline;
  font-weight: 600;
}

/* Substeps */
.step-substeps {
  margin-top: 0.75rem;
  padding-left: 0.75rem;
  border-left: 2px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.step-substep {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ===== DIVIDER ===== */
.guide-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 1rem 0;
}

/* ===== INFO BOX ===== */
.info-box {
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.6;
}

.info-box-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ===== WARNING BOX ===== */
.warning-box {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.6;
}

/* ===== NEED HELP CTA ===== */
.help-cta {
  text-align: center;
  padding: 2.5rem;
}

.help-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.help-cta p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.help-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
