/* ================= FOOTER ================= */

footer {
  position: relative;
  padding: 60px 0 40px;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  background: #050505;
  overflow: hidden;
}

/* Glow sutil */
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(0,191,98,.06),
    transparent 65%
  );
  pointer-events: none;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* LOGO */
.footer-logo-wrapper {
  margin-bottom: 30px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.footer-logo-img {
  height: 45px;
  filter: drop-shadow(0 2px 10px rgba(0,191,98,.35));
}

.footer-logo-text {
  font-weight: 800;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #00BF62, #7CFFB6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TAGLINE */
.footer-tagline {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #8a8a8a; /* cinza */
}

/* LINKS */
.footer-links {
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.footer-links a {
  color: #8a8a8a; /* cinza */
  text-decoration: none;
  margin: 0 8px;
}

.footer-links a:hover {
  color: #b5b5b5; /* cinza mais claro no hover */
}

/* COPYRIGHT */

.footer-copyright{
  margin-top:40px;
  padding-top:40px;
  border-top:1px solid var(--border);

  display:flex;
  flex-direction:column; /* coloca logo em cima do texto */
  align-items:center;
  justify-content:center;
  gap:10px;

  text-align:center;

  font-size:0.9rem;
  color:#8a8a8a;
}

.footer-copyright p{
  margin:0;
  color:#8a8a8a;
  line-height:1.5;
}

.copyright-logo-img{
  height:25px;
  opacity:.65;
}