p {
  margin: 0;
  padding: 0;
}

/* NAV MOBILE */

#navegacaoMobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.menu-container {
  position: relative;
}

.menu-icon {
  width: 25px;
  height: 18px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001; 
}

.menu-icon span {
  height: 4px;
  width: 100%;
  background: #a47e43;
  border-radius: 5px;
  transition: all 0.3s ease-in-out; /* Transição para a animação */
}

/* --- ANIMAÇÃO DO ÍCONE PARA "X" --- */
.menu-icon.active span:nth-child(1) {
  /* Gira a primeira barra 45 graus e a move para o centro */
  transform: translateY(7px) rotate(45deg);
}
.menu-icon.active span:nth-child(2) {
  /* Esconde a barra do meio */
  opacity: 0;
}
.menu-icon.active span:nth-child(3) {
  /* Gira a terceira barra -45 graus e a move para o centro */
  transform: translateY(-7px) rotate(-45deg);
}

/* --- ANIMAÇÃO DO MENU "ABRINDO PARA BAIXO" --- */
.menu {
  position: absolute;
  top: 100%; /* Começa logo abaixo do ícone */
  left: 0px; /* Ajuste para centralizar o menu abaixo do ícone */
  width: 100px; 
  background-color: #c0a068;
  border-radius: 4px;
  padding: 10px 0;
  z-index: 1000;

  /* Esconde o menu por padrão usando opacidade e escala */
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.3s ease-in-out;
}

.menu.show {
  /* Mostra o menu ativando a opacidade e a escala */
  opacity: 1;
  visibility: visible;
  transform: scaleY(1); /* "Cresce" para sua altura total */
}

.menu a {
  color: white;
  padding: 0px 10px;
  text-decoration: none;
  font-size: 1.3rem;
  text-align: center;
  line-height: 2.5;
}

.menu a:hover {
  background: rgb(158, 127, 73);
}

/*=======================*/

/* HEADER E NAV */

#cabecalho {
  width: 100%;
  background-color: white;

  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  align-items: center;
}

#navPreta {
  width: 100%;
  max-width: 3000px;
  padding: 0.6rem;
  background-color: #242424;

  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

#navBranca {
  width: 100%;
  max-width: 3000px;
  padding: 0.6rem 2rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

#navegacao {
  display: flex;
}

#navegacao ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  gap: 2rem;
}

#navegacao li {
  padding: 0.5rem 0;
}

#navegacao a {
  position: relative; 
  font-size: 1.2rem;
  font-weight: 600;
  color: #a47e43;
  text-decoration: none;
  transition: color 0.4s ease;
  padding: 8px 15px; 
  z-index: 1; 
  overflow: hidden; 
}

#navegacao a::before {
  content: ''; 
  position: absolute;
  top: 20;
  left: 0;
  width: 0; 
  height: 70%;

  background-color: #a47e43; 
  border-radius: 5px;
  transition: width 0.4s ease-in-out; 
  z-index: -1; 
}

#navegacao a:hover {
  color: #fff;
}

#navegacao a:hover::before {
  width: 100%; 
}

#navegacao ul {
  list-style: none;
  display: flex;
  gap: 20px; 
  padding: 0;
  margin: 0;
}

#Btn-section {
  width: 9.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  color: white;
}

.btn-watts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.btn-watts img {
  width: 15%;
}

.btn-Tel {
  width: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  color: white;
  gap: 3%;

}

.btn-Tel img {
  width: 10%;
}

#LogoTexport {
  width: 9.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.logo img {
  width: 100%;
  display: block;
}

.btn-orcamento-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 0.75rem;
  padding: 0.4rem 1rem;
  background: linear-gradient(to right, #916c36, #c0a068);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.625rem;
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.btn-orcamento-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #c0a068, #916c36);
  transform: translateX(-100%);
  transition: transform 0.5s ease-in-out;
  z-index: -1;
}

.btn-orcamento-link span,
.btn-orcamento-link img {
  position: relative;
  z-index: 2;
}

.btn-orcamento-link img {
  height: 1.5rem;
  width: auto;
}

.btn-orcamento-link:hover {
  transform: translateY(-0.0625rem);
  box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.15);
}

.btn-orcamento-link:hover::before {
  transform: translateX(0);
}

.btn-orcamento-link:active {
  transform: translateY(0);
  box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.1);
}

/* ================= */
