/* Módulo Accordion */

.menu2-accordion {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu2-section {
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  background: #f9fafb;
  margin-bottom: 18px;
}

.menu2-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  cursor: pointer;
  background: #f3f4f6;
  width: 100%;
  box-sizing: border-box;
}

.menu2-section-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.menu2-section-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.menu2-section-title {
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 600;
  color: #111827;
}

.menu2-section-subtitle {
  font-size: .8rem;
  color: #6b7280;
}

.menu2-section-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  margin-right: 8px;
  flex: 0 0 26px;
}

.menu2-section-toggle {
  font-size: 1.3rem;
  transition: transform .2s;
  color: #6b7280;
  flex: 0 0 auto;
  line-height: 1;
}

.menu2-section.open .menu2-section-toggle {
  transform: rotate(90deg);
}

.menu2-section-body {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  transition: max-height .25s ease;
}

.menu2-section.open .menu2-section-body {
  max-height: none;
}

.menu2-section-body-inner {
  padding: 10px 12px 12px;
  background: #ffffff;
}

.menu2-sub-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu2-sub-section {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  background: #f9fafb;
}

.menu2-sub-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 7px 9px;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  background: #f9fafb;
}

.menu2-sub-title {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  color: #111827;
}

.menu2-sub-note {
  font-size: .75rem;
  color: #6b7280;
}

.menu2-sub-toggle {
  font-size: 1.1rem;
  color: #6b7280;
  transition: transform .2s;
  flex: 0 0 auto;
  line-height: 1;
}

.menu2-sub-section.open .menu2-sub-toggle {
  transform: rotate(90deg);
}

.menu2-sub-body {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height .25s ease;
}

.menu2-sub-section.open .menu2-sub-body {
  max-height: none;
}