.header {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  padding: 1rem 2rem;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

}

.logo__automation-solutions {
  width: 10rem;
  padding-right: 10px;
}

.menu {
  display: flex;
  gap: 35px;
}

a {
  text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 1rem;
  padding-left: 4rem;
}

h1 {
  margin: 3rem 0;
  font-size: 65px;
  font-weight: 700;
  color: var(--white);
  text-align: start;
  line-height: 1.5;
  /* animação */
  overflow: hidden;
  /* impede texto vazar */
  white-space: nowrap;
  /* efeito cursor */
  width: 0;
  /* começa invisível */
  animation: typing 3s steps(50, end) forwards, blink 0.7s infinite;
}

/* Animação de "digitar" */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

.header__options {
  color: var(--white);
  font-weight: 700;
  padding: 1px 0;
  text-transform: uppercase;
  transition: all 0.2s;
}

.header__options:hover {
  color: var(--red_autsol);
  border-bottom: 1px solid var(--red_autsol);
}

.header-icon {
  width: 25px;
}