
footer {
    background:rgba(123, 123, 123, 0.645);
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 85vh;
    
}

footer .redes-sociais {
    margin-bottom: 10px;
}

footer .redes-sociais a {
    margin: 0 15px;
    display: inline-block;
    transition: transform 0.3s;
}

footer .redes-sociais a:hover {
    transform: scale(1.2);
}

footer .redes-sociais img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

footer p {
    color: #ccc;
    font-size: 14px;
}
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-header-footer);
  backdrop-filter: blur(10px);
  box-shadow: 0 -2px 14px var(--color-shadow);
  padding: 8px 12px;
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 600;
  z-index: 10000;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-bg-header-footer);
    backdrop-filter: blur(10px);
    box-shadow: 0 -2px 14px var(--color-shadow);
    padding: 12px 0;
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 600;
    text-align: center;
    z-index: 10000;
  }