@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Tipografia — Poppins em todo o menu */
.top-bar,
.top-bar *,
.main-menu,
.main-menu *,
.nav-mobile,
.nav-mobile *,
.nav-mobile-overlay {
  font-family: 'Poppins', sans-serif;
}

.top-bar [type=button]:focus,
.top-bar [type=button]:hover,
.top-bar [type=submit]:focus,
.top-bar [type=submit]:hover,
.top-bar button:focus,
.top-bar button:hover,
.main-menu [type=button]:focus,
.main-menu [type=button]:hover,
.main-menu [type=submit]:focus,
.main-menu [type=submit]:hover,
.main-menu button:focus,
.main-menu button:hover,
.nav-mobile [type=button]:focus:not(.nav-mobile-close),
.nav-mobile [type=button]:hover:not(.nav-mobile-close),
.nav-mobile [type=submit]:focus,
.nav-mobile [type=submit]:hover,
.nav-mobile button:focus:not(.nav-mobile-close),
.nav-mobile button:hover:not(.nav-mobile-close) {
  background-color: transparent !important;
  color: inherit !important;
}

.menu-mobile-toggle:focus,
.menu-mobile-toggle:hover,
.menu-mobile-toggle:active,
.menu-mobile-toggle.active {
  background-color: rgba(119, 120, 123, 0.1) !important;
  color: #77787B !important;
}

.menu-mobile-toggle:focus {
  outline: 2px solid #00AF55 !important;
  outline-offset: 2px !important;
  box-shadow: none !important;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: #767676;
  color: #fff;
  font-size: 14px;
  height: 50px;
  display: flex;
  width: 100%;

	position: sticky;
	top:0;
	z-index: 99997;
}

.container-bar {
  width: 100%;
  max-width: 1122px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-social {
  display: flex;
  gap: 1rem;
}

.contact-social .email {
  display: flex;
  align-items: center;
  gap: 6px;
  border-right: 2px solid #C7C7C7;
  padding-right: 1rem;
  font-size: 14px;
  line-height: 14px;
}

.social-icons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.social-icons a {
  color: #fff;
  height: fit-content;
  align-self: end;
}

.social-icons .social-link .svg-icon {
  color: #ffffff;
  align-self: center;
  display: block;
}

.svg-icon path {
  transition: .3s ease;
}

.social-icons .social-link:hover .svg-icon path {
  fill: #434343 !important;
}

.contact-social .email,
.contact-social .email svg {
  color: #ffffff !important;
}

/* ========== BUSCA ========== */
.search-lang {
  display: flex;
  gap: 8px;
  align-items: center;
}

.search-container {
  position: relative;
  width: 300px;
}

.pesquisa-topo-menu {
  width: 100%;
  height: 30px;
  font-size: 12px;
  border: none !important;
  border-radius: 4px !important;
  background: #9F9F9F;
  color: #fff;
}

.search-lang input::placeholder {
  color: #fff;
}

.search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff !important;
    padding: 0 !important;
  cursor: pointer;
}

.search-icon button{
	padding:0;
}

input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

.search-lang select {
  padding: 5px;
  border-radius: 4px;
  border: none;
  color: #ffffff;
  background: #9F9F9F;
  width: 48px;
  height: 30px;
  font-size: 1rem;
}

/* ========== GOOGLE TRANSLATE ========== */
.gtcontainer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 48px;
  position: relative;
}

.gt_float_switcher {
  border-radius: 4px !important;
  box-shadow: none !important;
  width: 48px !important;
  position: absolute;
  top: 0;
  left: 0;
  background: none !important;
}

.gt_float_switcher img {
  display: none !important;
}

a[data-gt-lang="en"], a[data-gt-lang="pt"], a[data-gt-lang="es"] {
  font-size: 0;
}

