.nortiFooter {
    position: relative; /* necessário para o ::before */
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    max-width: 1440px;
    padding: 40px 32px 42px;
    margin: 60px auto 0px;
}

.nortiFooter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    
    /* gradiente “seamless” */
    background: linear-gradient(
        90deg,
        var(--color-norti-green) 0%,
        var(--color-norti-blue) 25%,
        var(--color-norti-pink) 50%,
        var(--color-norti-green) 75%
    );
    background-size: 200% 100%; /* duas vezes a largura para mover sem corte */
    background-repeat: repeat-x;
    
    animation: move-gradient 4s linear infinite;
}

@keyframes move-gradient {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -200% 0; /* move para a esquerda, efeito contínuo */
    }
}


.nortiFooterContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
}

.footerLogo img {
    height: 26px;
    cursor: pointer;
}

.footerCopy {
    color: var(--color-text-secondary);
    font-size: 14px;
    margin: 0;
}

.footerSocial {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footerSocial a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footerSocial a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {

  .nortiFooter {
    padding: 32px 20px;
    margin-top: 40px;
  }

  .nortiFooterContainer {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .footerLogo img {
    height: 24px;
  }

  .footerCopy {
    font-size: 15px;
    line-height: 1.4;
  }

  .footerSocial {
    gap: 16px;
  }

  .footerSocial a {
    font-size: 12px;
  }
}
