main {
  background: var(--preto);
  width: 100%;
  padding-top: 121px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faleConosco {
  position: absolute;
  right: 29px;
  top: 20%;
  transform: rotate(90deg);
}

.faleConosco p {
  color: var(--prata);
  text-transform: uppercase;
  position: relative;
}

.faleConosco a {
  text-decoration: none;
  background: transparent;
}

.faleConosco p:after {
  content: '';
  display: inline-block;
  position: absolute;
  background: url('./assets/icons/arrowdown.svg');
  width: 24px;
  height: 24px;
  transform: rotate(-90deg);
  margin-left: 8px;
  animation: arrowDown 1s infinite;
}

@keyframes arrowDown {
  0%,
  100% {
    transform: rotate(-90deg) translateY(0);
  }
  30% {
    transform: rotate(-90deg) translateY(20px);
  }
}

.mainContainer {
  display: flex;
  max-width: var(--maxWidth);
  width: 100%;
  margin-top: 5.4375rem;
  position: relative;
}

.mainRight {
  flex: 1;
}

.mainRightContainer {
  margin-left: 70px;
}

.mainContainer h1 > span {
  animation: blink 0.8s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.mainRight h1 {
  color: var(--prata);
}

.mainRight p {
  width: 295px;
  color: var(--branco);
}

.mainRight h2 {
  color: var(--roxo);
  position: relative;
  top: -10px;
  display: inline-block;
}

.socialContainer {
  max-width: 41.9375rem;
  width: 100%;
  height: 70px;
  display: flex;
  margin-top: 4.3125rem;
  margin-bottom: 3.375rem;
}
.socialContainer > div {
  position: relative;
  width: 15.1875rem;
  height: inherit;
  background: var(--azulEscuro);
  display: flex;
  justify-content: center;
  align-items: center;
}

.socialContainer > div a {
  display: flex;
  width: inherit;
  height: inherit;
  align-items: center;
  justify-content: center;
  color: var(--prata);
  text-decoration: none;
  position: relative;
}

.socialContainer > div:not(:last-child) a:after {
  content: '';
  width: 1px;
  height: calc(100% - 26px);
  background: var(--roxo);
  position: absolute;
  right: 0;
}

.socialContainer > div :is(:hover, :focus) {
  background-color: var(--roxo);
  outline: none;
}
.socialContainer > div:hover a picture svg,
.socialContainer > div:focus a picture svg {
  stroke: var(--preto);
}

.socialContainer > div a picture svg {
  stroke: var(--roxo);
  margin-right: 15px;
  transition: 0.5s;
}

@media (max-width: 728px) {
  .mainLeft {
    display: none;
  }
  .mainRightContainer {
    margin-left: 5%;
  }
  .faleConosco {
    right: -7%;
    top: 30%;
  }
  .socialContainer {
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  .socialContainer > div > a {
    padding: 20px 0;
  }
  .socialContainer > div:not(:last-child):after {
    content: '';
    position: absolute;
    background: var(--roxo);
    bottom: 0%;
    right: unset;
    left: 0;
    width: 100%;
    height: 1px;
  }
  .socialContainer > div:not(:last-child) a:after {
    display: none;
  }
}
