.section-home.section-banners-home {
  padding-top: 0px;
}

/* =============================================
   Desktop Categories Bar (below logo row)
   ============================================= */

.desktop-categories-bar {
  width: 100%;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.desktop-categories-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 20px;
}

.desktop-category-item {
  position: relative;
}

.desktop-category-link {
  display: inline-block;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: opacity 0.2s ease;
}

.desktop-category-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 1.5px;
  background-color: currentColor;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.desktop-category-link:hover,
.desktop-category-link:focus {
  opacity: 0.7;
  color: inherit;
  text-decoration: none;
}

.desktop-category-link:hover::after {
  transform: scaleX(1);
}

/* Transparent header */
.head-transparent .desktop-categories-bar {
  border-top-color: rgba(255, 255, 255, 0.1);
}

/* Header custom colors */
.head-colors .desktop-categories-bar {
  border-top-color: rgba(255, 255, 255, 0.1);
}

/* =============================================
   Subcategories Dropdown
   ============================================= */

.desktop-category-item.has-subcategories>.desktop-category-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.desktop-category-chevron {
  opacity: 0.5;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.desktop-category-item.has-subcategories:hover .desktop-category-chevron {
  transform: rotate(180deg);
  opacity: 0.8;
}

.desktop-subcategories-list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 190px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.desktop-category-item.has-subcategories:hover>.desktop-subcategories-list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.desktop-subcategory-item {
  display: block;
}

.desktop-subcategory-link {
  display: block;
  padding: 7px 20px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: #555;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease, padding-left 0.15s ease;
}

.desktop-subcategory-link:hover,
.desktop-subcategory-link:focus {
  color: #111;
  padding-left: 24px;
  text-decoration: none;
}

.desktop-subcategory-link--all {
  font-weight: 600;
  color: #222;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 8px;
  margin-bottom: 4px;
}

/* Dropdown always uses solid white bg */
.head-transparent .desktop-subcategories-list,
.head-colors .desktop-subcategories-list {
  background-color: #fff;
}

.head-transparent .desktop-subcategory-link,
.head-colors .desktop-subcategory-link {
  color: #555;
}

.head-transparent .desktop-subcategory-link:hover,
.head-colors .desktop-subcategory-link:hover {
  color: #111;
}

@media (min-width: 768px) {

  .head-logo-row {
    padding: 0px !important;
  }

  .bp-header-men {
    height: 40px;
  }

  #logo {
    margin-left: 40px;
    /* remover talvez */
  }
}

.menu-icon {
  flex: initial !important;
  width: auto !important;
}