.elementor-153 .elementor-element.elementor-element-75e039b{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-b6c8407 *//* ================= HEADER ================= */

.bm-header{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;

  background: rgba(0,0,0,0.08); /* super leve */
  backdrop-filter: blur(6px);
  transition: all .3s ease;
}

.bm-header.is-scrolled{
  background: rgba(0,0,0,0.08); /* igual */
  backdrop-filter: blur(6px);
}

.bm-header__wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 25px;
}

/* ===== Logo ===== */

.bm-brand{
  display: flex;
  align-items: center;
  text-decoration: none;
}

.bm-brand__circle{
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
  transition: transform .3s ease;
}

.bm-brand:hover .bm-brand__circle{
  transform: scale(1.05);
}

.bm-brand__logo{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== Menu ===== */

.bm-nav{
  margin-left: auto;
  display: flex;
  gap: 28px;
}

.bm-nav__link{
  position: relative;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 6px 2px;
  transition: all .2s ease;
}

.bm-nav__link:hover{
  color: #fff;
}

.bm-nav__link.is-active{
  color: #fff;
}

.bm-nav__link.is-active::after{
  content:"";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #C99A2E;
  border-radius: 2px;
}

/* ===== CTA ===== */

.bm-cta{
  margin-left: 20px;
  background: #C99A2E;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 12px;
  transition: all .25s ease;
  box-shadow: 0 12px 28px rgba(201,154,46,.3);
}

.bm-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(201,154,46,.4);
}

/* ===== Burger ===== */

.bm-burger{
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.bm-burger span{
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #fff;
  transition: all .3s ease;
}

.bm-burger span:nth-child(1){ top: 12px; }
.bm-burger span:nth-child(2){ top: 20px; }
.bm-burger span:nth-child(3){ top: 28px; }

.bm-header.is-open .bm-burger span:nth-child(1){
  transform: rotate(45deg);
  top: 20px;
}

.bm-header.is-open .bm-burger span:nth-child(2){
  opacity: 0;
}

.bm-header.is-open .bm-burger span:nth-child(3){
  transform: rotate(-45deg);
  top: 20px;
}

/* ===== Responsivo ===== */

@media (max-width: 980px){

  .bm-nav{
    display: none;
  }

  .bm-cta{
    display: none;
  }

  .bm-burger{
    display: block;
  }


/* trava o scroll quando menu mobile abre */
body.bm-lock{
  overflow: hidden;
}

@media (max-width: 980px){

  /* painel do menu */
  .bm-header.is-open .bm-nav{
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    /* altura do header + respiro */
    padding: 110px 20px 18px;

    flex-direction: column;
    gap: 14px;

    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(10px);

    z-index: 9998; /* abaixo do header (9999) */
  }

  .bm-header.is-open .bm-nav__link{
    font-size: 18px;
    padding: 12px 10px;
    border-radius: 12px;
    color: #fff;
  }

  .bm-header.is-open .bm-nav__link:hover{
    background: rgba(255,255,255,0.08);
  }

  /* opcional: se quiser exibir o CTA dentro do painel também */
  /* .bm-header.is-open .bm-cta{ display:block; } */
}
}/* End custom CSS */