/* =========================================================
   DECORARTE FLEX2
   Header / Navegação / Footer
   ========================================================= */

*{
  box-sizing:border-box;
}

.fx2-shell{
  width:min(var(--fx2-shell,1280px),calc(100% - 36px));
  margin:0 auto;
}

/* =========================================================
   HEADER
   ========================================================= */

.fx2-header{
  font-family:var(--fx2-font,Arial,sans-serif);
  background:#fff;
  color:var(--fx2-text,#181818);
  position:relative;
  z-index:900;
  overflow:visible;
}

/* =========================================================
   FAIXA FRETE
   ========================================================= */

.fx2-adbar{
  height:28px;
  background:var(--fx2-black,#181818);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:800;
  letter-spacing:.03em;
  overflow:hidden;
  position:relative;
}

.fx2-ad-message{
  display:none;
  white-space:nowrap;
}

.fx2-ad-message.is-active{
  display:block;
}

/* =========================================================
   CONTATO SUPERIOR
   ========================================================= */

.fx2-contact{
  background:#fff;
  border-bottom:1px solid var(--fx2-line,#e7e7e7);
  font-size:11px;
}

.fx2-contact-inner{
  height:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.fx2-contact a{
  text-decoration:none;
  color:#111;
}

.fx2-contact-email{
  display:flex;
  align-items:center;
  gap:5px;
}

.fx2-social{
  display:flex;
  align-items:center;
  gap:16px;
  font-weight:800;
  font-size:13px;
}

/* =========================================================
   ÁREA LOGO / BUSCA / CONTA
   ========================================================= */

.fx2-main{
  background:#fff;
  position:relative;
  z-index:902;
}

.fx2-main-inner{
  min-height:88px;
  display:grid;
  grid-template-columns:220px minmax(300px,1fr) 310px;
  align-items:center;
  gap:32px;
}

/* =========================================================
   LOGO
   ========================================================= */

.fx2-logo{
  text-decoration:none;
  color:#111;
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  justify-self:start;
}

.fx2-logo picture,
.fx2-logo img{
  display:block;
  max-width:190px;
  max-height:66px;
  object-fit:contain;
}

.fx2-logo-word{
  font-weight:1000;
  font-size:25px;
  line-height:.85;
  letter-spacing:-1px;
}

.fx2-logo-word span{
  color:#c99a3b;
}

.fx2-logo small{
  letter-spacing:.65em;
  font-size:7px;
  font-weight:800;
  margin-left:.65em;
}

/* =========================================================
   BUSCA
   ========================================================= */

.fx2-search{
  height:42px;
  border:1px solid #e0e0e0;
  display:flex;
  align-items:center;
  background:#fff;
  min-width:0;
}

.fx2-search input{
  border:0;
  outline:0;
  flex:1;
  min-width:0;
  height:100%;
  padding:0 15px;
  background:transparent;
  font:inherit;
  color:#222;
}

.fx2-search input::placeholder{
  color:#777;
}

.fx2-search button{
  border:0;
  background:transparent;
  width:48px;
  height:100%;
  font-size:23px;
  cursor:pointer;
}

/* =========================================================
   CONTA / CARRINHO
   ========================================================= */

.fx2-actions{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:28px;
  white-space:nowrap;
}

.fx2-account,
.fx2-cart{
  text-decoration:none;
  color:#111;
  display:flex;
  align-items:center;
  gap:9px;
  font-size:11px;
}

.fx2-user-circle{
  width:23px;
  height:23px;
  border:1.7px solid #111;
  border-radius:50%;
  display:inline-block;
}

.fx2-cart{
  position:relative;
}

.fx2-bag{
  font-size:24px;
  line-height:1;
}

.fx2-cart b{
  position:absolute;
  right:-9px;
  bottom:-8px;
  background:#f1a200;
  color:#fff;
  border-radius:999px;
  min-width:18px;
  height:18px;
  display:grid;
  place-items:center;
  font-size:10px;
}

/* =========================================================
   MENU PRINCIPAL
   ========================================================= */

.fx2-nav{
  background:var(--fx2-black,#181818);
  color:#fff;
  position:relative;
  z-index:950;
  overflow:visible;
}

.fx2-nav-inner{
  min-height:52px;
  height:auto;
  display:flex;
  align-items:flex-start;
  overflow:visible;
}

/* =========================================================
   BOTÃO PRODUTOS
   ========================================================= */

.fx2-products-trigger{
  display:flex;
  align-items:center;
  gap:8px;
  height:52px;
  flex:0 0 auto;
  background:#202020;
  color:#fff;
  text-decoration:none;
  padding:0 18px;
  font-size:11px;
  font-weight:800;
  white-space:nowrap;
  transition:background .15s ease;
}

.fx2-products-trigger:hover{
  background:#292929;
}

/* =========================================================
   LISTA MENU
   ========================================================= */

.fx2-menu{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  align-content:flex-start;
  list-style:none;
  margin:0;
  padding:0;
  min-width:0;
  flex:1;
  overflow:visible;
}

/* =========================================================
   ITEM PRINCIPAL
   ========================================================= */

.fx2-menu-item{
  position:relative;
  display:flex;
  align-items:stretch;
  height:52px;
  flex:0 0 auto;
}

.fx2-menu-item > a{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  height:52px;
  color:#fff;
  background:transparent;
  text-decoration:none;
  padding:0 12px;
  font-size:10.5px;
  font-weight:700;
  line-height:1.15;
  white-space:nowrap;
  transition:
    background-color .15s ease,
    color .15s ease;
}

.fx2-menu > .fx2-menu-item:hover > a,
.fx2-menu > .fx2-menu-item > a:hover,
.fx2-menu > .fx2-menu-item > a:focus{
  background:#222;
  color:#fff;
}

/* =========================================================
   SETINHA
   ========================================================= */

.fx2-menu-item > a i{
  font-style:normal;
  font-size:10px;
  opacity:.75;
  margin-left:2px;
}

/* =========================================================
   BOTÃO MOBILE SUBMENU
   ========================================================= */

.fx2-sub-toggle{
  display:none;
}

/* =========================================================
   DROPDOWN / SUBMENU
   ========================================================= */

.fx2-submenu{
  display:none;
  position:absolute;
  left:0;
  top:100%;
  min-width:300px;
  max-width:380px;
  list-style:none;
  margin:0;
  padding:7px 0;
  background:#fff !important;
  color:#111 !important;
  border:1px solid #e5e5e5;
  box-shadow:
    0 8px 20px rgba(0,0,0,.08),
    0 18px 45px rgba(0,0,0,.10);
  z-index:9999;
}

/* =========================================================
   ITEM DO SUBMENU
   ========================================================= */

.fx2-submenu .fx2-menu-item{
  display:block;
  position:relative;
  width:100%;
  height:auto;
  min-height:0;
  border:0;
  background:#fff !important;
}

/* =========================================================
   LINK DO SUBMENU
   ========================================================= */

.fx2-submenu .fx2-menu-item > a{
  display:flex;
  width:100%;
  height:auto;
  min-height:43px;
  align-items:center;
  justify-content:space-between;
  padding:11px 18px;
  color:#181818 !important;
  background:#fff !important;
  font-size:11px;
  font-weight:600;
  line-height:1.4;
  white-space:normal;
  border:0;
}

/* =========================================================
   CORREÇÃO DO SUBMENU FICANDO ESCURO
   ========================================================= */

.fx2-submenu .fx2-menu-item:hover,
.fx2-submenu .fx2-menu-item:focus-within{
  background:#f5f5f5 !important;
}

.fx2-submenu .fx2-menu-item:hover > a,
.fx2-submenu .fx2-menu-item > a:hover,
.fx2-submenu .fx2-menu-item > a:focus{
  background:#f5f5f5 !important;
  color:#111 !important;
}

.fx2-submenu .fx2-menu-item.active > a,
.fx2-submenu .fx2-menu-item.is-active > a,
.fx2-submenu .fx2-menu-item.current-menu-item > a,
.fx2-submenu .fx2-menu-item.current-menu-ancestor > a{
  background:#f2f2f2 !important;
  color:#111 !important;
}

.fx2-submenu .fx2-menu-item > a:visited{
  color:#181818 !important;
}

/* =========================================================
   SETA DO SUBMENU
   ========================================================= */

.fx2-submenu .fx2-menu-item > a i{
  color:#555;
  opacity:.8;
}

/* =========================================================
   DIVISÃO DISCRETA DOS ITENS
   ========================================================= */

.fx2-submenu > .fx2-menu-item + .fx2-menu-item{
  border-top:1px solid #f3f3f3;
}

/* =========================================================
   SUBMENU SEGUNDO NÍVEL
   ========================================================= */

.fx2-submenu .fx2-submenu{
  left:100%;
  top:-8px;
  min-width:280px;
  max-width:360px;
  background:#fff !important;
  z-index:10000;
}

.fx2-submenu .fx2-has-children{
  position:relative;
}

/* =========================================================
   MOSTRAR DROPDOWN
   ========================================================= */

.fx2-has-children:hover > .fx2-submenu{
  display:block;
}

/* =========================================================
   ITEM ATIVO MENU PRINCIPAL
   ========================================================= */

.fx2-menu > .fx2-menu-item.active > a,
.fx2-menu > .fx2-menu-item.is-active > a,
.fx2-menu > .fx2-menu-item.current-menu-item > a,
.fx2-menu > .fx2-menu-item.current-menu-ancestor > a{
  background:#222;
  color:#fff;
}

/* =========================================================
   PROTEÇÃO CONTRA BANNER / SLIDER
   ========================================================= */

.fx2-header{
  isolation:isolate;
}

.fx2-nav{
  isolation:isolate;
}

/* =========================================================
   ELEMENTOS MOBILE ESCONDIDOS NO DESKTOP
   ========================================================= */

.fx2-mobile-menu-button,
.fx2-mobile-nav-head,
.fx2-menu-overlay{
  display:none;
}

/* =========================================================
   NEWSLETTER
   ========================================================= */

.fx2-newsletter{
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
  background:#f7f7f7;
  padding:22px 0;
  font-family:var(--fx2-font,Arial,sans-serif);
}

.fx2-newsletter-inner{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:30px;
  align-items:center;
}

.fx2-news-title strong{
  font-size:15px;
}

.fx2-news-form{
  display:grid;
  grid-template-columns:1fr 1fr 54px;
  gap:8px;
}

.fx2-news-form input{
  height:38px;
  border:1px solid #d8d8d8;
  padding:0 12px;
  background:#fff;
}

.fx2-news-form button{
  border:0;
  background:#181818;
  color:#fff;
  font-weight:800;
  cursor:pointer;
}

/* =========================================================
   FOOTER
   ========================================================= */

.fx2-footer{
  font-family:var(--fx2-font,Arial,sans-serif);
  background:#fff;
  color:#222;
}

.fx2-footer-main{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:70px;
  padding:44px 0 30px;
}

.fx2-footer h3,
.fx2-footer h4{
  margin:0 0 15px;
  font-size:14px;
}

.fx2-footer p{
  font-size:12px;
  line-height:1.7;
  color:#555;
  margin:0;
}

.fx2-footer-links{
  display:flex;
  flex-direction:column;
  gap:9px;
}

.fx2-footer-links a,
.fx2-instagram{
  font-size:12px;
  color:#444;
  text-decoration:none;
}

.fx2-instagram{
  display:inline-block;
  margin-top:15px;
}

.fx2-contact-list{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.fx2-footer-meta{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:45px;
  border-top:1px solid #eee;
  padding:25px 0;
}

.fx2-badges{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}

.fx2-badges span{
  font-size:10px;
  border:1px solid #ddd;
  background:#fff;
  padding:6px 8px;
  border-radius:3px;
}

.fx2-footer-bottom{
  border-top:1px solid #eee;
  font-size:10px;
  color:#666;
  padding:16px 0;
}

/* =========================================================
   WHATSAPP
   ========================================================= */

.fx2-whatsapp{
  position:fixed;
  right:20px;
  bottom:20px;
  width:48px;
  height:48px;
  border-radius:50%;
  background:#20b95b;
  color:#fff;
  display:grid;
  place-items:center;
  text-decoration:none;
  font-size:24px;
  z-index:100;
}

/* =========================================================
   PROTEÇÃO CONTRA CSS ANTIGO
   ========================================================= */

.fx2-header *,
.fx2-header .fx2-nav *{
  box-sizing:border-box;
}

/* =========================================================
   DESKTOP ENTRE 1300px E 1700px
   ========================================================= */

@media(max-width:1500px) and (min-width:801px){

  .fx2-menu-item > a{
    padding-left:10px;
    padding-right:10px;
    font-size:10px;
  }

  .fx2-products-trigger{
    padding-left:15px;
    padding-right:15px;
  }
}

/* =========================================================
   NOTEBOOK / DESKTOP MENOR
   ========================================================= */

@media(max-width:1300px) and (min-width:801px){

  .fx2-main-inner{
    grid-template-columns:
      190px
      minmax(260px,1fr)
      270px;
    gap:20px;
  }

  .fx2-menu-item > a{
    padding-left:9px;
    padding-right:9px;
    font-size:9.7px;
  }

  .fx2-products-trigger{
    padding:0 13px;
    font-size:10.5px;
  }
}

/* =========================================================
   DESKTOP PEQUENO
   ========================================================= */

@media(max-width:1120px) and (min-width:801px){

  .fx2-main-inner{
    grid-template-columns:
      175px
      minmax(200px,1fr)
      245px;
    gap:16px;
  }

  .fx2-logo picture,
  .fx2-logo img{
    max-width:170px;
  }

  .fx2-actions{
    gap:18px;
  }

  .fx2-menu-item > a{
    padding-left:8px;
    padding-right:8px;
    font-size:9.2px;
  }

  .fx2-products-trigger{
    padding:0 11px;
    font-size:10px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:800px){

  .fx2-shell{
    width:calc(100% - 24px);
  }

  .fx2-adbar{
    height:26px;
    font-size:10px;
  }

  .fx2-contact{
    display:none;
  }

  .fx2-main-inner{
    min-height:62px;
    display:grid;
    grid-template-columns:
      40px
      1fr
      auto;
    gap:10px;
  }

  .fx2-mobile-menu-button{
    display:flex;
    width:34px;
    height:34px;
    background:transparent;
    border:0;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    cursor:pointer;
  }

  .fx2-mobile-menu-button span{
    display:block;
    width:19px;
    height:1.5px;
    background:#111;
  }

  .fx2-logo{
    justify-self:center;
  }

  .fx2-logo picture,
  .fx2-logo img{
    max-width:130px;
    max-height:45px;
  }

  .fx2-logo-word{
    font-size:20px;
  }

  .fx2-search{
    grid-column:1/-1;
    grid-row:2;
    height:38px;
    margin-bottom:10px;
  }

  .fx2-actions{
    gap:14px;
  }

  .fx2-account span:last-child{
    display:none;
  }

  .fx2-user-circle{
    width:21px;
    height:21px;
  }

  .fx2-cart b{
    right:-7px;
  }

  .fx2-nav{
    position:fixed;
    left:0;
    top:0;
    bottom:0;
    width:min(88vw,350px);
    z-index:260;
    transform:translateX(-105%);
    transition:transform .24s ease;
    overflow-y:auto;
    overflow-x:hidden;
    background:#fff;
    color:#111;
    box-shadow:10px 0 30px rgba(0,0,0,.18);
  }

  .fx2-nav.is-open{
    transform:none;
  }

  .fx2-mobile-nav-head{
    height:58px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 18px;
    background:#fff;
    border-bottom:1px solid #eee;
  }

  .fx2-mobile-nav-head strong{
    font-size:14px;
  }

  .fx2-mobile-nav-head button{
    border:0;
    background:transparent;
    font-size:26px;
    cursor:pointer;
  }

  .fx2-nav-inner{
    width:100%;
    height:auto;
    min-height:0;
    display:block;
    margin:0;
    overflow:visible;
  }

  .fx2-products-trigger{
    width:100%;
    height:46px;
    color:#111;
    background:#f6f6f6;
    padding:0 18px;
    font-size:11px;
  }

  .fx2-products-trigger:hover{
    background:#efefef;
  }

  .fx2-menu{
    display:block;
    width:100%;
    margin:0;
    padding:0;
  }

  .fx2-menu-item{
    display:block;
    width:100%;
    height:auto;
    border-bottom:1px solid #eee;
  }

  .fx2-menu-item > a{
    color:#111;
    width:100%;
    height:auto;
    min-height:46px;
    padding:
      12px
      48px
      12px
      18px;
    font-size:11px;
    justify-content:space-between;
    white-space:normal;
    background:#fff;
  }

  .fx2-menu > .fx2-menu-item:hover > a,
  .fx2-menu > .fx2-menu-item > a:hover,
  .fx2-menu > .fx2-menu-item > a:focus{
    color:#111;
    background:#f7f7f7;
  }

  .fx2-sub-toggle{
    display:block;
    position:absolute;
    right:0;
    top:0;
    width:46px;
    height:46px;
    border:0;
    background:transparent;
    font-size:16px;
    z-index:4;
    cursor:pointer;
  }

  .fx2-submenu{
    position:static;
    display:none;
    width:100%;
    max-width:none;
    min-width:0;
    box-shadow:none;
    border:0;
    border-top:1px solid #eee;
    padding:0;
    background:#f8f8f8 !important;
  }

  .fx2-menu-item.is-open > .fx2-submenu{
    display:block;
  }

  .fx2-submenu .fx2-menu-item{
    background:#f8f8f8 !important;
  }

  .fx2-submenu .fx2-menu-item > a{
    min-height:43px;
    padding:
      11px
      48px
      11px
      32px;
    background:#f8f8f8 !important;
    color:#111 !important;
    font-size:11px;
  }

  .fx2-submenu .fx2-menu-item:hover > a,
  .fx2-submenu .fx2-menu-item > a:hover,
  .fx2-submenu .fx2-menu-item > a:focus{
    background:#efefef !important;
    color:#111 !important;
  }

  .fx2-submenu .fx2-submenu{
    position:static;
    width:100%;
    min-width:0;
    max-width:none;
    background:#f3f3f3 !important;
  }

  .fx2-submenu .fx2-submenu .fx2-menu-item{
    background:#f3f3f3 !important;
  }

  .fx2-submenu .fx2-submenu .fx2-menu-item > a{
    padding-left:46px;
    background:#f3f3f3 !important;
  }

  .fx2-has-children:hover > .fx2-submenu{
    display:none;
  }

  .fx2-has-children.is-open > .fx2-submenu{
    display:block;
  }

  .fx2-menu-overlay{
    display:block;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:250;
    opacity:0;
    visibility:hidden;
    transition:
      opacity .2s ease,
      visibility .2s ease;
  }

  .fx2-menu-overlay.is-open{
    opacity:1;
    visibility:visible;
  }

  .fx2-newsletter-inner{
    grid-template-columns:1fr;
    gap:12px;
  }

  .fx2-news-form{
    grid-template-columns:
      1fr
      1fr
      46px;
  }

  .fx2-footer-main{
    grid-template-columns:1fr;
    gap:28px;
    padding:32px 0;
  }

  .fx2-footer-meta{
    grid-template-columns:1fr;
    gap:22px;
  }
}

/* =========================================================
   FIX V4 — FORÇA O MENU DESKTOP A QUEBRAR EM DUAS LINHAS
   =========================================================
   O grid abaixo impede que a lista de links use a largura
   do próprio conteúdo e avance para fora da tela.
   ========================================================= */

@media (min-width:801px){

  .fx2-header .fx2-nav{
    width:100% !important;
    height:auto !important;
    min-height:52px !important;
    overflow:visible !important;
  }

  .fx2-header .fx2-nav .fx2-shell.fx2-nav-inner{
    width:min(var(--fx2-shell,1280px),calc(100% - 36px)) !important;
    max-width:var(--fx2-shell,1280px) !important;
    margin-left:auto !important;
    margin-right:auto !important;

    display:grid !important;
    grid-template-columns:max-content minmax(0,1fr) !important;

    align-items:start !important;

    height:auto !important;
    min-height:52px !important;

    overflow:visible !important;
  }

  .fx2-header .fx2-products-trigger{
    grid-column:1 !important;
    grid-row:1 / -1 !important;

    width:auto !important;
    min-width:max-content !important;

    height:52px !important;

    align-self:start !important;
  }

  .fx2-header .fx2-menu{
    grid-column:2 !important;

    display:flex !important;
    flex-flow:row wrap !important;
    flex-wrap:wrap !important;

    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;

    margin:0 !important;
    padding:0 !important;

    overflow:visible !important;

    align-items:flex-start !important;
    align-content:flex-start !important;

    white-space:normal !important;
  }

  .fx2-header .fx2-menu > .fx2-menu-item{
    display:flex !important;

    flex:0 0 auto !important;

    width:auto !important;
    max-width:100% !important;

    height:52px !important;

    margin:0 !important;
    padding:0 !important;

    position:relative !important;
  }

  .fx2-header .fx2-menu > .fx2-menu-item > a{
    display:flex !important;

    width:auto !important;
    max-width:100% !important;

    height:52px !important;

    padding-left:12px !important;
    padding-right:12px !important;

    white-space:nowrap !important;
  }

  /* Dropdown não participa da quebra do menu principal */
  .fx2-header .fx2-menu .fx2-submenu{
    position:absolute !important;
    top:100% !important;

    width:auto !important;
    min-width:300px !important;
    max-width:380px !important;

    flex:none !important;

    background:#fff !important;

    overflow:visible !important;

    z-index:99999 !important;
  }

  .fx2-header .fx2-menu .fx2-submenu .fx2-menu-item{
    width:100% !important;
    height:auto !important;
    display:block !important;
  }

  .fx2-header .fx2-menu .fx2-submenu .fx2-menu-item > a{
    width:100% !important;
    height:auto !important;
    min-height:43px !important;

    white-space:normal !important;

    color:#181818 !important;
    background:#fff !important;
  }

  .fx2-header .fx2-menu .fx2-submenu .fx2-menu-item:hover > a,
  .fx2-header .fx2-menu .fx2-submenu .fx2-menu-item > a:hover,
  .fx2-header .fx2-menu .fx2-submenu .fx2-menu-item > a:focus{
    color:#111 !important;
    background:#f4f4f4 !important;
  }
}

/* Em telas grandes, aumenta um pouco a área útil do menu sem
   permitir que ela ultrapasse a viewport. */
@media (min-width:1501px){
  .fx2-header .fx2-nav .fx2-shell.fx2-nav-inner{
    width:min(var(--fx2-shell,1700px),calc(100% - 80px)) !important;
  }
}


/* =========================================================
   FIX V5 — MENU CENTRALIZADO COMO O SITE OFICIAL
   ========================================================= */

@media (min-width:801px){

  .fx2-header .fx2-contact-inner,
  .fx2-header .fx2-main-inner,
  .fx2-header .fx2-nav .fx2-shell.fx2-nav-inner{
    width:min(1320px,calc(100% - 36px)) !important;
    max-width:1320px !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  .fx2-header .fx2-nav{
    width:100% !important;
    height:auto !important;
    min-height:52px !important;
    overflow:visible !important;
  }

  .fx2-header .fx2-nav .fx2-shell.fx2-nav-inner{
    display:flex !important;
    flex-flow:row wrap !important;
    flex-wrap:wrap !important;
    justify-content:center !important;
    align-items:stretch !important;
    align-content:flex-start !important;
    height:auto !important;
    min-height:52px !important;
    padding:0 !important;
    overflow:visible !important;
  }

  .fx2-header .fx2-products-trigger{
    display:flex !important;
    flex:0 0 auto !important;
    width:auto !important;
    min-width:0 !important;
    height:52px !important;
    margin:0 !important;
    align-items:center !important;
    padding-left:18px !important;
    padding-right:18px !important;
    background:#202020 !important;
    color:#fff !important;
  }

  .fx2-header .fx2-menu{
    display:contents !important;
    list-style:none !important;
    margin:0 !important;
    padding:0 !important;
  }

  .fx2-header .fx2-menu > .fx2-menu-item{
    display:flex !important;
    flex:0 0 auto !important;
    position:relative !important;
    width:auto !important;
    max-width:100% !important;
    height:52px !important;
    margin:0 !important;
    padding:0 !important;
    list-style:none !important;
  }

  .fx2-header .fx2-menu > .fx2-menu-item > a{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:auto !important;
    max-width:100% !important;
    height:52px !important;
    padding-left:13px !important;
    padding-right:13px !important;
    white-space:nowrap !important;
    color:#fff !important;
    background:transparent !important;
  }

  .fx2-header .fx2-menu > .fx2-menu-item:hover > a,
  .fx2-header .fx2-menu > .fx2-menu-item > a:hover,
  .fx2-header .fx2-menu > .fx2-menu-item > a:focus{
    background:#202020 !important;
    color:#fff !important;
  }

  .fx2-header .fx2-menu .fx2-submenu{
    display:none;
    position:absolute !important;
    left:0 !important;
    top:100% !important;
    width:auto !important;
    min-width:300px !important;
    max-width:380px !important;
    margin:0 !important;
    padding:7px 0 !important;
    background:#fff !important;
    color:#111 !important;
    border:1px solid #e5e5e5 !important;
    overflow:visible !important;
    z-index:99999 !important;
  }

  .fx2-header .fx2-has-children:hover > .fx2-submenu{
    display:block !important;
  }

  .fx2-header .fx2-submenu .fx2-menu-item{
    display:block !important;
    width:100% !important;
    height:auto !important;
    min-height:0 !important;
    background:#fff !important;
  }

  .fx2-header .fx2-submenu .fx2-menu-item > a{
    display:flex !important;
    width:100% !important;
    height:auto !important;
    min-height:43px !important;
    padding:11px 18px !important;
    justify-content:space-between !important;
    white-space:normal !important;
    color:#181818 !important;
    background:#fff !important;
  }

  .fx2-header .fx2-submenu .fx2-menu-item:hover > a,
  .fx2-header .fx2-submenu .fx2-menu-item > a:hover,
  .fx2-header .fx2-submenu .fx2-menu-item > a:focus,
  .fx2-header .fx2-submenu .fx2-menu-item.active > a,
  .fx2-header .fx2-submenu .fx2-menu-item.is-active > a,
  .fx2-header .fx2-submenu .fx2-menu-item.current-menu-item > a,
  .fx2-header .fx2-submenu .fx2-menu-item.current-menu-ancestor > a{
    color:#111 !important;
    background:#f4f4f4 !important;
  }

  .fx2-header .fx2-submenu .fx2-submenu{
    left:100% !important;
    top:-8px !important;
    min-width:280px !important;
  }
}

@media (max-width:1350px) and (min-width:801px){
  .fx2-header .fx2-contact-inner,
  .fx2-header .fx2-main-inner,
  .fx2-header .fx2-nav .fx2-shell.fx2-nav-inner{
    width:calc(100% - 28px) !important;
    max-width:1320px !important;
  }

  .fx2-header .fx2-menu > .fx2-menu-item > a{
    padding-left:10px !important;
    padding-right:10px !important;
    font-size:9.8px !important;
  }

  .fx2-header .fx2-products-trigger{
    padding-left:14px !important;
    padding-right:14px !important;
  }
}

/* =========================================================
   V6 — MENU MAIS COMPACTO
   ========================================================= */

@media (min-width:801px){

  .fx2-header .fx2-nav{
    min-height:0 !important;
  }

  .fx2-header .fx2-nav .fx2-shell.fx2-nav-inner{
    min-height:0 !important;
    padding-top:0 !important;
    padding-bottom:0 !important;
    row-gap:0 !important;
  }

  /* BOTÃO PRODUTOS */
  .fx2-header .fx2-products-trigger{
    height:42px !important;
    min-height:42px !important;
    padding-top:0 !important;
    padding-bottom:0 !important;
  }

  /* ITENS DO MENU */
  .fx2-header .fx2-menu > .fx2-menu-item{
    height:42px !important;
    min-height:42px !important;
  }

  .fx2-header .fx2-menu > .fx2-menu-item > a{
    height:42px !important;
    min-height:42px !important;
    padding-top:0 !important;
    padding-bottom:0 !important;
  }
}

/* REMOVE ESPAÇO PRETO ABAIXO DO MENU */
@media (min-width:801px){

  .fx2-header .fx2-nav{
    height:auto !important;
    min-height:0 !important;
    padding:0 !important;
    margin:0 !important;
  }

  .fx2-header .fx2-nav .fx2-shell.fx2-nav-inner{
    height:auto !important;
    min-height:0 !important;

    padding-top:0 !important;
    padding-bottom:0 !important;

    margin-top:0 !important;
    margin-bottom:0 !important;

    row-gap:0 !important;
  }

  .fx2-header .fx2-products-trigger,
  .fx2-header .fx2-menu > .fx2-menu-item,
  .fx2-header .fx2-menu > .fx2-menu-item > a{
    height:40px !important;
    min-height:40px !important;
  }
}

/* =========================================================
   V8 - REMOVE LINHA VAZIA ABAIXO DO MENU
   ========================================================= */

@media (min-width:801px){

  /* Remove clearfix/pseudo-elementos que viram uma linha no flex */
  .fx2-header .fx2-nav .fx2-nav-inner::before,
  .fx2-header .fx2-nav .fx2-nav-inner::after,
  .fx2-header .fx2-nav .fx2-shell::before,
  .fx2-header .fx2-nav .fx2-shell::after{
    content:none !important;
    display:none !important;
  }

  /* Barra preta somente do tamanho real das linhas */
  .fx2-header .fx2-nav{
    height:auto !important;
    min-height:0 !important;
    padding:0 !important;
    margin:0 !important;
    border:0 !important;
  }

  .fx2-header .fx2-nav .fx2-shell.fx2-nav-inner{
    height:auto !important;
    min-height:0 !important;
    max-height:none !important;

    padding:0 !important;
    margin-top:0 !important;
    margin-bottom:0 !important;

    gap:0 !important;
    row-gap:0 !important;

    align-content:flex-start !important;
  }

  /* Mantém menu compacto */
  .fx2-header .fx2-products-trigger,
  .fx2-header .fx2-menu > .fx2-menu-item,
  .fx2-header .fx2-menu > .fx2-menu-item > a{
    height:40px !important;
    min-height:40px !important;
    max-height:40px !important;
  }
}


/* =========================================================
   V9 — CARRINHO + RODAPÉ PREMIUM
   ========================================================= */
.fx2-bag{
  width:26px!important;
  height:26px!important;
  display:grid!important;
  place-items:center!important;
  font-size:0!important;
  color:#111;
}
.fx2-bag svg{
  width:25px;
  height:25px;
  display:block;
}
.fx2-cart b{
  right:-7px!important;
  bottom:-7px!important;
  min-width:18px;
  padding:0 4px;
  box-shadow:0 0 0 2px #fff;
}

.fx2-news-title{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.fx2-news-title small{
  color:#777;
  font-size:10.5px;
  line-height:1.35;
}

.fx2-instagram{
  display:inline-flex!important;
  align-items:center;
  gap:7px;
  margin-top:16px;
}
.fx2-footer-inline-icon{
  width:18px;
  height:18px;
  display:grid;
  place-items:center;
}
.fx2-footer-inline-icon svg{width:17px;height:17px}

.fx2-contact-list{
  display:flex;
  flex-direction:column;
  gap:11px;
}
.fx2-contact-list>span{
  display:grid;
  grid-template-columns:20px minmax(0,1fr);
  align-items:start;
  gap:8px;
  color:#555;
}
.fx2-contact-list i{
  color:#a96f24;
  display:grid;
  place-items:center;
  font-style:normal;
}
.fx2-contact-list i svg{width:17px;height:17px}
.fx2-contact-list b{
  font-size:11px;
  line-height:1.5;
  font-weight:500;
  color:#444;
}

.fx2-footer-trust{
  border-top:1px solid #eee;
  background:#fbfbfa;
}
.fx2-footer-trust-grid{
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(220px,.8fr) minmax(260px,1fr);
  gap:36px;
  padding:28px 0 24px;
  align-items:start;
}
.fx2-trust-block h4{
  margin:0 0 13px;
  font-size:12px;
  line-height:1.2;
  color:#222;
  font-weight:700;
}
.fx2-payment-logos{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}
.fx2-payment-logo{
  width:58px;
  height:38px;
  border:1px solid #e4e4e4;
  border-radius:6px;
  background:#fff;
  display:grid;
  place-items:center;
  padding:4px 6px;
}
.fx2-payment-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}
.fx2-payment-fallback{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  padding:0 10px;
  border:1px solid #e4e4e4;
  border-radius:6px;
  background:#fff;
  font-size:10px;
}
.fx2-shipping-list{
  display:flex;
  flex-direction:column;
  gap:9px;
}
.fx2-shipping-list>span{
  display:flex;
  align-items:center;
  gap:9px;
  min-height:36px;
  color:#333;
}
.fx2-shipping-list i{
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fff7ec;
  color:#a96f24;
  border:1px solid #ead8bf;
  font-style:normal;
}
.fx2-shipping-list i svg{width:17px;height:17px}
.fx2-shipping-list b{
  font-size:11px;
  font-weight:600;
}
.fx2-security-image{
  display:block;
  width:min(100%,300px);
  height:auto;
  max-height:78px;
  object-fit:contain;
  object-position:left center;
}
.fx2-inpi-row{
  border-top:1px solid #ececec;
  padding:20px 0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.fx2-inpi-copy{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:180px;
}
.fx2-inpi-copy strong{
  font-size:12px;
  color:#222;
}
.fx2-inpi-copy span{
  font-size:10.5px;
  color:#777;
  line-height:1.4;
}
.fx2-inpi-image{
  display:block;
  width:280px;
  max-width:44%;
  height:auto;
  mix-blend-mode:multiply;
}
.fx2-whatsapp svg{
  width:24px;
  height:24px;
}

@media(max-width:800px){
  .fx2-footer-trust-grid{
    grid-template-columns:1fr;
    gap:24px;
    padding:24px 0;
  }
  .fx2-payment-logos{gap:6px}
  .fx2-payment-logo{width:54px;height:36px}
  .fx2-security-image{width:min(100%,320px);max-height:84px}
  .fx2-inpi-row{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }
  .fx2-inpi-image{
    width:min(100%,360px);
    max-width:100%;
  }
}
