*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --scrollbar-thumb: #d89a14;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  background: #ffffff;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 6px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: #1a2248;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 99px;
  transition: background 0.4s;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: #ffe066;
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) #1a2248;
}

#mergedPage {
  width: 100%;
}

.merged-block {
  position: relative;
  width: 100%;
}

.merged-block--numeros,
.merged-block--solucoes,
.merged-block--logos {
  margin-bottom: 0;
}