.site-footer {
    background: #111;
    color: #bbb;
    border-top: 2px solid #222;
    padding: 40px 20px 10px;
    font-size: 14px;
    position: relative;
    width: 100%;
    z-index: 1;
    animation: fadeInUp 1s ease-in-out;
  }
  
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }
  
  .footer-brand img {
    height: 100px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
  }
  
  .footer-brand p {
    color: #888;
    font-size: 15px;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .footer-links a:hover {
    color: #00e0ff;
    transform: translateX(5px);
  }
  
  .footer-social a {
    margin-right: 15px;
    font-size: 18px;
    color: #bbb;
    transition: 0.3s;
  }
  
  .footer-social a:hover {
    color: #00e0ff;
    transform: scale(1.2);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #666;
    border-top: 1px solid #222;
    margin-top: 20px;
    font-size: 13px;
  }

  
  /* Efeito de entrada */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }
  
    .footer-links, .footer-social {
      flex-direction: row;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
    }
  }
  