.header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    min-height: 5.5rem;
    gap: 1rem;
}

.header-logo {
    max-height: 48px;
}

.header-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.header-nav a,
.header-nav button.header-nav-links {
    color: white;
    font-family: var(--text-p);
    font-weight: 500;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.header-nav-links.header-nav-active {
    color: var(--secondary-color);
}

.nav-item-with-dropdown {
    position: static;
}

.header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    min-height: 5.5rem;
    gap: 1rem;
    overflow: visible;
}

.header-nav button.dropdown-toggle::after {
    content: '';
    display: inline-block;
    margin-left: 0.45rem;
    border: 4px solid transparent;
    border-top-color: white;
    vertical-align: middle;
}

.header-nav button.dropdown-toggle.dropdown-no-arrow::after {
    display: none;
}

.header-nav button.header-nav-links.header-nav-active::after {
    border-top-color: var(--secondary-color);
}

.product-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--primary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 0 1rem 1rem;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
    padding: 1.5rem 2rem;
}

.nav-item-with-dropdown:hover .product-dropdown,
.product-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item-with-dropdown.dropdown-click-closed:hover .product-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
}

.product-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    max-width: 1280px;
    margin: 0 auto;
}

.product-dropdown-panel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-dropdown-category {
    display: block;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.product-dropdown-category:hover {
    background: rgba(255, 98, 0, 0.12);
    border-color: rgba(255, 98, 0, 0.35);
}

.product-dropdown-category strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.product-dropdown-category span {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
}

.product-dropdown-subitems {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding-left: 0.8rem;
    margin-left: 0.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.product-dropdown-sublink {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.product-dropdown-sublink:hover {
    color: rgba(255, 98, 0, 1);
}

.product-dropdown-link {
    display: block;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.product-dropdown-link:hover {
    background: rgba(255, 98, 0, 0.12);
    border-color: rgba(255, 98, 0, 0.35);
}

.product-dropdown-link strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

.product-dropdown-link span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: white;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 980px) {
    .header {
        padding: 1rem 1rem;
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: flex;
    }

    .header-nav {
        width: 100%;
        display: none;
        position: relative;
    }

    .header-nav.open {
        display: block;
    }

    .header-nav ul {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 0 0.25rem;
    }

    .header-nav a {
        display: block;
        padding: 0.4rem 0;
    }
}

@media (min-width: 981px) {
    .header-nav {
        display: block !important;
    }
}

/* Header padrão Brutusmaq atualizado */
.header {
    min-height: 86px;
    padding: 0 56px;
    background: rgba(4, 5, 4, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
    overflow: visible;
}

body.equipamentos-body .header {
    border-bottom-color: rgba(255, 255, 255, 0.02);
}

.header-brand {
    display: inline-flex;
    align-items: center;
}

.header-logo {
    width: 214px;
    max-width: 214px;
    max-height: 54px;
    object-fit: contain;
}

.header-nav ul {
    gap: 20px;
}

.header-nav a,
.header-nav button.header-nav-links {
    position: relative;
    color: #f4f4f4;
    font-family: "Teko", var(--text-p), sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.header-nav-links.header-nav-active,
.header-nav a:hover,
.header-nav button.header-nav-links:hover {
    color: var(--bm-orange, var(--secondary-color));
}

.home-nav-guard {
    display: none;
}

.header-nav-links.header-nav-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    height: 2px;
    background: var(--bm-orange, var(--secondary-color));
}

.header-cta {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(90deg, var(--bm-orange, var(--secondary-color)), var(--bm-orange-2, #ff7a1a));
    color: #fff;
    font-family: "Teko", var(--text-p), sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 16px 34px rgba(255, 90, 0, 0.25);
}

.home-header-actions {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.product-dropdown {
    background: rgba(6, 8, 7, 0.98);
    border-top-color: rgba(255, 255, 255, 0.08);
    border-radius: 0;
}

.product-dropdown-grid {
    max-width: 1160px;
}

.home-mega-menu {
    padding: 28px 56px 34px;
    background:
        radial-gradient(circle at 82% 12%, rgba(120, 183, 42, 0.13), transparent 24%),
        linear-gradient(180deg, rgba(9, 12, 10, 0.99), rgba(5, 7, 5, 0.99));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 34px 60px rgba(0, 0, 0, 0.42);
}

.home-mega-grid {
    max-width: 1280px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
}

.home-mega-column {
    min-height: 182px;
    padding: 22px 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
}

.home-mega-column:last-child {
    border-right: 0;
    border-bottom: 0;
}

.home-mega-media {
    min-height: 116px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 36%, rgba(255, 90, 0, 0.18), transparent 42%),
        rgba(255, 255, 255, 0.035);
    text-decoration: none;
}

.home-mega-media img {
    width: 88%;
    max-height: 94px;
    object-fit: contain;
    filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.52));
    transition: transform 0.2s ease;
}

.home-mega-column:hover .home-mega-media img {
    transform: scale(1.06);
}

.home-mega-column h2 {
    margin: 0 0 10px;
    color: #fff;
    font-family: "Teko", var(--text-p), sans-serif;
    font-size: 24px;
    line-height: 0.95;
    text-transform: uppercase;
}

.home-mega-column a:not(.home-mega-media) {
    width: fit-content;
    display: block;
    padding: 4px 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease;
}

.home-mega-column a:not(.home-mega-media):hover {
    color: var(--bm-orange, var(--secondary-color));
    transform: translateX(3px);
}

.home-mega-highlight {
    background: linear-gradient(135deg, rgba(120, 183, 42, 0.08), rgba(255, 90, 0, 0.06));
}

.product-dropdown-link {
    border-radius: 6px;
}

@media (max-width: 1180px) {
    .header {
        padding-left: 28px;
        padding-right: 28px;
    }

    .header-nav a,
    .header-nav button.header-nav-links {
        font-size: 13px;
    }

    .home-mega-menu {
        padding-left: 28px;
        padding-right: 28px;
    }

    .home-mega-column {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

@media (max-width: 1080px) {
    .header {
        min-height: 74px;
        flex-wrap: wrap;
    }

    .header-logo {
        width: 172px;
    }

    .header-cta {
        display: none;
    }

    .home-header-actions {
        margin-left: auto;
    }

    .header-nav-links.header-nav-active::after {
        display: none;
    }
}

@media (max-width: 980px) {
    .header {
        padding: 12px 18px;
        align-content: center;
        max-height: 100vh;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .header-brand {
        order: 1;
    }

    .home-header-actions {
        order: 2;
    }

    .menu-toggle {
        order: 3;
    }

    .header-nav {
        order: 4;
        width: 100%;
        max-height: calc(100vh - 86px);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        padding-top: 12px;
        background: rgba(4, 5, 4, 0.98);
    }

    .header-nav ul {
        align-items: flex-start;
        gap: 12px;
    }

    .product-dropdown {
        position: static;
        display: none;
        width: 100%;
        padding: 12px 0 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: 0;
    }

    .product-dropdown.open {
        display: block;
    }

    .product-dropdown-grid {
        grid-template-columns: 1fr;
    }

    .home-mega-menu {
        padding: 12px 0 0;
        box-shadow: none;
    }

    .home-mega-grid {
        gap: 10px;
    }

    .home-mega-column,
    .home-mega-column:nth-child(3n),
    .home-mega-column:nth-last-child(-n + 3) {
        min-height: auto;
        padding: 14px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        grid-template-columns: 70px minmax(0, 1fr);
        background: rgba(255, 255, 255, 0.035);
    }

    .home-mega-media {
        min-height: 70px;
    }

    .home-mega-media img {
        max-height: 56px;
    }

    .home-mega-column h2 {
        font-size: 22px;
    }
}

.header .product-dropdown.home-mega-menu {
    padding: 28px 56px 34px;
    background:
        radial-gradient(circle at 82% 12%, rgba(120, 183, 42, 0.13), transparent 24%),
        linear-gradient(180deg, rgba(9, 12, 10, 0.99), rgba(5, 7, 5, 0.99));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    box-shadow: 0 34px 60px rgba(0, 0, 0, 0.42);
}

.header .product-dropdown-grid.home-mega-grid {
    max-width: 1280px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
}

.header .home-mega-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 182px;
    padding: 22px 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    align-items: start;
}

.header .home-mega-media {
    min-height: 116px;
}

@media (max-width: 980px) {
    .header .product-dropdown.home-mega-menu {
        padding: 12px 0 0;
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    .header .product-dropdown-grid.home-mega-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .header .home-mega-column,
    .header .home-mega-column:nth-child(3n),
    .header .home-mega-column:nth-last-child(-n + 3) {
        min-height: auto;
        padding: 14px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        grid-template-columns: 70px minmax(0, 1fr);
        background: rgba(255, 255, 255, 0.035);
    }

    .header .home-mega-media {
        min-height: 70px;
    }
}

@media (max-width: 980px) {
    .header .nav-item-with-dropdown:hover .product-dropdown:not(.open),
    .header .nav-item-with-dropdown.dropdown-click-closed:hover .product-dropdown {
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: none;
    }

    .header .product-dropdown.open {
        display: block;
        pointer-events: auto;
    }

    .header .header-nav a:hover,
    .header .header-nav button.header-nav-links:hover,
    .header .header-nav button.header-nav-links[aria-expanded="false"]:not(.header-nav-active) {
        color: #f4f4f4;
    }

    .header .header-nav-links.header-nav-active,
    .header .header-nav a.header-nav-active:hover,
    .header .header-nav button.header-nav-links.header-nav-active:hover {
        color: var(--bm-orange, var(--secondary-color));
    }
}

@media (max-width: 980px) and (hover: hover) and (pointer: fine) {
    .header .header-nav a:hover,
    .header .header-nav button.header-nav-links:hover,
    .header .header-nav button.header-nav-links[aria-expanded="false"]:not(.header-nav-active):hover {
        color: var(--bm-orange, var(--secondary-color));
    }
}

/* Escala global de leitura do header */
html body {
    padding-top: 92px;
}

body .header {
    min-height: 92px;
}

.header .header-logo {
    width: 230px;
    max-width: 230px;
    max-height: 60px;
}

.header .header-nav ul {
    gap: 22px;
}

.header .header-nav a,
.header .header-nav button.header-nav-links {
    font-size: 17px;
}

.header .header-nav-links.header-nav-active::after {
    bottom: -33px;
}

.header .header-cta {
    min-height: 44px;
    padding: 0 20px;
    font-size: 17px;
}

@media (max-width: 1180px) {
    body .header {
        padding-left: 28px;
        padding-right: 28px;
    }

    .header .header-logo {
        width: 205px;
        max-width: 205px;
    }

    .header .header-nav ul {
        gap: 15px;
    }

    .header .header-nav a,
    .header .header-nav button.header-nav-links {
        font-size: 16px;
    }

    .header .header-cta {
        min-height: 42px;
        padding: 0 17px;
        font-size: 16px;
    }
}

@media (max-width: 1080px) {
    html body {
        padding-top: 82px;
    }

    body .header {
        min-height: 82px;
    }

    .header .header-logo {
        width: 190px;
        max-width: 190px;
    }
}

@media (max-width: 980px) {
    html body {
        padding-top: 80px;
    }

    body .header {
        min-height: 80px;
        padding: 13px 20px;
    }

    .header .header-logo {
        width: 188px;
        max-width: 188px;
    }

    .header .menu-toggle {
        gap: 5px;
        padding: 8px;
    }

    .header .menu-toggle span {
        width: 30px;
        height: 3px;
    }

    .header .menu-toggle.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .header .menu-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .header .header-nav {
        max-height: calc(100vh - 80px);
        padding-top: 14px;
    }

    .header .header-nav ul {
        gap: 4px;
        padding-top: 8px;
    }

    .header .header-nav a,
    .header .header-nav button.header-nav-links {
        min-height: 44px;
        padding: 10px 4px;
        display: flex;
        align-items: center;
        font-size: 20px;
    }

    .header .home-mega-column h2 {
        font-size: 24px;
    }

    .header .home-mega-column a:not(.home-mega-media) {
        font-size: 15px;
        line-height: 1.45;
    }
}

@media (max-width: 420px) {
    body .header {
        padding-left: 14px;
        padding-right: 14px;
    }

    .header .header-logo {
        width: 164px;
        max-width: 164px;
    }

    .header .header-nav a,
    .header .header-nav button.header-nav-links {
        font-size: 19px;
    }
}

/* Mega menu compacto de equipamentos */
.header .product-dropdown.home-mega-menu {
    max-height: calc(100vh - 92px);
    padding: 0;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 90, 0, 0.42);
    background: rgba(7, 9, 8, 0.98);
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.58);
}

.header .product-dropdown-grid.home-mega-grid-compact {
    width: min(1380px, calc(100% - 96px));
    max-width: 1380px;
    margin: 0 auto;
    padding: 24px 0 26px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
}

.header .home-mega-grid-compact .home-mega-category-column,
.header .home-mega-grid-compact .home-mega-category-column:nth-child(3n),
.header .home-mega-grid-compact .home-mega-category-column:nth-last-child(-n + 3) {
    min-width: 0;
    min-height: 280px;
    padding: 20px 22px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: transparent;
}

.header .home-mega-grid-compact .home-mega-category-column:last-child {
    border-right: 0;
}

.header .home-mega-grid-compact .home-mega-highlight {
    background: linear-gradient(180deg, rgba(120, 183, 42, 0.08), rgba(120, 183, 42, 0.015));
}

.header .home-mega-category-head,
.header .home-mega-column a.home-mega-category-head:not(.home-mega-media) {
    width: 100%;
    min-height: 58px;
    padding: 0;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 0 12px;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

.header .home-mega-category-icon {
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 90, 0, 0.42);
    border-radius: 4px;
    display: grid;
    place-items: center;
    background: rgba(255, 90, 0, 0.07);
}

.header .home-mega-category-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.header .home-mega-category-name {
    display: block;
    color: #f3f5f1;
    font-family: "Teko", "Poppins", sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: 0;
    text-transform: uppercase;
}

.header .home-mega-category-head small {
    display: block;
    margin-top: 5px;
    color: #92978f;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.3;
    text-transform: none;
}

.header .home-mega-category-count {
    grid-column: 2;
    margin-top: 7px;
    color: var(--bm-orange, var(--secondary-color));
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.header .home-mega-product-links {
    margin-top: 20px;
    display: grid;
    align-content: start;
    gap: 2px;
}

.header .home-mega-product-links a,
.header .home-mega-column .home-mega-product-links a:not(.home-mega-media) {
    width: 100%;
    min-height: 31px;
    padding: 6px 8px;
    border-left: 2px solid transparent;
    display: flex;
    align-items: center;
    color: #bec2bb;
    background: transparent;
    font-family: "Teko", "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header .home-mega-product-links a:hover,
.header .home-mega-column .home-mega-product-links a:not(.home-mega-media):hover {
    border-left-color: var(--bm-orange, var(--secondary-color));
    color: #fff;
    background: rgba(255, 255, 255, 0.035);
    transform: none;
}

.header .home-mega-empty {
    padding: 8px;
    color: #747972;
    font-size: 11px;
    line-height: 1.4;
}

.header .home-mega-all,
.header .home-mega-column a.home-mega-all:not(.home-mega-media) {
    width: 100%;
    min-height: 34px;
    margin-top: auto;
    padding: 8px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-end;
    color: var(--bm-orange, var(--secondary-color));
    font-family: "Teko", "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.header .home-mega-all::after {
    content: "\2192";
    margin-left: auto;
}

.header .home-mega-category-head:hover .home-mega-category-name,
.header .home-mega-column a.home-mega-category-head:not(.home-mega-media):hover .home-mega-category-name {
    color: var(--bm-orange, var(--secondary-color));
}

@media (max-width: 1180px) {
    .header .product-dropdown-grid.home-mega-grid-compact {
        width: min(100% - 48px, 1120px);
    }

    .header .home-mega-grid-compact .home-mega-category-column,
    .header .home-mega-grid-compact .home-mega-category-column:nth-child(3n),
    .header .home-mega-grid-compact .home-mega-category-column:nth-last-child(-n + 3) {
        padding: 18px 16px;
    }

    .header .home-mega-category-name {
        font-size: 22px;
    }
}

@media (max-width: 980px) {
    .header .product-dropdown.home-mega-menu {
        max-height: none;
        padding: 12px 0 4px;
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .header .product-dropdown-grid.home-mega-grid-compact {
        width: 100%;
        padding: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .header .home-mega-grid-compact .home-mega-category-column,
    .header .home-mega-grid-compact .home-mega-category-column:nth-child(3n),
    .header .home-mega-grid-compact .home-mega-category-column:nth-last-child(-n + 3) {
        min-height: 0;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        display: block;
        background: rgba(255, 255, 255, 0.025);
    }

    .header .home-mega-grid-compact .home-mega-category-column:last-child {
        grid-column: 1 / -1;
    }

    .header .home-mega-category-head,
    .header .home-mega-column a.home-mega-category-head:not(.home-mega-media) {
        min-height: 76px;
        padding: 10px 12px;
        grid-template-columns: 38px minmax(0, 1fr) auto;
        gap: 0 10px;
    }

    .header .home-mega-category-icon {
        width: 38px;
        height: 38px;
    }

    .header .home-mega-category-icon img {
        width: 21px;
        height: 21px;
    }

    .header .home-mega-category-name {
        font-size: 21px;
    }

    .header .home-mega-category-count {
        grid-column: 3;
        grid-row: 1 / 3;
        margin: 0;
        padding-left: 8px;
        color: #858a83;
        white-space: nowrap;
    }

    .header .home-mega-product-links,
    .header .home-mega-all,
    .header .home-mega-column a.home-mega-all:not(.home-mega-media) {
        display: none;
    }

    .header .nav-item-with-dropdown > button.dropdown-toggle.dropdown-no-arrow {
        width: 100%;
        justify-content: space-between;
        gap: 16px;
    }

    .header .nav-item-with-dropdown > button.dropdown-toggle.dropdown-no-arrow::after {
        content: "+";
        flex: 0 0 auto;
        width: 28px;
        height: 28px;
        margin-left: auto;
        border: 1px solid rgba(255, 90, 0, 0.5);
        border-radius: 4px;
        display: grid;
        place-items: center;
        color: var(--bm-orange, var(--secondary-color));
        font-family: "Poppins", sans-serif;
        font-size: 20px;
        font-weight: 500;
        line-height: 1;
    }

    .header .nav-item-with-dropdown > button.dropdown-toggle.dropdown-no-arrow[aria-expanded="true"]::after {
        content: "\2212";
    }
}

@media (max-width: 680px) {
    .header .product-dropdown-grid.home-mega-grid-compact {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .header .home-mega-grid-compact .home-mega-category-column:last-child {
        grid-column: auto;
    }

    .header .home-mega-category-head,
    .header .home-mega-column a.home-mega-category-head:not(.home-mega-media) {
        min-height: 66px;
        padding: 9px 10px;
    }

    .header .home-mega-category-name {
        font-size: 20px;
    }

    .header .home-mega-category-head small {
        margin-top: 3px;
        font-size: 9.5px;
    }
}

/* Padrao institucional aprovado para todos os cabecalhos */
html body {
    padding-top: 80px;
}

body .header {
    min-height: 80px;
    padding: 0 max(5%, calc((100% - 1240px) / 2));
    gap: 30px;
    flex-wrap: nowrap;
    overflow: visible;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 8, 8, 0.94);
    box-shadow: none;
    backdrop-filter: blur(14px);
}

.header .header-brand {
    flex: 0 0 auto;
}

.header .header-logo {
    width: 190px;
    max-width: 190px;
    max-height: 48px;
}

.header .header-nav {
    min-width: 0;
    flex: 1 1 auto;
}

.header .header-nav > ul {
    justify-content: center;
    gap: 24px;
}

.header .header-nav a,
.header .header-nav button.header-nav-links {
    min-height: 80px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.76);
    font-family: "Teko", var(--text-p), sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.header .header-nav a:hover,
.header .header-nav button.header-nav-links:hover,
.header .header-nav-links.header-nav-active {
    color: #fff;
}

.header .header-nav-links.header-nav-active::after {
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    display: block;
    background: var(--bm-orange, var(--secondary-color, #ff6200));
}

.header .home-header-actions {
    flex: 0 0 auto;
}

.header .header-cta {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--bm-orange, var(--secondary-color, #ff6200));
    border-radius: 4px;
    color: #fff;
    background: var(--bm-orange, var(--secondary-color, #ff6200));
    box-shadow: none;
    font-size: 16px;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.header .header-cta:hover {
    border-color: #e85800;
    background: #e85800;
    transform: translateY(-1px);
}

.header .product-dropdown.home-mega-menu {
    max-height: calc(100vh - 80px);
    border-top-color: rgba(255, 255, 255, 0.12);
    border-bottom: 2px solid var(--bm-orange, var(--secondary-color, #ff6200));
    background: rgba(10, 12, 11, 0.985);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.52);
}

.header .home-mega-grid-compact .home-mega-category-column,
.header .home-mega-grid-compact .home-mega-category-column:nth-child(3n),
.header .home-mega-grid-compact .home-mega-category-column:nth-last-child(-n + 3) {
    min-height: 250px;
}

.header .home-mega-grid-compact .home-mega-highlight {
    background: rgba(115, 185, 66, 0.055);
}

.header .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 4px;
    align-items: center;
    gap: 5px;
}

.header .menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 0;
}

.header .menu-toggle.open {
    border-color: var(--bm-orange, var(--secondary-color, #ff6200));
}

.header .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1180px) {
    body .header {
        gap: 22px;
    }

    .header .header-logo {
        width: 176px;
        max-width: 176px;
    }

    .header .header-nav > ul {
        gap: 16px;
    }

    .header .header-nav a,
    .header .header-nav button.header-nav-links {
        font-size: 15px;
    }

    .header .header-cta {
        min-height: 40px;
        padding: 0 15px;
        font-size: 15px;
    }
}

@media (max-width: 1080px) {
    .header .header-cta {
        display: none;
    }
}

@media (max-width: 980px) {
    html body {
        padding-top: 72px;
    }

    body .header {
        min-height: 72px;
        padding: 0 max(4%, 18px);
        flex-wrap: nowrap;
        overflow: visible;
    }

    .header .header-logo {
        width: 172px;
        max-width: 172px;
    }

    .header .home-header-actions {
        display: none;
    }

    .header .menu-toggle {
        margin-left: auto;
        display: flex;
    }

    .header .header-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 72px);
        padding: 0;
        overflow-y: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 2px solid var(--bm-orange, var(--secondary-color, #ff6200));
        background: rgba(8, 10, 9, 0.99);
        box-shadow: 0 24px 46px rgba(0, 0, 0, 0.5);
    }

    .header .header-nav > ul {
        width: min(92%, 760px);
        margin: 0 auto;
        padding: 14px 0 20px;
        align-items: stretch;
        gap: 0;
    }

    .header .header-nav > ul > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .header .header-nav > ul > li:last-child {
        border-bottom: 0;
    }

    .header .header-nav a,
    .header .header-nav button.header-nav-links {
        width: 100%;
        min-height: 48px;
        padding: 10px 2px;
        color: rgba(255, 255, 255, 0.82);
        font-size: 19px;
    }

    .header .header-nav-links.header-nav-active {
        color: var(--bm-orange, var(--secondary-color, #ff6200));
    }

    .header .header-nav-links.header-nav-active::after {
        display: none;
    }

    .header .product-dropdown.home-mega-menu {
        max-height: none;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .header .home-mega-grid-compact .home-mega-category-column,
    .header .home-mega-grid-compact .home-mega-category-column:nth-child(3n),
    .header .home-mega-grid-compact .home-mega-category-column:nth-last-child(-n + 3) {
        min-height: 0;
    }
}

@media (max-width: 420px) {
    body .header {
        padding-right: 14px;
        padding-left: 14px;
    }

    .header .header-logo {
        width: 154px;
        max-width: 154px;
    }
}
