.elementor-305 .elementor-element.elementor-element-49f20c7{--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;}body.elementor-page-305:not(.elementor-motion-effects-element-type-background), body.elementor-page-305 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#474747;}/* Start custom CSS for html, class: .elementor-element-f688ca7 *//* EVITA SCROLL HORIZONTAL - AJUSTADO (ADICIONADO padding-top) */
html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  /* padding-top = 18px (tarja) + 88px (header) = 106px */
  padding-top: 106px;
}

/* TARJA DE AVISO (NOVO COM FLEXBOX E ÍCONES) */
.top-banner {
  background-color: #facc15; /* Amarelo */
  color: #000; /* Letra Preta */
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  /* Padding de 2px acima e abaixo da tarja */
  padding: 3px 0; 
  width: 100%;
  box-sizing: border-box;
  
  /* Configuração para centralizar texto e ícones */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px; /* Espaço entre texto e ícones */
  white-space: nowrap; /* Impede a quebra de linha do texto no mobile */
  
  /* Fixa no topo, acima do header */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; 
}

/* ESTILO DOS ÍCONES DA TARJA (NOVO) */
.banner-icon {
    /* Ajuste para 14x14px para ser visível, mas discreto */
    width: 40px;
    height: 14px;
    vertical-align: middle; /* Alinha o ícone com o texto */
    flex-shrink: 0; /* Impede que o ícone encolha */
}

/* HEADER FIXO - AJUSTADO (MUDANÇA NO top) */
.site-header {
  position: fixed;
  /* Ajusta a posição para começar abaixo da tarja (18px) */
  top: 18px; 
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.3s ease;
  background: #0e212a;
}

.site-header.scrolled {
  backdrop-filter: blur(8px);
  background: #0e212a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* CONTAINER */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  width: 100%;
}

/* HEADER CONTENT */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  flex-wrap: nowrap;
  width: 100%;
}

/* LOGO */
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.logo-texts {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}

.logo-title {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

/* MENU DESKTOP - ALTERADO PARA POSICIONAR ITENS */
.main-nav {
  display: flex;
  align-items: center;
  /* Removido o gap daqui */
  /* Removido margin-left: auto; */
  /* Usa-se 'flex-end' para garantir que o botão de proposta fique sempre à direita */
  justify-content: flex-end; 
  /* Adiciona um espaço fixo entre o grupo de links e o botão Proposta */
  gap: 24px; 
  width: 100%; /* Garante que ocupe todo o espaço */
}

/* NOVO: AGRUPAMENTO DE LINKS PARA CENTRALIZAÇÃO */
.nav-links {
    display: flex;
    align-items: center;
    /* Reduzindo o gap para unir mais os botões centralizados */
    gap: 12px; /* Reduzido de 16px para 12px */
    
    /* Centraliza os botões dentro do espaço disponível */
    margin: 0 auto;
}

.main-nav button {
  background: none;
  border: none;
  font-size: 0.750rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  color: #fff;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.main-nav button:hover {
  color: #d97706;
}

/* BOTÃO PROPOSTA */
.btn-proposta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 16px;
  background: #d97706;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: background 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0; /* Impede o encolhimento */
}

.btn-proposta:hover {
  background: #b45309;
}

/* BOTÃO MENU HAMBURGUER (PADRÃO ESCONDIDO) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ======== MOBILE/TABLET ======== */
@media (max-width: 768px) {
  /* Texto menor para caber */
  .logo-title {
    font-size: 1rem;
  }
  .logo-subtitle {
    font-size: 0.65rem;
  }
  
  /* Ajusta o espaçamento na tarja para telas muito pequenas */
  .top-banner {
    font-size: 12px; /* Reduz a fonte no mobile se necessário */
    gap: 4px;
  }
  
  .banner-icon {
      width: 12px; /* Reduz o ícone no mobile */
      height: 12px;
  }

  /* Esconde menu, mostra hamburguer */
  .main-nav {
    display: none;
    flex-direction: column;
    gap: 16px;
    /* top: 88px + 18px (tarja) = 106px */
    position: absolute;
    top: 106px;
    left: 0;
    right: 0;
    background: #0e212a;
    padding: 20px;
    box-sizing: border-box;
    max-width: 100vw; 
    
    /* Zera estilos do desktop */
    justify-content: flex-start;
    width: auto;
  }
  
  /* No mobile, os links devem voltar a se empilhar e ocupar 100% da largura */
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin: 0; /* Remove a centralização do desktop */
  }

  .main-nav.open {
    display: flex;
  }
  
  /* Botão de Proposta no Mobile: ocupa largura total */
  .btn-proposta {
      width: 100%;
      justify-content: center;
      margin-top: 16px;
  }

  /* Botão hamburguer menor no mobile */
  .menu-toggle {
    display: block;
    font-size: 1.25rem;
    width: 45px;
    height: 40px;
    background: #d97706;
    border-radius: 8px;
    flex-shrink: 0;
  }

  /* Hover no mobile/tablet */
  .menu-toggle:hover {
    color: #fff;
    background: #b45309; 
  }
}/* End custom CSS */