html {
  scroll-behavior: smooth;
}
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 115px;
  background: linear-gradient(to bottom, rgba(0,0,0,.65), rgba(0,0,0,.05));
  z-index: 2000;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}

.header-container {
  max-width: 1600px;
  margin: auto;
  height: 100%;
  padding-left: 140px;
  padding-right: 80px;
  display: flex;
  align-items: center; /* 🔥 centraliza verticalmente */
}

/* LOGO - MAIS À ESQUERDA */
.logo {
  margin-right: 130px;
}

.logo img {
  max-height: 100%; /* 🔥 não ultrapassa o header */
  height: 100px;
  display: block;
}

.menu-desktop {
  display: flex;
  gap: 40px;
  margin-left: auto;
  margin-left: 160px; /* empurra os links mais para a direita */
}
.menu-desktop a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  position: relative;
}

.menu-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: .3s;
}

.menu-desktop a:hover::after {
  width: 100%;
}

/* HAMBURGUER - SEMPRE VISÍVEL */
.hamburger {
  margin-left: 160px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  opacity: 0;
  pointer-events: none;
  transition: .4s;
  z-index: 998;
}

.menu-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

/* OFFCANVAS */
.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: #182E3D;
  padding: 100px 30px;
  transition: .45s cubic-bezier(.4,0,.2,1);
  z-index: 4000; /* 🔥 acima do hamburger */
}

.offcanvas-menu.active {
  right: 0;
}

.offcanvas-menu nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 25px;
}

/* BOTÃO X */
.close-offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 32px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 5000; /* 🔥 o mais alto */
}

body.menu-open .hamburger {
  opacity: 0;
  pointer-events: none;
} 

.bottom-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #E69600; /* vermelho premium */
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 10px;
  z-index: 1000;
}
.bottom-bar .item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  cursor: pointer;
}

.bottom-bar a.item {
  text-decoration: none;
  display: flex;
}

.bottom-bar .item i {
  font-size: 34px; /* ajuste aqui */
}

/* CAIXA DE TEXTO (coluna) */
.bottom-bar .item .text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

/* TEXTO SUPERIOR */
.bottom-bar .item .text span:first-child {
  font-size: 16px;
  opacity: 0.85;
}

/* TEXTO INFERIOR */
.bottom-bar .item .text span:last-child {
  font-size: 20px;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 991px) {
  .header-container {
    padding: 0 20px;
    justify-content: space-between; /* 🔥 separa logo e hamburguer */
  }

  .logo {
    margin: 0;
  }

  .menu-desktop {
    display: none;
  }

  .hamburger {
    margin-left: auto; /* ✅ cola no lado direito */
    z-index: 3000; /* acima do bootstrap */
  }

  .bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* CELULARES GRANDES: até 768px */
@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
    justify-content: space-between;
  }

  .menu-desktop {
    display: none;
  }

  .hamburger {
    margin-left: auto;
    z-index: 3000;
  }

  .logo img {
    height: 75px;
  }

  .bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .bottom-bar .item i {
    font-size: 28px;
  }

  .bottom-bar .item .text span:first-child {
    font-size: 13px;
  }

  .bottom-bar .item .text span:last-child {
    font-size: 17px;
  }
}

/* CELULARES PEQUENOS: até 480px */
@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }

  .logo img {
    height: 65px;
  }

  .hamburger span {
    width: 22px;
    height: 2px;
  }

  .bottom-bar {
    padding: 12px 5px;
  }

  .bottom-bar .item i {
    font-size: 24px;
  }

  .bottom-bar .item .text span:first-child {
    font-size: 12px;
  }

  .bottom-bar .item .text span:last-child {
    font-size: 16px;
  }
}

