/* ============================================================
   Partners Portal · invite-wizard.css · P01 · 06/06/2026
   Secciones colapsables con toggles para el wizard de invitación
   ============================================================ */

/* ── Subtítulo ─────────────────────────────────────────────── */
.iw-subtitle {
  font-size: 13px;
  color: var(--text3);
  margin: -4px 0 14px;
  line-height: 1.4;
}

/* ── Sección ───────────────────────────────────────────────── */
.iw-sec {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.iw-sec-open { border-color: var(--accent, #2d6a38); }
.iw-sec-optional { border-style: dashed; }
.iw-sec-optional.iw-sec-open { border-style: solid; }

/* Head clickable */
.iw-sec-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  cursor: pointer;
  user-select: none;
  background: var(--bg3, #f8f8f8);
  transition: background 0.15s;
}
.iw-sec-head:hover { background: var(--bg2); }
.iw-sec-open .iw-sec-head { background: rgba(45, 106, 56, 0.06); }

.iw-sec-title {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--text1);
}
.iw-sec-arrow {
  font-size: 14px;
  color: var(--text3);
  flex-shrink: 0;
}

/* Body */
.iw-sec-body {
  padding: 12px 14px 14px;
}

/* ── Toggle switch ─────────────────────────────────────────── */
.iw-toggle {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
  cursor: pointer;
}
.iw-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.iw-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border, #ccc);
  border-radius: 20px;
  transition: background 0.2s;
}
.iw-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 2px;
  top: 2px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.iw-toggle input:checked + .iw-toggle-slider {
  background: var(--accent, #2d6a38);
}
.iw-toggle input:checked + .iw-toggle-slider::before {
  transform: translateX(16px);
}

/* ── Nota interna ──────────────────────────────────────────── */
.iw-note {
  font-size: 11px;
  color: var(--text3);
  margin: 4px 0 8px;
  line-height: 1.4;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 600px) {
  .iw-sec-body { padding: 10px 10px 12px; }
}
