.mml-app,
.mml-site-menu {
  --mml-blue: #2f6df6;
  --mml-blue-dark: #1f55d8;
  --mml-bg: #f7f9fc;
  --mml-card: #ffffff;
  --mml-border: #dfe6f0;
  --mml-text: #071833;
  --mml-muted: #5c6f8a;
  --mml-soft: #f3f6fb;
  box-sizing: border-box;
}

/* Mobile 1.1.7: um unico botao fixo no rodape e menu pela esquerda. */
@media (max-width: 900px) {
  body .mml-app,
  body .mml-app.is-menu-hidden-after-select {
    background: #f8fafc !important;
    display: block !important;
    grid-template-columns: none !important;
    min-height: auto !important;
    padding: 0 0 76px !important;
    width: 100% !important;
  }

  body .mml-app .mml-mobile-toggle {
    align-items: center !important;
    background: #3478f6 !important;
    border: 0 !important;
    border-radius: 999px !important;
    bottom: 18px !important;
    box-shadow: 0 14px 28px rgba(52, 120, 246, 0.34) !important;
    color: #fff !important;
    display: inline-flex !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    gap: 8px !important;
    height: 54px !important;
    justify-content: center !important;
    left: 50% !important;
    margin: 0 !important;
    min-height: 54px !important;
    padding: 0 20px !important;
    position: fixed !important;
    right: auto !important;
    top: auto !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    z-index: 100010 !important;
  }

  body .mml-app .mml-mobile-toggle::before {
    content: "\f102" !important;
    display: inline-block !important;
    font-family: dashicons !important;
    font-size: 21px !important;
    font-weight: 400 !important;
    height: 21px !important;
    line-height: 1 !important;
    width: 21px !important;
  }

  body .mml-app .mml-mobile-toggle::after {
    content: "" !important;
    display: inline !important;
    font-size: 14px !important;
    font-weight: 900 !important;
  }

  body .mml-app .mml-mobile-toggle span,
  body .mml-app .mml-mobile-toggle span::before,
  body .mml-app .mml-mobile-toggle span::after {
    display: none !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-mobile-toggle {
    display: inline-flex !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-menu-return {
    display: none !important;
  }

  body .mml-app .mml-mobile-backdrop {
    background: transparent !important;
    border: 0 !important;
    bottom: 0 !important;
    display: block !important;
    left: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: fixed !important;
    right: 0 !important;
    top: 0 !important;
    visibility: hidden !important;
    z-index: 100000 !important;
  }

  body .mml-app.is-menu-open .mml-mobile-backdrop {
    background: rgba(6, 20, 47, 0.42) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
  }

  body .mml-app .mml-app-sidebar,
  body .mml-app.is-menu-hidden-after-select .mml-app-sidebar {
    background: #fff !important;
    border: 0 !important;
    border-right: 1px solid #e4e9f2 !important;
    border-radius: 0 !important;
    bottom: 0 !important;
    box-shadow: 18px 0 36px rgba(6, 20, 47, 0.22) !important;
    display: block !important;
    left: 0 !important;
    margin: 0 !important;
    max-width: 330px !important;
    min-height: 100vh !important;
    opacity: 1 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    padding: 28px 18px 92px !important;
    pointer-events: auto !important;
    position: fixed !important;
    right: auto !important;
    top: 0 !important;
    transform: translateX(-105%) !important;
    transition: transform 220ms ease !important;
    visibility: visible !important;
    width: min(86vw, 330px) !important;
    z-index: 100002 !important;
  }

  body .mml-app.is-menu-open .mml-app-sidebar,
  body .mml-app.is-menu-hidden-after-select.is-menu-open .mml-app-sidebar {
    transform: translateX(0) !important;
  }

  body .mml-app .mml-app-sidebar .mml-sidebar-hide {
    display: none !important;
  }

  body .mml-app .mml-app-content {
    padding: 16px !important;
    padding-top: 8px !important;
  }
}

.mml-app *,
.mml-site-menu * {
  box-sizing: border-box;
}

.mml-app {
  align-items: start;
  background: var(--mml-bg);
  display: grid;
  gap: 48px;
  grid-template-columns: 280px minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1196px;
  min-height: 620px;
  padding: 56px 24px;
  position: relative;
  transition: grid-template-columns 180ms ease;
}

.mml-app.is-menu-collapsed {
  grid-template-columns: 58px minmax(0, 1fr);
}

.mml-app-sidebar {
  background: var(--mml-card);
  border: 1px solid var(--mml-border);
  border-radius: 0;
  box-shadow: 0 16px 34px rgba(25, 43, 77, 0.06);
  min-width: 0;
  overflow: hidden;
  padding: 24px;
  position: sticky;
  top: 24px;
}

.mml-sidebar-head {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 22px;
}

.mml-sidebar-head strong {
  color: var(--mml-text);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
}

.mml-sidebar-hide {
  align-items: center;
  background: var(--mml-blue);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(47, 109, 246, 0.25);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 34px;
  height: 34px;
  justify-content: center;
  padding: 0;
  transition: background 160ms ease, transform 160ms ease;
  width: 34px;
}

.mml-sidebar-hide::before {
  border-color: #fff;
  border-style: solid;
  border-width: 0 2px 2px 0;
  content: "";
  height: 8px;
  margin-left: 3px;
  transform: rotate(135deg);
  width: 8px;
}

.mml-sidebar-hide:hover {
  background: var(--mml-blue-dark);
  transform: translateY(-1px);
}

.mml-sidebar-search {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.mml-sidebar-search span {
  color: var(--mml-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mml-sidebar-search input {
  appearance: none;
  background: var(--mml-card);
  border: 1px solid var(--mml-border);
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(25, 43, 77, 0.04);
  color: var(--mml-text);
  font: inherit;
  min-height: 44px;
  outline: none;
  padding: 0 14px;
  width: 100%;
}

.mml-sidebar-search input:focus {
  border-color: var(--mml-blue);
  box-shadow: 0 0 0 3px rgba(47, 109, 246, 0.14);
}

.mml-sidebar-scroll {
  max-height: calc(100vh - 220px);
  overflow: auto;
  padding-right: 2px;
}

.mml-app-content {
  min-width: 0;
}

.mml-page-panel {
  display: none;
}

.mml-page-panel.is-active {
  display: block;
}

.mml-welcome-panel {
  min-height: 520px;
}

.mml-welcome-inner {
  align-items: flex-start;
  background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
  border: 1px solid #dfe6f0;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(25, 43, 77, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  padding: clamp(28px, 5vw, 64px);
}

.mml-welcome-kicker {
  background: #eaf1ff;
  border: 1px solid #cfe0ff;
  border-radius: 999px;
  color: #2f6df6;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding: 8px 14px;
  text-transform: uppercase;
}

.mml-welcome-inner h1 {
  color: #06142f;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 18px;
  max-width: 820px;
}

.mml-welcome-inner p {
  color: #52657f;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  max-width: 760px;
}

.mml-welcome-actions {
  align-items: center;
  background: #3478f6;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(52, 120, 246, 0.24);
  color: #fff;
  display: inline-flex;
  gap: 10px;
  margin-top: 30px;
  min-height: 50px;
  padding: 0 18px;
}

.mml-welcome-actions .dashicons {
  font-size: 19px;
  height: 19px;
  width: 19px;
}

.mml-welcome-actions strong {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.mml-site-menu {
  background: var(--mml-card);
  border: 1px solid var(--mml-border);
  border-radius: 18px;
  padding: 18px;
}

.mml-site-menu ul,
.mml-app-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mml-site-menu li,
.mml-app-sidebar li {
  margin: 0;
}

.mml-site-menu a,
.mml-site-menu button,
.mml-app-sidebar a,
.mml-app-sidebar button {
  align-items: center;
  background: var(--mml-card);
  border: 1px solid var(--mml-border);
  border-radius: 14px;
  box-shadow: 0 7px 16px rgba(25, 43, 77, 0.045);
  color: var(--mml-muted);
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
  line-height: 1.2;
  margin-bottom: 8px;
  min-height: 48px;
  padding: 12px 15px;
  text-align: left;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  width: 100%;
}

.mml-site-menu a:hover,
.mml-site-menu button:hover,
.mml-app-sidebar a:hover,
.mml-app-sidebar button:hover {
  border-color: #cbd6e6;
  color: var(--mml-text);
  transform: translateY(-1px);
}

.mml-site-menu a.is-active,
.mml-app-sidebar a.is-active {
  background: var(--mml-blue);
  border-color: var(--mml-blue);
  box-shadow: 0 12px 24px rgba(47, 109, 246, 0.28);
  color: #fff;
}

.mml-folder > button {
  justify-content: space-between;
}

.mml-folder > button::after,
.mml-page.mml-has-children > a::after {
  border-color: currentColor;
  border-style: solid;
  border-width: 0 2px 2px 0;
  content: "";
  height: 7px;
  margin-left: auto;
  transform: rotate(45deg);
  transition: transform 160ms ease;
  width: 7px;
}

.mml-folder.is-open > button::after,
.mml-page.mml-has-children.is-open > a::after {
  transform: rotate(-135deg);
}

.mml-folder > ul,
.mml-page > ul {
  display: none;
  margin: -2px 0 8px 12px;
  padding-left: 14px;
  position: relative;
}

.mml-folder.is-open > ul,
.mml-page.is-open > ul {
  display: block;
}

.mml-folder > ul::before,
.mml-page > ul::before {
  background: var(--mml-border);
  bottom: 12px;
  content: "";
  left: 0;
  position: absolute;
  top: 4px;
  width: 1px;
}

.mml-folder > ul a,
.mml-folder > ul button,
.mml-page > ul a,
.mml-page > ul button {
  min-height: 42px;
  padding-bottom: 10px;
  padding-top: 10px;
}

.mml-icon {
  color: currentColor;
  display: inline-flex;
  min-width: 18px;
}

.mml-mobile-toggle {
  display: none;
}

.mml-mobile-backdrop {
  display: none;
}

.mml-menu-return {
  display: none;
}

.mml-filter-hidden {
  display: none !important;
}

.mml-error {
  background: #fff5f5;
  border-left: 4px solid #d63638;
  padding: 12px;
}

.mml-wp-page-frame {
  background: #fff;
  border: 0;
  display: block;
  min-height: 100vh;
  width: 100%;
}

.mml-app.has-wp-page-frame {
  gap: 0;
  padding: 0;
}

.mml-app.has-wp-page-frame .mml-app-content,
.mml-app.has-wp-page-frame .mml-page-panel.is-active {
  margin: 0;
  padding: 0;
}

.mml-app.is-menu-collapsed .mml-app-sidebar {
  padding: 12px;
}

.mml-app.is-menu-collapsed .mml-sidebar-head {
  justify-content: center;
  margin-bottom: 0;
}

.mml-app.is-menu-collapsed .mml-sidebar-head strong,
.mml-app.is-menu-collapsed .mml-sidebar-search,
.mml-app.is-menu-collapsed .mml-sidebar-scroll {
  display: none;
}

.mml-app.is-menu-collapsed .mml-sidebar-hide::before {
  margin-left: -3px;
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .mml-app {
    display: block;
    padding: 0;
  }

  .mml-mobile-toggle {
    align-items: center;
    background: var(--mml-blue);
    border: 0;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(47, 109, 246, 0.22);
    color: #fff;
    display: flex;
    font: inherit;
    font-weight: 800;
    gap: 10px;
    justify-content: center;
    margin: 16px;
    min-height: 46px;
    padding: 10px 14px;
    width: calc(100% - 32px);
  }

  .mml-mobile-toggle span,
  .mml-mobile-toggle span::before,
  .mml-mobile-toggle span::after {
    background: currentColor;
    border-radius: 2px;
    content: "";
    display: block;
    height: 2px;
    width: 18px;
  }

  .mml-mobile-toggle span {
    position: relative;
  }

  .mml-mobile-toggle span::before,
  .mml-mobile-toggle span::after {
    left: 0;
    position: absolute;
  }

  .mml-mobile-toggle span::before {
    top: -6px;
  }

  .mml-mobile-toggle span::after {
    top: 6px;
  }

  .mml-app-sidebar {
    border-radius: 0 0 18px 18px;
    display: none;
    margin: 0 16px 18px;
    padding: 18px;
    position: static;
  }

  .mml-app.is-menu-open .mml-app-sidebar {
    display: block;
  }

  .mml-sidebar-head {
    margin-bottom: 14px;
  }

  .mml-sidebar-head strong {
    font-size: 21px;
  }

  .mml-sidebar-hide {
    display: none;
  }

  .mml-sidebar-scroll {
    max-height: none;
  }

  .mml-app-content {
    padding: 16px;
  }
}

@media (max-width: 900px) {
  body.mml-mobile-menu-open {
    overflow: hidden !important;
  }

  body .mml-app {
    background: #f8fafc !important;
    display: block !important;
    min-height: auto !important;
    padding: 0 !important;
  }

  body .mml-app .mml-mobile-toggle {
    align-items: center !important;
    background: #3478f6 !important;
    border: 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 22px rgba(52, 120, 246, 0.24) !important;
    color: #fff !important;
    display: inline-flex !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    gap: 10px !important;
    height: 46px !important;
    justify-content: center !important;
    margin: 14px 16px 14px auto !important;
    min-height: 46px !important;
    padding: 0 16px !important;
    position: sticky !important;
    top: 10px !important;
    width: auto !important;
    z-index: 100001 !important;
  }

  body .mml-app .mml-mobile-backdrop {
    background: rgba(6, 20, 47, 0.48) !important;
    border: 0 !important;
    bottom: 0 !important;
    display: block !important;
    left: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: fixed !important;
    right: 0 !important;
    top: 0 !important;
    transition: opacity 180ms ease !important;
    z-index: 100000 !important;
  }

  body .mml-app.is-menu-open .mml-mobile-backdrop {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  body .mml-app .mml-app-sidebar {
    background: #fff !important;
    border: 0 !important;
    border-radius: 0 !important;
    bottom: 0 !important;
    box-shadow: -18px 0 36px rgba(6, 20, 47, 0.22) !important;
    display: block !important;
    left: auto !important;
    margin: 0 !important;
    max-width: 320px !important;
    overflow-y: auto !important;
    padding: 28px 18px 22px !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    transform: translateX(105%) !important;
    transition: transform 220ms ease !important;
    width: min(84vw, 320px) !important;
    z-index: 100002 !important;
  }

  body .mml-app.is-menu-open .mml-app-sidebar {
    transform: translateX(0) !important;
  }

  body .mml-app .mml-sidebar-head {
    margin-bottom: 22px !important;
  }

  body .mml-app .mml-sidebar-head strong {
    font-size: 23px !important;
  }

  body .mml-app .mml-app-sidebar .mml-sidebar-hide {
    display: none !important;
  }

  body .mml-app .mml-sidebar-scroll {
    max-height: none !important;
    overflow: visible !important;
  }

  body .mml-app .mml-app-content {
    padding: 16px !important;
  }
}

body .mml-app {
  align-items: start !important;
  background: #f7f9fc !important;
  border: 0 !important;
  display: grid !important;
  gap: 48px !important;
  grid-template-columns: 280px minmax(0, 1fr) !important;
  margin: 0 auto !important;
  max-width: 1196px !important;
  min-height: 620px !important;
  padding: 56px 24px !important;
  width: 100% !important;
}

body .mml-app.is-menu-collapsed {
  grid-template-columns: 58px minmax(0, 1fr) !important;
}

body .mml-app .mml-app-sidebar {
  background: #fff !important;
  border: 1px solid #dfe6f0 !important;
  border-radius: 18px !important;
  box-shadow: 0 16px 34px rgba(25, 43, 77, 0.08) !important;
  margin: 0 !important;
  max-width: 280px !important;
  min-width: 0 !important;
  overflow: hidden !important;
  padding: 24px !important;
  position: sticky !important;
  top: 24px !important;
  width: 280px !important;
}

body .mml-app .mml-sidebar-head {
  align-items: center !important;
  border: 0 !important;
  display: flex !important;
  justify-content: space-between !important;
  margin: 0 0 20px !important;
  min-height: 0 !important;
  padding: 0 !important;
}

body .mml-app .mml-sidebar-head strong {
  color: #071833 !important;
  display: block !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
}

body .mml-app .mml-sidebar-search {
  display: grid !important;
  gap: 8px !important;
  margin: 0 0 18px !important;
}

body .mml-app .mml-sidebar-search input {
  background: #fff !important;
  border: 1px solid #dfe6f0 !important;
  border-radius: 12px !important;
  box-shadow: 0 3px 8px rgba(25, 43, 77, 0.04) !important;
  color: #071833 !important;
  display: block !important;
  font-size: 14px !important;
  height: 44px !important;
  margin: 0 !important;
  max-width: none !important;
  padding: 0 14px !important;
  width: 100% !important;
}

body .mml-app .mml-app-sidebar ul,
body .mml-app .mml-app-sidebar li {
  border: 0 !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body .mml-app .mml-app-sidebar a,
body .mml-app .mml-app-sidebar button {
  align-items: center !important;
  background: #fff !important;
  border: 1px solid #dfe6f0 !important;
  border-radius: 14px !important;
  box-shadow: 0 7px 16px rgba(25, 43, 77, 0.045) !important;
  color: #5c6f8a !important;
  display: flex !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  gap: 10px !important;
  justify-content: flex-start !important;
  line-height: 1.2 !important;
  margin: 0 0 8px !important;
  min-height: 48px !important;
  padding: 12px 15px !important;
  text-align: left !important;
  text-decoration: none !important;
  width: 100% !important;
}

body .mml-app .mml-app-sidebar a:hover,
body .mml-app .mml-app-sidebar button:hover {
  border-color: #cbd6e6 !important;
  color: #071833 !important;
}

body .mml-app .mml-app-sidebar a.is-active {
  background: #2f6df6 !important;
  border-color: #2f6df6 !important;
  box-shadow: 0 12px 24px rgba(47, 109, 246, 0.28) !important;
  color: #fff !important;
}

body .mml-app .mml-app-content {
  background: transparent !important;
  border: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
}

body .mml-app.is-menu-collapsed .mml-app-sidebar {
  max-width: 58px !important;
  padding: 12px !important;
  width: 58px !important;
}

body .mml-app.is-menu-collapsed {
  gap: 28px !important;
  grid-template-columns: 58px minmax(0, 1fr) !important;
}

body .mml-app.is-menu-collapsed .mml-app-sidebar {
  align-items: center !important;
  display: flex !important;
  height: 58px !important;
  justify-content: center !important;
  max-width: 58px !important;
  min-height: 58px !important;
  overflow: visible !important;
  padding: 0 !important;
  width: 58px !important;
}

body .mml-app.is-menu-collapsed .mml-sidebar-head {
  display: flex !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

body .mml-app.is-menu-collapsed .mml-sidebar-head strong,
body .mml-app.is-menu-collapsed .mml-sidebar-search,
body .mml-app.is-menu-collapsed .mml-sidebar-scroll {
  display: none !important;
  visibility: hidden !important;
}

body .mml-app.is-menu-collapsed .mml-app-sidebar .mml-sidebar-hide {
  display: inline-flex !important;
  height: 38px !important;
  min-height: 38px !important;
  width: 38px !important;
}

body .mml-app.is-menu-collapsed .mml-app-content {
  padding-top: 0 !important;
}

@media (max-width: 900px) {
  body .mml-app {
    display: block !important;
    padding: 0 !important;
  }

  body .mml-app .mml-app-sidebar {
    display: none !important;
    margin: 0 16px 18px !important;
    max-width: none !important;
    position: static !important;
    width: auto !important;
  }

  body .mml-app.is-menu-open .mml-app-sidebar {
    display: block !important;
  }
}

/* Painel estilo WordPress/Eventos: alinhamento final contra CSS do tema. */
body .mml-app {
  background: #f8fafc !important;
  column-gap: 48px !important;
  font-family: "Inter", "Poppins", "Segoe UI", Arial, sans-serif !important;
  padding-top: 44px !important;
}

body .mml-app .mml-app-sidebar {
  background: #fff !important;
  border: 1px solid #e4e9f2 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 38px 22px 22px !important;
}

body .mml-app .mml-sidebar-head {
  margin-bottom: 30px !important;
}

body .mml-app .mml-sidebar-head strong {
  color: #06142f !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

body .mml-app .mml-sidebar-hide {
  background: #2f6df6 !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 16px rgba(47, 109, 246, 0.26) !important;
  height: 30px !important;
  min-height: 30px !important;
  width: 30px !important;
}

body .mml-app .mml-sidebar-search {
  margin-bottom: 18px !important;
}

body .mml-app .mml-sidebar-search span {
  color: #53657f !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body .mml-app .mml-sidebar-search input {
  border-color: #e3e8f0 !important;
  border-radius: 10px !important;
  box-shadow: inset 0 1px 2px rgba(7, 24, 51, 0.03) !important;
  color: #071833 !important;
  height: 42px !important;
}

body .mml-app .mml-sidebar-scroll {
  max-height: none !important;
  overflow: visible !important;
  padding: 0 !important;
}

body .mml-app .mml-app-sidebar a,
body .mml-app .mml-app-sidebar button {
  align-items: center !important;
  border: 1px solid #e6ebf2 !important;
  border-radius: 13px !important;
  box-shadow: 0 4px 12px rgba(6, 20, 47, 0.045) !important;
  color: #52657f !important;
  display: grid !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  grid-template-columns: 24px minmax(0, 1fr) 12px !important;
  height: 46px !important;
  justify-content: initial !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  margin: 0 0 9px !important;
  min-height: 46px !important;
  padding: 0 14px !important;
  text-transform: none !important;
}

body .mml-app .mml-app-sidebar a::after,
body .mml-app .mml-app-sidebar button::after {
  justify-self: end !important;
}

body .mml-app .mml-app-sidebar a:not(.is-active)::after,
body .mml-app .mml-app-sidebar button:not(.mml-sidebar-hide)::after {
  opacity: 0.7 !important;
}

body .mml-app .mml-app-sidebar a:hover,
body .mml-app .mml-app-sidebar button:hover {
  background: #fff !important;
  border-color: #cfd8e6 !important;
  color: #06142f !important;
}

body .mml-app .mml-app-sidebar a.is-active {
  background: #3478f6 !important;
  border: 2px solid #06142f !important;
  box-shadow: 0 10px 18px rgba(52, 120, 246, 0.24) !important;
  color: #fff !important;
}

body .mml-app .mml-app-sidebar .mml-sidebar-hide {
  align-items: center !important;
  background: #3478f6 !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 16px rgba(52, 120, 246, 0.24) !important;
  display: inline-flex !important;
  flex: 0 0 30px !important;
  gap: 0 !important;
  grid-template-columns: none !important;
  height: 30px !important;
  justify-content: center !important;
  margin: 0 !important;
  min-height: 30px !important;
  padding: 0 !important;
  width: 30px !important;
}

body .mml-app .mml-icon {
  align-items: center !important;
  color: currentColor !important;
  display: inline-flex !important;
  font-size: 18px !important;
  height: 22px !important;
  justify-content: center !important;
  line-height: 1 !important;
  min-width: 22px !important;
  width: 22px !important;
}

body .mml-app .mml-folder > ul,
body .mml-app .mml-page > ul {
  border: 0 !important;
  display: none !important;
  margin: 0 0 8px 18px !important;
  padding-left: 12px !important;
}

body .mml-app .mml-folder.is-open > ul,
body .mml-app .mml-page.is-open > ul {
  display: block !important;
}

body .mml-app .mml-folder > ul::before,
body .mml-app .mml-page > ul::before {
  background: #e6ebf2 !important;
  left: 0 !important;
}

body .mml-app .mml-folder > ul a,
body .mml-app .mml-folder > ul button,
body .mml-app .mml-page > ul a,
body .mml-app .mml-page > ul button {
  font-size: 13px !important;
  height: 42px !important;
  min-height: 42px !important;
}

body .mml-app .mml-app-content {
  padding-top: 44px !important;
}

body .mml-app .mml-welcome-inner {
  border-radius: 22px !important;
  margin: 0 !important;
}

@media (max-width: 900px) {
  body .mml-app {
    background: #f8fafc !important;
    padding-top: 0 !important;
  }

  body .mml-app .mml-app-sidebar {
    border-radius: 16px !important;
    padding: 22px !important;
  }

  body .mml-app .mml-app-content {
    padding-top: 16px !important;
  }

  body .mml-app .mml-welcome-panel {
    min-height: auto !important;
  }

  body .mml-app .mml-welcome-inner {
    min-height: 360px !important;
    padding: 28px !important;
  }

  body .mml-app .mml-welcome-inner h1 {
    font-size: 34px !important;
  }
}

body .mml-app.is-menu-hidden-after-select {
  gap: 0 !important;
  grid-template-columns: 0 minmax(0, 1fr) !important;
}

body .mml-app.is-menu-hidden-after-select .mml-app-sidebar {
  max-width: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  pointer-events: none !important;
  transform: translateX(-16px) !important;
  visibility: hidden !important;
  width: 0 !important;
}

body .mml-app.is-menu-hidden-after-select .mml-app-content {
  padding-top: 0 !important;
}

body .mml-app.is-menu-hidden-after-select .mml-menu-return {
  align-items: center !important;
  background: #3478f6 !important;
  border: 0 !important;
  border-radius: 999px !important;
  bottom: 24px !important;
  box-shadow: 0 14px 28px rgba(52, 120, 246, 0.32) !important;
  color: #fff !important;
  cursor: pointer !important;
  display: inline-flex !important;
  font-family: "Inter", "Poppins", "Segoe UI", Arial, sans-serif !important;
  gap: 8px !important;
  height: 48px !important;
  left: 24px !important;
  min-height: 48px !important;
  padding: 0 18px !important;
  position: fixed !important;
  width: auto !important;
  z-index: 100010 !important;
}

body .mml-app.is-menu-hidden-after-select .mml-menu-return strong {
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

body .mml-app.is-menu-hidden-after-select .mml-menu-return .dashicons {
  align-items: center !important;
  display: inline-flex !important;
  font-size: 18px !important;
  height: 18px !important;
  justify-content: center !important;
  width: 18px !important;
}

@media (max-width: 900px) {
  body .mml-app.is-menu-hidden-after-select {
    display: block !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-app-sidebar {
    max-width: 320px !important;
    opacity: 1 !important;
    overflow-y: auto !important;
    padding: 28px 18px 22px !important;
    pointer-events: auto !important;
    left: auto !important;
    right: 0 !important;
    transform: translateX(105%) !important;
    visibility: visible !important;
    width: min(84vw, 320px) !important;
  }

  body .mml-app.is-menu-hidden-after-select.is-menu-open .mml-mobile-backdrop {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  body .mml-app.is-menu-hidden-after-select.is-menu-open .mml-app-sidebar {
    transform: translateX(0) !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-menu-return {
    border-radius: 999px !important;
    bottom: 20px !important;
    height: 56px !important;
    justify-content: center !important;
    left: auto !important;
    min-height: 56px !important;
    padding: 0 !important;
    right: 20px !important;
    width: 56px !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-menu-return strong {
    display: none !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-menu-return .dashicons {
    font-size: 24px !important;
    height: 24px !important;
    width: 24px !important;
  }
}

/* Ajuste final aplicado por ultimo: botao do menu no rodape e casinha apos selecionar. */
@media (max-width: 900px) {
  body .mml-app,
  body .mml-app.is-menu-hidden-after-select {
    padding: 0 0 86px !important;
  }

  body .mml-app .mml-mobile-toggle {
    align-items: center !important;
    background: #3478f6 !important;
    border: 0 !important;
    border-radius: 999px !important;
    bottom: 18px !important;
    box-shadow: 0 14px 28px rgba(52, 120, 246, 0.34) !important;
    color: #fff !important;
    display: inline-flex !important;
    font-size: 0 !important;
    height: 56px !important;
    justify-content: center !important;
    left: auto !important;
    margin: 0 !important;
    min-height: 56px !important;
    padding: 0 !important;
    position: fixed !important;
    right: 18px !important;
    top: auto !important;
    transform: none !important;
    width: 56px !important;
    z-index: 100010 !important;
  }

  body .mml-app .mml-mobile-toggle::before {
    content: "\f333" !important;
    display: inline-block !important;
    font-family: dashicons !important;
    font-size: 26px !important;
    font-weight: 400 !important;
    height: 26px !important;
    line-height: 1 !important;
    width: 26px !important;
  }

  body .mml-app .mml-mobile-toggle::after,
  body .mml-app .mml-mobile-toggle span,
  body .mml-app .mml-mobile-toggle span::before,
  body .mml-app .mml-mobile-toggle span::after {
    display: none !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-mobile-toggle {
    display: none !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-menu-return {
    align-items: center !important;
    background: #3478f6 !important;
    border: 0 !important;
    border-radius: 999px !important;
    bottom: 18px !important;
    box-shadow: 0 14px 28px rgba(52, 120, 246, 0.34) !important;
    color: #fff !important;
    cursor: pointer !important;
    display: inline-flex !important;
    height: 56px !important;
    justify-content: center !important;
    left: auto !important;
    min-height: 56px !important;
    padding: 0 !important;
    position: fixed !important;
    right: 18px !important;
    top: auto !important;
    width: 56px !important;
    z-index: 100010 !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-menu-return strong {
    display: none !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-menu-return .dashicons {
    align-items: center !important;
    display: inline-flex !important;
    font-size: 26px !important;
    height: 26px !important;
    justify-content: center !important;
    width: 26px !important;
  }

  body .mml-app.is-menu-hidden-after-select.is-menu-open .mml-menu-return {
    display: none !important;
  }

  body .mml-app .mml-welcome-actions .dashicons-arrow-left-alt {
    transform: rotate(180deg) !important;
  }
}

/* Camada viva final: largura total e brilho que acompanha o mouse. */
body .mml-app {
  --mml-cursor-x: 72%;
  --mml-cursor-y: 24%;
  background:
    radial-gradient(circle at var(--mml-cursor-x) var(--mml-cursor-y), rgba(52, 120, 246, 0.22), transparent 30vw),
    linear-gradient(135deg, #f8fbff 0%, #eef5ff 46%, #ffffff 100%) !important;
  gap: 18px !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  max-width: none !important;
  overflow: hidden !important;
  padding: 14px !important;
  width: 100vw !important;
}

body .mml-app:not(.is-menu-collapsed):not(.is-menu-hidden-after-select) {
  grid-template-columns: minmax(250px, 292px) minmax(0, 1fr) !important;
}

body .mml-app .mml-app-sidebar {
  z-index: 2 !important;
}

body .mml-app .mml-app-content {
  padding: 0 !important;
  position: relative !important;
  z-index: 1 !important;
}

body .mml-app .mml-welcome-panel {
  min-height: calc(100vh - 28px) !important;
}

body .mml-app .mml-welcome-inner {
  background:
    radial-gradient(circle at var(--mml-cursor-x) var(--mml-cursor-y), rgba(255, 255, 255, 0.92), transparent 18vw),
    radial-gradient(circle at calc(100% - var(--mml-cursor-x)) calc(100% - var(--mml-cursor-y)), rgba(26, 188, 156, 0.16), transparent 24vw),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(235, 244, 255, 0.9)) !important;
  border: 1px solid rgba(215, 228, 245, 0.9) !important;
  border-radius: 16px !important;
  box-shadow: 0 24px 70px rgba(7, 24, 51, 0.12) !important;
  min-height: calc(100vh - 28px) !important;
  padding: clamp(34px, 6vw, 92px) !important;
}

body .mml-app .mml-welcome-inner::before {
  background:
    linear-gradient(90deg, rgba(52, 120, 246, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(52, 120, 246, 0.09) 1px, transparent 1px) !important;
  background-size: 46px 46px !important;
  content: "" !important;
  inset: 0 !important;
  opacity: 0.45 !important;
  pointer-events: none !important;
  position: absolute !important;
  z-index: 0 !important;
}

body .mml-app .mml-welcome-inner::after {
  background: linear-gradient(135deg, rgba(52, 120, 246, 0.24), rgba(26, 188, 156, 0.18)) !important;
  border-radius: 28px !important;
  bottom: clamp(24px, 5vw, 70px) !important;
  height: clamp(150px, 22vw, 290px) !important;
  opacity: 0.36 !important;
  right: clamp(18px, 6vw, 96px) !important;
  transform: rotate(18deg) skew(-8deg) !important;
  width: clamp(170px, 24vw, 340px) !important;
}

body .mml-app .mml-welcome-kicker,
body .mml-app .mml-welcome-inner h1,
body .mml-app .mml-welcome-inner p,
body .mml-app .mml-welcome-actions {
  position: relative !important;
  z-index: 1 !important;
}

body .mml-app .mml-welcome-inner h1 {
  color: #051225 !important;
  font-size: clamp(42px, 6.4vw, 92px) !important;
  max-width: 1160px !important;
}

body .mml-app .mml-welcome-inner p {
  color: #405773 !important;
  font-size: clamp(17px, 1.5vw, 22px) !important;
  max-width: 940px !important;
}

body .mml-app .mml-welcome-actions {
  background: linear-gradient(135deg, #3478f6, #1abc9c) !important;
  border-radius: 14px !important;
  min-height: 58px !important;
}

@media (max-width: 900px) {
  body .mml-app,
  body .mml-app.is-menu-hidden-after-select {
    display: block !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 0 0 86px !important;
    width: 100vw !important;
  }

  body .mml-app .mml-welcome-panel,
  body .mml-app .mml-welcome-inner {
    min-height: calc(100vh - 86px) !important;
  }

  body .mml-app .mml-welcome-inner {
    border-left: 0 !important;
    border-radius: 0 !important;
    border-right: 0 !important;
    padding: 34px 18px 112px !important;
  }

  body .mml-app .mml-welcome-inner h1 {
    font-size: 40px !important;
  }
}

/* Camada viva: largura total e brilho que acompanha o mouse. */
body .mml-app {
  --mml-cursor-x: 72%;
  --mml-cursor-y: 24%;
  background:
    radial-gradient(circle at var(--mml-cursor-x) var(--mml-cursor-y), rgba(52, 120, 246, 0.22), transparent 30vw),
    linear-gradient(135deg, #f8fbff 0%, #eef5ff 46%, #ffffff 100%) !important;
  gap: 18px !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  max-width: none !important;
  overflow: hidden !important;
  padding: 14px !important;
  width: 100vw !important;
}

body .mml-app:not(.is-menu-collapsed):not(.is-menu-hidden-after-select) {
  grid-template-columns: minmax(250px, 292px) minmax(0, 1fr) !important;
}

body .mml-app .mml-app-sidebar {
  z-index: 2 !important;
}

body .mml-app .mml-app-content {
  padding: 0 !important;
  position: relative !important;
  z-index: 1 !important;
}

body .mml-app .mml-welcome-panel {
  min-height: calc(100vh - 28px) !important;
}

body .mml-app .mml-welcome-inner {
  background:
    radial-gradient(circle at var(--mml-cursor-x) var(--mml-cursor-y), rgba(255, 255, 255, 0.92), transparent 18vw),
    radial-gradient(circle at calc(100% - var(--mml-cursor-x)) calc(100% - var(--mml-cursor-y)), rgba(26, 188, 156, 0.16), transparent 24vw),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(235, 244, 255, 0.9)) !important;
  border: 1px solid rgba(215, 228, 245, 0.9) !important;
  border-radius: 16px !important;
  box-shadow: 0 24px 70px rgba(7, 24, 51, 0.12) !important;
  min-height: calc(100vh - 28px) !important;
  padding: clamp(34px, 6vw, 92px) !important;
}

body .mml-app .mml-welcome-inner::before {
  background:
    linear-gradient(90deg, rgba(52, 120, 246, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(52, 120, 246, 0.09) 1px, transparent 1px) !important;
  background-size: 46px 46px !important;
  content: "" !important;
  inset: 0 !important;
  opacity: 0.45 !important;
  pointer-events: none !important;
  position: absolute !important;
  z-index: 0 !important;
}

body .mml-app .mml-welcome-inner::after {
  background: linear-gradient(135deg, rgba(52, 120, 246, 0.24), rgba(26, 188, 156, 0.18)) !important;
  border-radius: 28px !important;
  bottom: clamp(24px, 5vw, 70px) !important;
  height: clamp(150px, 22vw, 290px) !important;
  opacity: 0.36 !important;
  right: clamp(18px, 6vw, 96px) !important;
  transform: rotate(18deg) skew(-8deg) !important;
  width: clamp(170px, 24vw, 340px) !important;
}

body .mml-app .mml-welcome-kicker {
  background: rgba(255, 255, 255, 0.78) !important;
  border-color: rgba(52, 120, 246, 0.28) !important;
  color: #1f55d8 !important;
}

body .mml-app .mml-welcome-inner h1 {
  color: #051225 !important;
  font-size: clamp(42px, 6.4vw, 92px) !important;
  max-width: 1160px !important;
}

body .mml-app .mml-welcome-inner p {
  color: #405773 !important;
  font-size: clamp(17px, 1.5vw, 22px) !important;
  max-width: 940px !important;
}

body .mml-app .mml-welcome-actions {
  background: linear-gradient(135deg, #3478f6, #1abc9c) !important;
  border-radius: 14px !important;
  min-height: 58px !important;
}

@media (max-width: 900px) {
  body .mml-app,
  body .mml-app.is-menu-hidden-after-select {
    display: block !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 0 0 86px !important;
    width: 100vw !important;
  }

  body .mml-app .mml-welcome-panel,
  body .mml-app .mml-welcome-inner {
    min-height: calc(100vh - 86px) !important;
  }

  body .mml-app .mml-welcome-inner {
    border-left: 0 !important;
    border-radius: 0 !important;
    border-right: 0 !important;
    padding: 34px 18px 112px !important;
  }

  body .mml-app .mml-welcome-inner h1 {
    font-size: 40px !important;
  }
}

/* Melhorias da pagina inicial no fim do arquivo para prevalecer sobre estilos antigos. */
body .mml-app {
  max-width: none !important;
  width: 100% !important;
}

body .mml-app:not(.is-menu-collapsed):not(.is-menu-hidden-after-select) {
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr) !important;
}

body .mml-app .mml-welcome-panel {
  min-height: clamp(520px, 70vh, 760px) !important;
}

body .mml-app .mml-welcome-inner {
  background:
    radial-gradient(circle at 92% 18%, rgba(52, 120, 246, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eef5ff 54%, #f8fbff 100%) !important;
  border: 1px solid #d7e4f5 !important;
  border-radius: 18px !important;
  box-shadow: 0 22px 54px rgba(7, 24, 51, 0.10) !important;
  min-height: clamp(500px, 68vh, 740px) !important;
  overflow: hidden !important;
  padding: clamp(34px, 6vw, 86px) !important;
  position: relative !important;
  width: 100% !important;
}

body .mml-app .mml-welcome-inner::after {
  background: linear-gradient(180deg, #3478f6, #06142f) !important;
  border-radius: 999px !important;
  bottom: clamp(28px, 5vw, 66px) !important;
  content: "" !important;
  height: clamp(130px, 18vw, 230px) !important;
  opacity: 0.12 !important;
  position: absolute !important;
  right: clamp(22px, 5vw, 72px) !important;
  transform: rotate(28deg) !important;
  width: clamp(130px, 18vw, 230px) !important;
}

body .mml-app .mml-welcome-kicker,
body .mml-app .mml-welcome-inner h1,
body .mml-app .mml-welcome-inner p,
body .mml-app .mml-welcome-actions {
  position: relative !important;
  z-index: 1 !important;
}

body .mml-app .mml-welcome-inner h1 {
  font-size: clamp(38px, 5.4vw, 76px) !important;
  max-width: 1040px !important;
}

body .mml-app .mml-welcome-inner p {
  font-size: clamp(16px, 1.35vw, 20px) !important;
  max-width: 900px !important;
}

body .mml-app .mml-welcome-actions {
  appearance: none !important;
  border: 0 !important;
  cursor: pointer !important;
  min-height: 56px !important;
  padding: 0 22px !important;
  transition: box-shadow 160ms ease, transform 160ms ease, background 160ms ease !important;
}

body .mml-app .mml-welcome-actions:hover {
  background: #1f55d8 !important;
  box-shadow: 0 18px 34px rgba(52, 120, 246, 0.34) !important;
  transform: translateY(-2px) !important;
}

body .mml-app .mml-welcome-actions:focus-visible {
  outline: 3px solid rgba(52, 120, 246, 0.26) !important;
  outline-offset: 3px !important;
}

@media (max-width: 900px) {
  body .mml-app,
  body .mml-app.is-menu-hidden-after-select {
    padding: 0 0 86px !important;
  }

  body .mml-app .mml-welcome-panel {
    min-height: auto !important;
  }

  body .mml-app .mml-welcome-inner {
    border-radius: 0 !important;
    min-height: calc(100vh - 86px) !important;
    padding: 34px 20px 110px !important;
  }

  body .mml-app .mml-welcome-inner h1 {
    font-size: 38px !important;
  }

  body .mml-app .mml-welcome-actions {
    border-radius: 14px !important;
    justify-content: center !important;
    width: 100% !important;
  }

  body .mml-app .mml-welcome-actions .dashicons-arrow-left-alt {
    transform: rotate(180deg) !important;
  }
}

/* Pagina inicial mais ampla e com chamada clicavel para abrir o menu. */
body .mml-app {
  max-width: none !important;
  width: 100% !important;
}

body .mml-app:not(.is-menu-collapsed):not(.is-menu-hidden-after-select) {
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr) !important;
}

body .mml-app .mml-welcome-panel {
  min-height: clamp(520px, 70vh, 760px) !important;
}

body .mml-app .mml-welcome-inner {
  background:
    radial-gradient(circle at 92% 18%, rgba(52, 120, 246, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eef5ff 54%, #f8fbff 100%) !important;
  border: 1px solid #d7e4f5 !important;
  border-radius: 18px !important;
  box-shadow: 0 22px 54px rgba(7, 24, 51, 0.10) !important;
  min-height: clamp(500px, 68vh, 740px) !important;
  overflow: hidden !important;
  padding: clamp(34px, 6vw, 86px) !important;
  position: relative !important;
  width: 100% !important;
}

body .mml-app .mml-welcome-inner::after {
  background: linear-gradient(180deg, #3478f6, #06142f) !important;
  border-radius: 999px !important;
  bottom: clamp(28px, 5vw, 66px) !important;
  content: "" !important;
  height: clamp(130px, 18vw, 230px) !important;
  opacity: 0.12 !important;
  position: absolute !important;
  right: clamp(22px, 5vw, 72px) !important;
  transform: rotate(28deg) !important;
  width: clamp(130px, 18vw, 230px) !important;
}

body .mml-app .mml-welcome-kicker,
body .mml-app .mml-welcome-inner h1,
body .mml-app .mml-welcome-inner p,
body .mml-app .mml-welcome-actions {
  position: relative !important;
  z-index: 1 !important;
}

body .mml-app .mml-welcome-inner h1 {
  font-size: clamp(38px, 5.4vw, 76px) !important;
  max-width: 1040px !important;
}

body .mml-app .mml-welcome-inner p {
  font-size: clamp(16px, 1.35vw, 20px) !important;
  max-width: 900px !important;
}

body .mml-app .mml-welcome-actions {
  appearance: none !important;
  border: 0 !important;
  cursor: pointer !important;
  min-height: 56px !important;
  padding: 0 22px !important;
  transition: box-shadow 160ms ease, transform 160ms ease, background 160ms ease !important;
}

body .mml-app .mml-welcome-actions:hover {
  background: #1f55d8 !important;
  box-shadow: 0 18px 34px rgba(52, 120, 246, 0.34) !important;
  transform: translateY(-2px) !important;
}

body .mml-app .mml-welcome-actions:focus-visible {
  outline: 3px solid rgba(52, 120, 246, 0.26) !important;
  outline-offset: 3px !important;
}

@media (max-width: 900px) {
  body .mml-app,
  body .mml-app.is-menu-hidden-after-select {
    padding: 0 0 86px !important;
  }

  body .mml-app .mml-welcome-panel {
    min-height: auto !important;
  }

  body .mml-app .mml-welcome-inner {
    border-radius: 0 !important;
    min-height: calc(100vh - 86px) !important;
    padding: 34px 20px 110px !important;
  }

  body .mml-app .mml-welcome-inner h1 {
    font-size: 38px !important;
  }

  body .mml-app .mml-welcome-actions {
    border-radius: 14px !important;
    justify-content: center !important;
    width: 100% !important;
  }

  body .mml-app .mml-welcome-actions .dashicons-arrow-left-alt {
    transform: rotate(180deg) !important;
  }
}

/* Ajuste final: no celular o acesso ao menu fica no rodape; depois de selecionar, vira a casinha. */
@media (max-width: 900px) {
  body .mml-app,
  body .mml-app.is-menu-hidden-after-select {
    padding: 0 0 86px !important;
  }

  body .mml-app .mml-mobile-toggle {
    align-items: center !important;
    background: #3478f6 !important;
    border: 0 !important;
    border-radius: 999px !important;
    bottom: 18px !important;
    box-shadow: 0 14px 28px rgba(52, 120, 246, 0.34) !important;
    color: #fff !important;
    display: inline-flex !important;
    font-size: 0 !important;
    height: 56px !important;
    justify-content: center !important;
    left: auto !important;
    margin: 0 !important;
    min-height: 56px !important;
    padding: 0 !important;
    position: fixed !important;
    right: 18px !important;
    top: auto !important;
    transform: none !important;
    width: 56px !important;
    z-index: 100010 !important;
  }

  body .mml-app .mml-mobile-toggle::before {
    content: "\f333" !important;
    display: inline-block !important;
    font-family: dashicons !important;
    font-size: 26px !important;
    font-weight: 400 !important;
    height: 26px !important;
    line-height: 1 !important;
    width: 26px !important;
  }

  body .mml-app .mml-mobile-toggle::after,
  body .mml-app .mml-mobile-toggle span,
  body .mml-app .mml-mobile-toggle span::before,
  body .mml-app .mml-mobile-toggle span::after {
    display: none !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-mobile-toggle {
    display: none !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-menu-return {
    align-items: center !important;
    background: #3478f6 !important;
    border: 0 !important;
    border-radius: 999px !important;
    bottom: 18px !important;
    box-shadow: 0 14px 28px rgba(52, 120, 246, 0.34) !important;
    color: #fff !important;
    cursor: pointer !important;
    display: inline-flex !important;
    height: 56px !important;
    justify-content: center !important;
    left: auto !important;
    min-height: 56px !important;
    padding: 0 !important;
    position: fixed !important;
    right: 18px !important;
    top: auto !important;
    width: 56px !important;
    z-index: 100010 !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-menu-return strong {
    display: none !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-menu-return .dashicons {
    align-items: center !important;
    display: inline-flex !important;
    font-size: 26px !important;
    height: 26px !important;
    justify-content: center !important;
    width: 26px !important;
  }

  body .mml-app.is-menu-hidden-after-select.is-menu-open .mml-menu-return {
    display: none !important;
  }

  body .mml-app .mml-welcome-actions .dashicons-arrow-left-alt {
    transform: rotate(180deg) !important;
  }
}

/* Mobile 1.1.7 final: botao unico no rodape e menu pela esquerda. */
@media (max-width: 900px) {
  body .mml-app,
  body .mml-app.is-menu-hidden-after-select {
    background: #f8fafc !important;
    display: block !important;
    grid-template-columns: none !important;
    min-height: auto !important;
    padding: 0 0 76px !important;
    width: 100% !important;
  }

  body .mml-app .mml-mobile-toggle {
    align-items: center !important;
    background: #3478f6 !important;
    border: 0 !important;
    border-radius: 999px !important;
    bottom: 18px !important;
    box-shadow: 0 14px 28px rgba(52, 120, 246, 0.34) !important;
    color: #fff !important;
    display: inline-flex !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    gap: 8px !important;
    height: 54px !important;
    justify-content: center !important;
    left: 50% !important;
    margin: 0 !important;
    min-height: 54px !important;
    padding: 0 20px !important;
    position: fixed !important;
    right: auto !important;
    top: auto !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    z-index: 100010 !important;
  }

  body .mml-app .mml-mobile-toggle::before {
    content: "\f102" !important;
    display: inline-block !important;
    font-family: dashicons !important;
    font-size: 21px !important;
    font-weight: 400 !important;
    height: 21px !important;
    line-height: 1 !important;
    width: 21px !important;
  }

  body .mml-app .mml-mobile-toggle::after {
    content: "Menu" !important;
    display: inline !important;
    font-size: 14px !important;
    font-weight: 900 !important;
  }

  body .mml-app .mml-mobile-toggle span,
  body .mml-app .mml-mobile-toggle span::before,
  body .mml-app .mml-mobile-toggle span::after {
    display: none !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-mobile-toggle {
    display: inline-flex !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-menu-return {
    display: none !important;
  }

  body .mml-app .mml-mobile-backdrop {
    background: transparent !important;
    border: 0 !important;
    bottom: 0 !important;
    display: block !important;
    left: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: fixed !important;
    right: 0 !important;
    top: 0 !important;
    visibility: hidden !important;
    z-index: 100000 !important;
  }

  body .mml-app.is-menu-open .mml-mobile-backdrop {
    background: rgba(6, 20, 47, 0.42) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
  }

  body .mml-app .mml-app-sidebar,
  body .mml-app.is-menu-hidden-after-select .mml-app-sidebar {
    background: #fff !important;
    border: 0 !important;
    border-right: 1px solid #e4e9f2 !important;
    border-radius: 0 !important;
    bottom: 0 !important;
    box-shadow: 18px 0 36px rgba(6, 20, 47, 0.22) !important;
    display: block !important;
    left: 0 !important;
    margin: 0 !important;
    max-width: 330px !important;
    min-height: 100vh !important;
    opacity: 1 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    padding: 28px 18px 92px !important;
    pointer-events: auto !important;
    position: fixed !important;
    right: auto !important;
    top: 0 !important;
    transform: translateX(-105%) !important;
    transition: transform 220ms ease !important;
    visibility: visible !important;
    width: min(86vw, 330px) !important;
    z-index: 100002 !important;
  }

  body .mml-app.is-menu-open .mml-app-sidebar,
  body .mml-app.is-menu-hidden-after-select.is-menu-open .mml-app-sidebar {
    transform: translateX(0) !important;
  }

  body .mml-app .mml-app-sidebar .mml-sidebar-hide {
    display: none !important;
  }

  body .mml-app .mml-app-content {
    padding: 16px !important;
    padding-top: 8px !important;
  }
}

@media (max-width: 900px) {
  body .mml-app .mml-mobile-toggle {
    bottom: 20px !important;
    border-radius: 999px !important;
    height: 56px !important;
    margin: 0 !important;
    min-height: 56px !important;
    padding: 0 !important;
    position: fixed !important;
    right: 20px !important;
    top: auto !important;
    width: 56px !important;
    z-index: 100010 !important;
  }

  body .mml-app .mml-mobile-toggle::after {
    content: "" !important;
  }

  body .mml-app .mml-mobile-toggle {
    font-size: 0 !important;
  }

  body .mml-app .mml-mobile-toggle span {
    color: #fff !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-mobile-toggle {
    display: none !important;
  }

  body .mml-app .mml-app-sidebar {
    border-left: 1px solid #e4e9f2 !important;
    border-right: 0 !important;
  }
}

/* Mobile final: menu tipo WordPress vindo da direita. */
@media (max-width: 900px) {
  body .mml-app,
  body .mml-app.is-menu-hidden-after-select {
    background: #f8fafc !important;
    display: block !important;
    grid-template-columns: none !important;
    min-height: auto !important;
    overflow: visible !important;
    padding: 0 !important;
    width: 100% !important;
  }

  body .mml-app .mml-mobile-toggle {
    align-items: center !important;
    background: #3478f6 !important;
    border: 0 !important;
    border-radius: 12px !important;
    bottom: auto !important;
    box-shadow: 0 10px 22px rgba(52, 120, 246, 0.24) !important;
    color: #fff !important;
    display: inline-flex !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    gap: 10px !important;
    height: 46px !important;
    justify-content: center !important;
    left: auto !important;
    margin: 12px 14px 8px auto !important;
    min-height: 46px !important;
    padding: 0 16px !important;
    position: sticky !important;
    right: 14px !important;
    top: 10px !important;
    width: auto !important;
    z-index: 100010 !important;
  }

  body .mml-app .mml-mobile-toggle span {
    display: block !important;
    flex: 0 0 18px !important;
  }

  body .mml-app .mml-mobile-toggle::after {
    content: "" !important;
    display: inline !important;
    font-size: 14px !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-mobile-toggle {
    display: none !important;
  }

  body .mml-app .mml-mobile-backdrop {
    background: transparent !important;
    border: 0 !important;
    bottom: 0 !important;
    display: block !important;
    height: auto !important;
    left: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: fixed !important;
    right: 0 !important;
    top: 0 !important;
    visibility: hidden !important;
    width: auto !important;
    z-index: 100000 !important;
  }

  body .mml-app.is-menu-open .mml-mobile-backdrop {
    background: rgba(6, 20, 47, 0.38) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
  }

  body .mml-app .mml-app-sidebar,
  body .mml-app.is-menu-hidden-after-select .mml-app-sidebar {
    background: #fff !important;
    border: 0 !important;
    border-left: 1px solid #e4e9f2 !important;
    border-radius: 0 !important;
    bottom: 0 !important;
    box-shadow: -18px 0 36px rgba(6, 20, 47, 0.22) !important;
    display: block !important;
    left: auto !important;
    margin: 0 !important;
    max-width: 330px !important;
    min-height: 100vh !important;
    opacity: 1 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    padding: 28px 18px 22px !important;
    pointer-events: auto !important;
    position: fixed !important;
    right: 0 !important;
    top: 0 !important;
    transform: translateX(105%) !important;
    transition: transform 220ms ease !important;
    visibility: visible !important;
    width: min(86vw, 330px) !important;
    z-index: 100002 !important;
  }

  body .mml-app.is-menu-open .mml-app-sidebar,
  body .mml-app.is-menu-hidden-after-select.is-menu-open .mml-app-sidebar {
    transform: translateX(0) !important;
  }

  body .mml-app .mml-sidebar-head {
    display: flex !important;
    margin: 0 0 22px !important;
  }

  body .mml-app .mml-sidebar-head strong {
    font-size: 23px !important;
  }

  body .mml-app .mml-app-sidebar .mml-sidebar-hide {
    display: none !important;
  }

  body .mml-app .mml-sidebar-scroll {
    max-height: none !important;
    overflow: visible !important;
  }

  body .mml-app .mml-app-content {
    padding: 16px !important;
    padding-top: 8px !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-menu-return {
    align-items: center !important;
    background: #3478f6 !important;
    border: 0 !important;
    border-radius: 999px !important;
    bottom: 18px !important;
    box-shadow: 0 14px 28px rgba(52, 120, 246, 0.32) !important;
    color: #fff !important;
    display: inline-flex !important;
    height: 56px !important;
    justify-content: center !important;
    left: auto !important;
    min-height: 56px !important;
    padding: 0 !important;
    position: fixed !important;
    right: 18px !important;
    top: auto !important;
    width: 56px !important;
    z-index: 100010 !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-menu-return strong {
    display: none !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-menu-return .dashicons {
    font-size: 24px !important;
    height: 24px !important;
    width: 24px !important;
  }
}

/* Ajuste final aplicado por ultimo: botao do menu no rodape e casinha apos selecionar. */
@media (max-width: 900px) {
  body .mml-app,
  body .mml-app.is-menu-hidden-after-select {
    padding: 0 0 86px !important;
  }

  body .mml-app .mml-mobile-toggle {
    align-items: center !important;
    background: #3478f6 !important;
    border: 0 !important;
    border-radius: 999px !important;
    bottom: 18px !important;
    box-shadow: 0 14px 28px rgba(52, 120, 246, 0.34) !important;
    color: #fff !important;
    display: inline-flex !important;
    font-size: 0 !important;
    height: 56px !important;
    justify-content: center !important;
    left: auto !important;
    margin: 0 !important;
    min-height: 56px !important;
    padding: 0 !important;
    position: fixed !important;
    right: 18px !important;
    top: auto !important;
    transform: none !important;
    width: 56px !important;
    z-index: 100010 !important;
  }

  body .mml-app .mml-mobile-toggle::before {
    content: "\f333" !important;
    display: inline-block !important;
    font-family: dashicons !important;
    font-size: 26px !important;
    font-weight: 400 !important;
    height: 26px !important;
    line-height: 1 !important;
    width: 26px !important;
  }

  body .mml-app .mml-mobile-toggle::after,
  body .mml-app .mml-mobile-toggle span,
  body .mml-app .mml-mobile-toggle span::before,
  body .mml-app .mml-mobile-toggle span::after {
    display: none !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-mobile-toggle {
    display: none !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-menu-return {
    align-items: center !important;
    background: #3478f6 !important;
    border: 0 !important;
    border-radius: 999px !important;
    bottom: 18px !important;
    box-shadow: 0 14px 28px rgba(52, 120, 246, 0.34) !important;
    color: #fff !important;
    cursor: pointer !important;
    display: inline-flex !important;
    height: 56px !important;
    justify-content: center !important;
    left: auto !important;
    min-height: 56px !important;
    padding: 0 !important;
    position: fixed !important;
    right: 18px !important;
    top: auto !important;
    width: 56px !important;
    z-index: 100010 !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-menu-return strong {
    display: none !important;
  }

  body .mml-app.is-menu-hidden-after-select .mml-menu-return .dashicons {
    align-items: center !important;
    display: inline-flex !important;
    font-size: 26px !important;
    height: 26px !important;
    justify-content: center !important;
    width: 26px !important;
  }

  body .mml-app.is-menu-hidden-after-select.is-menu-open .mml-menu-return {
    display: none !important;
  }

  body .mml-app .mml-welcome-actions .dashicons-arrow-left-alt {
    transform: rotate(180deg) !important;
  }
}
