/*
* demo.css
* File include item demo only specific css only
******************************************************************************/

.menu .app-brand.demo {
  height: 62px;
}

.app-brand-logo.demo svg {
  width: 32px;
  height: auto;
}

.app-brand-text.demo {
  font-size: 1.145rem;
  display: inline-block;
  transform: scaleY(1.35);
  transform-origin: center;
}

/* ! For .layout-navbar-fixed added fix padding top to .layout-page */
/* Default navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 62px !important;
}
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
  padding-top: 70px !important;
}
/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks > * {
  display: block !important;
}

.demo-inline-spacing > * {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing > * {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg > * {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-lg.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl > * {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-xl.demo-only-element > :first-child {
  margin-top: 0 !important;
}

/* Dropdown buttons going out of small screens */
@media (max-width: 576px) {
  #dropdown-variation-demo .btn-group .text-truncate {
    width: 254px;
    position: relative;
  }
  #dropdown-variation-demo .btn-group .text-truncate::after {
    position: absolute;
    top: 45%;
    right: 0.65rem;
  }
}

/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1rem;
}
.layout-demo-placeholder img {
  width: 900px;
}
.layout-demo-info {
  text-align: center;
  margin-top: 1rem;
}

/* ===============================
   Tabs sem margens laterais (mobile)
   =============================== */
@media (max-width: 575.98px) {

  /* Remove padding lateral do card-body */
  .tabs-mobile-edge {
    margin-left: -1rem;
    margin-right: -1rem;
  }

    /* Tabs ocupam toda a largura */
    .tabs-mobile-edge .nav-tabs {
      padding-left: 0;
      padding-right: 0;
    }

      /* Remove espaÃ§amento interno dos botÃµes */
      .tabs-mobile-edge .nav-tabs .nav-link {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
      }

    /* ConteÃºdo das tabs tambÃ©m sem margens laterais */
    .tabs-mobile-edge .tab-content {
      padding-left: 1rem;
      padding-right: 1rem;
    }
}

/* Scroll To Top (theme-aware) */
.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1050;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
  color: var(--bs-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  user-select: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease, box-shadow .18s ease;
}

  .scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .scroll-top:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.20);
  }

  .scroll-top:active {
    transform: translateY(0) scale(0.97);
  }

  .scroll-top:focus {
    outline: none;
  }

  .scroll-top:focus-visible {
    box-shadow: 0 0 0 .25rem rgba(var(--bs-primary-rgb), .25), 0 10px 28px rgba(0, 0, 0, 0.20);
  }

  /* Ãcone */
  .scroll-top .scroll-top__icon {
    display: inline-flex;
    line-height: 1;
    font-size: 1.15rem;
  }

/* Dark mode tweaks (sem precisares de classes extra) */
[data-kt-theme-mode="dark"] .scroll-top,
[data-bs-theme="dark"] .scroll-top {
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* Mobile: ligeiramente mais pequeno */
@media (max-width: 576px) {
  .scroll-top {
    width: 40px;
    height: 40px;
    right: .75rem;
    bottom: .75rem;
  }
}

.layout-navbar {
  block-size: 4rem;
}

  .layout-navbar.navbar-detached {  
    border-radius: 0 0 0.375rem 0.375rem;
    margin-block: 0 0;
  }
