@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Work Sans', sans-serif;
  background-color: #f1f1f1;
  color: #2B3A54; /* Cor padrão do texto */
}


/* HEADER TOPO */
.sankhya-header-top {
  background-color: #F2F2F2;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.019em;
  position: relative;
  z-index: 1;
}

.sankhya-header-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}

.sankhya-header-util {
  position: absolute;
  top: 8px;
    right: 45px;
  width: 365px;
  height: 24px;
  display: flex;
  gap: 33px;
  opacity: 1;
}

.sankhya-header-util a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #2B3A54;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.019em; /* -1.9% */
}


.sankhya-header-util img {
  width: 24px;
  height: 24px;
}

/* HEADER PRINCIPAL */
.sankhya-header-main {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  height: 70px;

}

.sankhya-header-main .sankhya-header-wrapper {
  display: flex;
  align-items: center;
  padding: 16px 80px;
}

.sankhya-header-logo {
  width: 124px;
  flex-shrink: 0;
}

.sankhya-header-logo img {
  width: 124px;
  height: 28px;
  object-fit: contain;
}

.sankhya-header-nav {
  width: 732px;
  margin-left: 160px;
  margin-right: 40px;
}

.sankhya-header-nav ul {
  display: flex;
  gap: 47px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sankhya-header-nav a {
  text-decoration: none;
  color: #111c4e;
  font-weight: 500;
  font-size: 14px;
}

.sankhya-header-cta {
  background-color: #44b849;
  color: #2B3A54;
  border: 1px solid #44b849;
  padding: 16px 24px;
  width: 240px;
  height: auto;
  min-height: 48px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
  overflow-wrap: break-word;
  box-sizing: border-box;
  margin-right: -35px;
}

/* Submenu (dropdown) */
.sankhya-header-nav ul li {
  position: relative;
}

.sankhya-header-nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 10px 0;
  min-width: 180px;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.sankhya-header-nav ul li:hover > ul {
  display: block;
}

.sankhya-header-nav ul li ul li {
  width: 100%;
  padding: 0;
}

.sankhya-header-nav ul li ul li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #2B3A54;
  text-decoration: none;
  white-space: nowrap;
}

.sankhya-header-nav ul li ul li a:hover {
  background-color: #f5f5f5;
}

/* Adiciona o ícone apenas em itens com submenu */
.sankhya-header-nav ul li {
  position: relative;
}

.sankhya-header-nav ul li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border: solid #2B3A54;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 1;
  position: relative;
  top: -1px;
}