.meu-footer {
  position: relative;
  width: 100%;
  margin: auto 0 0;
  padding: 48px 20px;
  overflow: hidden;
  text-align: center;
  background: #0a0a0a;
  color: #ffffff;
  box-sizing: border-box;
  flex-shrink: 0;
}

.meu-footer__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.meu-footer__content p {
  margin: 8px 0;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.meu-footer__content a {
  color: #00ff88;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.meu-footer__content a:hover {
  color: #00b8ff;
  text-shadow: 0 0 5px rgba(0, 184, 255, 0.45);
}

.meu-footer__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00ff88, #00b8ff);
  opacity: 0.28;
  z-index: 1;
  animation: meuFooterGradientShift 10s ease-in-out infinite alternate;
}

@keyframes meuFooterGradientShift {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.18);
  }
}

@media (max-width: 640px) {
  .meu-footer {
    margin-top: 44px;
    padding: 44px 16px 32px;
  }
}