a[data-gt-lang="en"]::after {
  content: "EN";
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

a[data-gt-lang="pt"]::after {
  content: "PT";
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

a[data-gt-lang="es"]::after {
  content: "ES";
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

.gt_float_switcher .gt-selected .gt-current-lang {
  padding: 3px 4px !important;
  color: #ffffff !important;
  font-size: 1rem !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500 !important;
}

.gt_float_switcher .gt-selected {
  position: relative;
  z-index: 888;
  cursor: pointer;
  text-transform: uppercase;
  overflow: hidden;
  background: #9F9F9F !important;
  color: #ffffff !important;
  border-radius: 4px;
}

.gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow {
  transition: transform 0.2s ease;
}

.gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow svg {
  color: #ffffff !important;
  transform: rotate(180deg);
}

/* Seta volta ao normal quando o seletor está aberto */
.gt_float_switcher:has(.gt_options.gt-open) .gt-selected .gt-current-lang span.gt_float_switcher-arrow svg {
  transform: rotate(0deg);
}

.gt_float_switcher .gt_options.gt-open {
  margin-top: 14px !important;
  background: #9f9f9f !important;
  border-radius: 4px 4px 0 0;
  padding-top: 6px;
}

.gt_float_switcher .gt_options a {
  padding: 0px 8px !important;
}

.gt_float_switcher .gt_options a:hover {
  background-color: #76777a;
}

/* ========== MAIN MENU ========== */
.main-menu {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  height: 100px;
  display: flex;
  overflow: visible;

  position: sticky;
  top: 50px;
  z-index: 99996;
}

@media (max-width:768px){
	.main-menu{
		top:45px;
	}
}

.container-menu {
  max-width: 1122px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  overflow: visible;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  max-height: 45px;
  display: block;
}

/* ========== MENU PRINCIPAL DESKTOP ========== */
.nav-links {
  flex: 1;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.nav-links .menu {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  height: 100%;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.nav-links .menu > li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}

.menu-item-dropdown {
  position: static;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dropdown-trigger {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Links do menu — mesma aparência (sobrescreve tema WP) */
.nav-links .menu > li > a.link,
.nav-links .dropdown-trigger > a.link,
.nav-links .dropdown-trigger > a.solucao.link {
  text-decoration: none;
  color: #77787B !important;
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links .menu > li > a.link:visited,
.nav-links .dropdown-trigger > a.link:visited,
.nav-links .dropdown-trigger > a.solucao.link:visited {
  color: #77787B !important;
}

.nav-links .menu > li > a.link:hover,
.nav-links .dropdown-trigger > a.link:hover,
.nav-links .dropdown-trigger > a.solucao.link:hover {
  color: #00AF55 !important;
}

/* UNDERLINE VERDE no hover - ALINHADO em todos */
.nav-links .menu > li > a.link::after,
.nav-links .dropdown-trigger > a.link::after,
.nav-links .dropdown-trigger > a.solucao.link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: #00AF55;
  transition: transform 0.3s ease;
}


/* UNDERLINE APARECE no hover */
.nav-links .menu > li > a.link:hover::after,
.nav-links .dropdown-trigger > a.link:hover::after,
.nav-links .dropdown-trigger > a.solucao.link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* ========== SUBMENU DESKTOP ========== */
.solucoes-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  transform: none;
  width: 100%;
  max-width: 100%;
  border-top: 1px solid rgba(118, 118, 118, 0.15);
  background: #F7F7F7;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.09);
  padding: 24px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 99998;
  pointer-events: none;
  margin: 0;
}

/* Ponte invisível entre o link e o painel (evita fechar ao mover o mouse) */
.solucoes-dropdown::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
  background: transparent;
}

.menu-item-dropdown.is-open .solucoes-dropdown,
.menu-item-dropdown:hover .solucoes-dropdown,
.menu-item-dropdown:focus-within .solucoes-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-item-dropdown.is-open > .dropdown-trigger > a,
.menu-item-dropdown:hover > .dropdown-trigger > a {
  color: #00AF55 !important;
}

.menu-item-dropdown.is-open > .dropdown-trigger > a.link::after,
.menu-item-dropdown.is-open > .dropdown-trigger > a.solucao.link::after {
  transform: translateX(-50%) scaleX(1);
}

.dropdown-inner {
  max-width: 1122px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
  text-align: left;
}

.dropdown-inner .ul-drop {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px 40px;
  margin: 0;
  padding: 0;
  width: 100%;
}

.dropdown-inner .ul-drop > li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-inner .ul-drop > li a {
  color: #77787B !important;
  text-decoration: none;
  padding: 10px 4px;
  font-weight: 500;
  font-size: 1rem;
  display: inline-block;
  white-space: nowrap;
  transition: color 0.2s ease;
  text-transform: none;
}

.dropdown-inner .ul-drop > li a:hover,
.dropdown-inner .ul-drop > li a:focus {
  color: #00AF55 !important;
  transform: none;
}

/* ========== BOTÕES DESKTOP ========== */
.menu-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.menu-buttons a {
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-buttons .btn {
  font-size: 14px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 10px;
  transition: 0.3s ease;
  display: inline-block;
}

/* ========== BTN DEMO MODULAR - GRADIENTE VERDE -> AZUL ========== */
.button-hover-icon-n {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #00b856 0%, #1e8fd4 100%);
  color: #fff;
  padding: 0.625rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.2;
}

.button-hover-icon-n .text {
  display: inline-block;
  position: relative;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.button-hover-icon-n:hover .text {
  transform: translateX(-8px);
}

.button-hover-icon-n:hover {
  background: linear-gradient(135deg, #00b856 0%, #1e8fd4 100%);
  color: #fff;
}

.button-hover-icon-n .icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) translateX(16px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
}

.button-hover-icon-n:hover .icon {
  transform: translateY(-50%) translateX(6px);
  opacity: 1;
}

.button-hover-icon-n .icon svg path {
  fill: #fff;
}

/* ========== BTN LOGIN PLATAFORMA - GRADIENTE 2 VERDES ========== */
.btn-animado-duplo.bg-orange {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(90deg,rgba(227, 152, 10, 1) 0%, rgba(209, 145, 27, 1) 70%) !important; 
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.2;
}

.btn-animado-duplo .texto {
  color: #fff !important;
  white-space: nowrap;
}

.icone-esquerda,
.icone-direita {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.icone-esquerda {
  margin-right: 0;
}

.btn-animado-duplo .icone-esquerda svg path,
.btn-animado-duplo .icone-direita svg path {
  fill: #fff;
}

/* ========== MENU MOBILE ========== */

/* Botão hamburguer */
.menu-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 9999;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

/* Linhas do hamburguer */
.hamburger-line {
  width: 22px;
  height: 2px;
  background-color: #77787B;
  margin: 4px 0;
  transition: all 0.3s ease;
  transform-origin: center center;
  border-radius: 1px;
  display: block;
}

/* Animação hamburguer → X */
.menu-mobile-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.menu-mobile-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.menu-mobile-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Overlay */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 99998;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Painel do menu mobile */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 88vw;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.18);
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99999;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}
.nav-mobile.active {
  right: 0;
}

/* Header do menu mobile */
.nav-mobile-header {
  position: sticky;
  top: 0;
  flex-shrink: 0;
  height: 70px;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 2;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.nav-mobile-logo a {
  display: block;
  line-height: 0;
}
.nav-mobile-logo img {
  max-height: 36px;
  width: auto;
  display: block;
}

/* Botão X fechar */
.nav-mobile-close {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  padding: 0;
  border: none !important;
  border-radius: 0;
  background: transparent !important;
  color: #77787B !important;
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.nav-mobile-close:hover,
.nav-mobile-close:focus {
  background: transparent !important;
  color: #00AF55 !important;
  outline: none;
}
.nav-mobile-close svg {
  display: block;
  color: currentColor;
  pointer-events: none;
}
.nav-mobile-close:focus-visible {
  outline: 2px solid #00AF55;
  outline-offset: 2px;
}

/* Camada máxima — header desktop acima de Elementor/widgets */
html body .top-bar {
  z-index: 99997 !important;
  position: sticky !important;
}

html body .main-menu {
  z-index: 99996 !important;
  position: sticky !important;
}

html body .main-menu .solucoes-dropdown {
  z-index: 99998 !important;
}

/* Camada máxima — menu mobile acima de Elementor e widgets */
html body .nav-mobile-overlay { z-index: 99998 !important; position: fixed !important; }
html body .nav-mobile          { z-index: 99999 !important; position: fixed !important; }
html body .menu-mobile-toggle  { z-index: 100000 !important; }

/* Busca mobile */
.nav-mobile-search {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  background: #fafafa;
}

.nav-mobile-search input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #fff;
  box-sizing: border-box;
}

.nav-mobile-search input:focus {
  outline: none;
  border-color: #00AF55;
  box-shadow: 0 0 0 3px rgba(0, 175, 85, 0.1);
  transform: translateY(-1px);
}

.nav-mobile-search input::placeholder {
  color: #999;
}

/* Menu mobile */
.nav-mobile .mobile-menu {
  list-style: none;
  margin: 0;
  padding: 15px 0;
}

.nav-mobile .mobile-menu-item {
  border-bottom: 1px solid #f5f5f5;
  position: relative;
}

.nav-mobile .mobile-menu-item:last-child {
  border-bottom: none;
}

.nav-mobile .mobile-menu-item > a {
  display: block;
  padding: 18px 20px;
  color: #77787B;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-mobile .mobile-menu-item > a:hover,
.nav-mobile .mobile-menu-item > a:focus {
  color: #00AF55;
  background: rgba(0, 175, 85, 0.08);
  padding-left: 25px;
}

.nav-mobile .mobile-menu-item > a:focus {
  outline: none;
  box-shadow: inset 3px 0 0 #00AF55;
}

/* Submenu mobile */
.mobile-submenu {
  background: linear-gradient(135deg, #f8f8f8 0%, #f2f2f2 100%);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: 3px solid transparent;
}

.mobile-menu-item.has-submenu.active .mobile-submenu {
  max-height: 350px;
  border-left-color: #00AF55;
}

.mobile-submenu a {
  display: block;
  padding: 14px 35px;
  color: #77787B;
  text-decoration: none;
  font-weight: 500;
  text-transform: none;
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.mobile-submenu a:last-child {
  border-bottom: none;
}

.mobile-submenu a:hover,
.mobile-submenu a:focus {
  color: #00AF55;
  padding-left: 40px;
  background: rgba(0, 175, 85, 0.05);
}

.mobile-submenu a:focus {
  outline: none;
  box-shadow: inset 2px 0 0 #00AF55;
}

/* Ícone dropdown */
.mobile-dropdown-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  transition: transform 0.3s ease;
  color: #00AF55;
  font-weight: bold;
}

.mobile-menu-item.has-submenu.active .mobile-dropdown-icon {
  transform: translateY(-50%) rotate(180deg);
}

/* Botões mobile */
.nav-mobile-buttons {
  padding: 25px 20px 20px;
  border-top: 2px solid #f0f0f0;
  background: #fafafa;
}

.nav-mobile-buttons .btn-mobile {
  display: block;
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 12px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.nav-mobile-buttons .btn-mobile:last-child {
  margin-bottom: 0;
}

/* BTN DEMO MOBILE - GRADIENTE VERDE -> AZUL */
.nav-mobile-buttons .btn-mobile.btn-demo {
  background: linear-gradient(135deg, #00CD63 0%, #25A2ED 100%);
  color: #fff;
}

.nav-mobile-buttons .btn-mobile.btn-demo:hover {
  background: linear-gradient(135deg, #00b856 0%, #1e8fd4 100%);
  transform: translateY(-2px);
}

/* BTN LOGIN MOBILE - GRADIENTE 2 VERDES */
.nav-mobile-buttons .btn-mobile.btn-login {
  background: linear-gradient(135deg, #00A451 0%, #00CD63 100%);
  color: #fff;
}

.nav-mobile-buttons .btn-mobile.btn-login:hover {
  background: linear-gradient(135deg, #008f46 0%, #00b856 100%);
  transform: translateY(-1px);
}

.nav-mobile-buttons .btn-mobile:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 175, 85, 0.3);
}

/* ========== ANIMAÇÕES ========== */
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ========== SCROLLBAR PERSONALIZADA ========== */
.nav-mobile::-webkit-scrollbar {
  width: 6px;
}

.nav-mobile::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.nav-mobile::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.nav-mobile::-webkit-scrollbar-thumb:hover {
  background: #00AF55;
}

/* Ajuste fino em telas médias (evita quebra do menu) */
@media (min-width: 1025px) and (max-width: 1180px) {
  .nav-links .menu {
    gap: 16px;
  }

  .nav-links .menu > li > a.link,
  .nav-links .dropdown-trigger > a.link,
  .nav-links .dropdown-trigger > a.solucao.link {
    font-size: 0.9rem;
  }

  .button-hover-icon-n,
  .btn-animado-duplo.bg-orange {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }
}

/* ========== RESPONSIVO ========== */
@media (max-width: 1024px) {
  .nav-links,
  .menu-buttons {
    display: none;
  }

  .menu-mobile-toggle {
    display: flex;
  }

  .container-menu {
    position: relative;
  }

  .search-container,
  .idioma {
    display: none;
  }

  .contact-social a span {
    display: none;
  }

  .menu-item-dropdown .solucoes-dropdown,
  .menu-item-dropdown.is-open .solucoes-dropdown {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  body.menu-mobile-open {
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .nav-mobile {
    width: 300px;
  }

  .top-bar {
    height: 45px;
  }

  .main-menu {
    height: 75px;
  }

  .search-container {
    display: none;
  }

  .social-icons {
    gap: 6px;
  }

  .nav-mobile .mobile-menu-item > a {
    padding: 16px 18px;
    font-size: 14px;
  }

  .mobile-submenu a {
    padding: 12px 30px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .nav-mobile {
    width: 100%;
    max-width: 100vw;
  }

  .nav-mobile-header {
    height: 60px;
  }

  .nav-mobile {
    padding-bottom: 20px;
  }

  .nav-mobile-buttons .btn-mobile {
    padding: 12px 15px;
    font-size: 13px;
  }
}

/* BTN Elementor (se necessário) */
selector.btn .elementor-button {
  width: 128px;
  height: 48px;
  border-radius: 6px;
  position: relative;
}

selector .btn .elementor-button .elementor-button-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(190%, -50%);
  opacity: 0;
  transition: .4s ease;
}

selector .btn .elementor-button .elementor-button-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: .4s ease;
}

selector .btn:hover .elementor-button-text {
  transform: translate(-55%, -50%);
}

selector .btn:hover .elementor-button-icon {
  transform: translate(250%, -50%);
  opacity: 1;
}

/* ========== HEADER FIXO CORRIGIDO ========== */


/* Fixação segura e independente */
/* 
.top-bar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: none !important;
  transition: none !important;
  will-change: auto !important; 

}*/
/* .main-menu.is-fixed {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);

}
 */
/* .top-bar {
  transition: transform 0.3s ease;
}

.top-bar.hide-top-bar {
  transform: translateY(-100%);
}

.top-bar.show-top-bar {
  transform: translateY(0);
}
 */