@charset "utf-8";

/* Fonte: herda do padrao.css (Inter) */
.bk_topmenu,
.painel_Menu { font-family: inherit; }

/* =========================
   BARRA SUPERIOR
   ========================= */
.bk_topmenu{
  width: 100%;
  height: 55px;
  background: #000;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.espaco_bktopmenu{
  width: 100%;
  height: 55px;
  background: #FF0;
  margin-bottom: 15px;
}

/* Botões topo */
.BTmenu,
.BTbusca{
  width: 50px;
  height: 50px;
  background-size: 50px 50px;
  cursor: pointer;
  transition: filter .2s ease, transform .1s ease;
  outline: none;
}

.BTmenu{
  background: url(../imagens/menu_top/bt-mobile.svg) no-repeat center center;
}
.BTbusca{
  background: url(../imagens/menu_top/bt_pesquisa.svg) no-repeat center center;
}

.BTmenu:hover,
.BTmenu:focus-visible,
.BTbusca:hover,
.BTbusca:focus-visible{
  filter: brightness(0) saturate(100%) invert(1); /* deixa o ícone branco */
}

/* =========================
   PAINEL LATERAL (MENU)
   ========================= */
.painel_Menu {
  width: 310px;
  height: 100vh;
  padding: 25px;
  position: fixed;
  top: 0;
  left: 0;
  background: #1A1A1A;
  box-shadow: 0 0 20px rgba(0,0,0,.3);
  text-align: center;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 999;

  /* Escondido à esquerda e com animação suave (performático) */
  transform: translateX(-100%);
  transition: transform .3s ease-in-out;

  /* Scrollbar (Firefox) */
  scrollbar-width: thin;
  scrollbar-color: #aaa transparent;
}

.painel_Menu.ativo {
  transform: translateX(0); /* entra na tela */
}

/* =========================
   BOTÃO FECHAR + LOGO
   ========================= */
.BTfechar_Menu {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 25px;
  right: 25px;
  background: url(../imagens/menu_top/bt-fechar.svg) no-repeat center center;
  background-size: cover;
  cursor: pointer;
  transition: ease-in-out .2s;
  border: none;
  user-select: none;
}
.BTfechar_Menu:hover,
.BTfechar_Menu:focus-visible{
  filter: brightness(0) saturate(100%) invert(1); /* deixa o ícone branco */
}

.MobileLogo{
  width: 100%;
  height: 24px;
  background: url(../imagens/logo/vura.svg) no-repeat center center;
  background-size: contain;
  margin-bottom: 20px;
}

/* =========================
   LINKS PRINCIPAIS DO MENU
   ========================= */
.BT_MenuP,
.BT_MenuP:active,
.BT_MenuP:visited {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  line-height: 2;
  padding-left: 15px;
  margin-bottom: 4px;
  background: #1A1A1A;
  border: 1px solid #333333;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #FFF;
  text-align: left;
  text-decoration: none;
  user-select: none;
  transition: .2s ease-in-out;
}

.BT_MenuP:hover,
.BT_MenuP:focus-visible{
  background: #000;
  color: #00DC00;         /* padrão de hover */
  border-color: #000;
}

/* =========================
   ACORDEON - BOX
   ========================= */
.boxMenu {
  width: 100%;
  height: 50px;
  line-height: 2;
  padding-left: 15px;
  margin-bottom: 0;
  background: #1A1A1A;
  border: 1px solid #333333;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #FFF;
  text-align: left;
  user-select: none;
  transition: .2s ease-in-out;
  outline: none;
}

.boxMenu:hover,
.boxMenu.active {
  background-color: #000;
  color: #00DC00;         /* padrão de hover */
  border-color: #000;
}

/* Ícone abrir/fechar */
.boxMenu::after {
  content: url(../imagens/menu_top/veja-mais.svg);
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
}
.boxMenu.active::after {
  content: url(../imagens/menu_top/veja-menos.svg);
}

/* Conteúdo do acordeon
   - sem display:none para permitir transição
   - usa max-height + opacity
*/
.painel_Menu .conteudo {
  max-width: 100%;
  max-height: 0;
  padding: 1px;
  margin: 0 0 2px 0;
  border: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height .3s ease-in-out, opacity .2s ease-in-out, visibility 0s linear .2s;
}

.painel_Menu .conteudo.show {
  max-height: 800px; /* valor grande para acomodar conteúdo */
  opacity: 1;
  visibility: visible;
  transition: max-height .3s ease-in-out, opacity .2s ease-in-out;
  background: #333;
}

/* Links internos do acordeon */
.BT_M_Sub,
.BT_M_Sub:active,
.BT_M_Sub:visited {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  padding-left: 30px;
  background: #FFF;
  border-bottom: 1px solid #E6E6E6;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-align: left;
  text-decoration: none;
  user-select: none;
  transition: .2s ease-in-out;
  position: relative;
}

.BT_M_Sub:hover,
.BT_M_Sub:focus-visible {
  color: #00DC00;         /* padrão de hover */
}

.BT_M_Sub.SetaSub::after {
  content: '';
  width: 12px;
  height: 40px;
  background: url(../imagens/menu_top/seta_sub.svg)no-repeat center center;
  position: absolute;
  top: 0;
  left: 10px;
}

/* =========================
   BLOQUEIO DE SCROLL AO ABRIR MENU
   ========================= */
/* Bloqueio de scroll quando aberto */
body.menu-open { overflow: hidden; }

/* Overlay reutilizável */
.menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 10000;
}

/* =========================
   SCROLLBAR (WebKit)
   ========================= */
.painel_Menu::-webkit-scrollbar {
  width: 8px;
}
.painel_Menu::-webkit-scrollbar-track {
  background: transparent;
}
.painel_Menu::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 4px;
}

/* =========================
   PAINEL DE BUSCA (tela cheia)
   ========================= */
.painel_Busca{
  position: fixed;
  inset: 0;
  background: #1A1A1A;       /* mesma cor do menu */
  z-index: 10001;         /* fica acima do overlay (10000) */
  transform: translateY(-105%);
  transition: transform .3s ease-in-out, opacity .2s ease-in-out;
  opacity: 0;
  display: flex;
  flex-direction: column;
  padding: 12px 20px 24px;
}
.painel_Busca.ativo{
  transform: translateY(0);
  opacity: 1;
}

.painel_Busca .barra_busca{
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.BTfechar_Busca {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 25px;
  right: 25px;
  background: url(../imagens/menu_top/bt-fechar.svg) no-repeat center center;
  background-size: cover;
  cursor: pointer;
  transition: ease-in-out .2s;
  border: none;
  user-select: none;
}
.BTfechar_Busca:hover,
.BTfechar_Busca:focus-visible{
  filter: brightness(0) saturate(100%) invert(1); /* deixa o ícone branco */
}

/* =========================
   IFRAME BUSCA
   ========================= */
.painel_Busca{ display:flex; flex-direction:column; }
.painel_Busca .frame_busca{ width:100%; height:100%; border:0; display:block; }