.elementor-158 .elementor-element.elementor-element-fd48e53{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS *//* 1. RESET E LARGURA TOTAL */
.navbar-vg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111111; /* Preto da imagem */
  padding: 16px 5%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
  /* Técnica para ocupar 100% da largura da tela no Elementor */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
  z-index: 9999;
}

/* Evita barra de rolagem horizontal lateral */
body {
  overflow-x: hidden;
}

/* 2. LOGO */
.nav-logo-vg {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo-box-vg {
  background-color: #ffcc00; /* Amarelo VG */
  color: #000;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 18px;
}

.logo-text-vg {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* 3. LINKS DESKTOP */
.nav-links-vg {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links-vg li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links-vg li a:hover {
  color: #ffcc00;
}

/* 4. BOTÃO CTA (AMARELO) */
.btn-cta-vg {
  background-color: #ffcc00 !important;
  color: #000 !important;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s;
}

.btn-cta-vg:hover {
  transform: scale(1.05);
}

/* 5. MENU HAMBÚRGUER (MOBILE) */
.menu-toggle-vg {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.bar-vg {
  height: 3px;
  width: 30px;
  background-color: #ffcc00;
  border-radius: 2px;
  transition: 0.4s;
}

/* 6. RESPONSIVIDADE */
@media (max-width: 1024px) {
  .menu-toggle-vg {
    display: flex;
  }

  .nav-links-vg {
    position: fixed;
    top: 0;
    right: -100%; /* Escondido à direita */
    width: 280px;
    height: 100vh;
    background-color: #111111;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease-in-out;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 10000;
  }

  .nav-links-vg.active {
    right: 0; /* Desliza para dentro */
  }

  .nav-links-vg li {
    margin: 15px 0;
  }

  /* Animação do Hambúrguer para fechar (X) */
  .is-active .bar-vg:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .is-active .bar-vg:nth-child(2) { opacity: 0; }
  .is-active .bar-vg:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}/* End custom CSS */