:root {
  --industrial-blue: #3b6998;
  --industrial-dark: #4d4d4d;
  --text-gray: #f5f5f5;
}

/* HEADER FLUTUANTE (Imagem 1) */
.industrial-header-floating {
  position: fixed;
  /* Mudado de absolute para fixed */
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding-top: 20px;
  transition: all 0.4s ease;
  /* Transição suave ao rolar */
}

/* Quando a página for rolada, o header ganha essa classe via JS */
.industrial-header-floating.scrolled {
  padding-top: 5px;
}

.header-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

/* Ajuste no card quando scrollar (opcional: deixa ele mais fino ou menos arredondado) */
.industrial-header-floating.scrolled .header-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 15px 15px;
  /* Opcional: tira o arredondado de cima ao encostar no topo */
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-links a {
  color: var(--industrial-blue);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.7;
}

.btn-orcamento {
  background-color: var(--industrial-blue);
  color: #fff !important;
  padding: 10px 25px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
}

/* FOOTER INDUSTRIAL (Imagem 2) */
.main-footer-industrial {
  background-color: var(--industrial-dark);
  color: #ffffff;
  padding: 60px 0;
  font-size: 14px;
}

.footer-logo-top {
  margin-bottom: 40px;
}

.footer-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.footer-social-icons a {
  color: #fff;
  font-size: 20px;
}

@media (max-width: 991px) {
  .header-card {
    margin: 0 10px;
    padding: 10px 20px;
  }
}

/* Recuperando o Custom Cursor */
.custom-cursor__cursor,
.custom-cursor__cursor-two {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--industrial-blue);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transition: width 0.3s, height 0.3s, background-color 0.3s, opacity 0.3s;
  transform: translate(-50%, -50%);
}

.custom-cursor__cursor-two {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: 1px solid var(--industrial-blue);
  transition: all 0.1s ease-out;
}

/* Esconde o cursor padrão do navegador se desejar */
/* body.custom-cursor { cursor: none; } 
   a, button { cursor: none; } */

/* MOBILE NAV */
.mobile-nav__toggler {
  color: var(--industrial-blue);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
}

body.mobile-nav--open .mobile-nav {
  pointer-events: auto;
}

/* Overlay */
.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
  cursor: pointer;
}

/* Conteúdo */
.mobile-nav__content {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  background-color: white !important;
}

/* Botão fechar */
.mobile-nav__close {
  cursor: pointer;
}

.mobile-nav__menu a {
  font-size: 18px;
  font-weight: 700;
  color: var(--industrial-blue);
  padding: 12px 0;
  display: block;
  margin-bottom: 1rem !important;
}

/* OGENTY MOBILE NAV - ATIVAÇÃO CORRETA */
body.mobile-nav--open .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

body.mobile-nav--open .mobile-nav__overlay {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__overlay {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.mobile-orcamento {
  margin-top: 30px;
  display: inline-block;
  text-align: center;
  width: 100%;
}

@media (max-width: 991px) {
  .header-cta .btn-orcamento {
    display: none !important;
  }
}