.footer {
    background-color: #010101;
    color: #fdfdfd;
    padding: 5rem 8% 2rem;
    position: relative;
  }
  
  /* GRID PRINCIPAL */
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
  
  /* LOGO */
  .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .footer-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* garante branco */
    transition: transform 0.3s ease;
  }
  
  .footer-logo img:hover {
    transform: scale(1.05);
  }
  
  /* TEXTO */
  .footer-text {
    font-size: 0.95rem;
    color: #fdfdfd;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  /* BOTÃO */
  .footer-btn {
    display: inline-block;
    background: #ffc700;
    color: #010101;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .footer-btn:hover {
    background: #fdfdfd;
  }
  
  /* TÍTULOS E LISTAS */
  .footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffc700;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-col ul a {
    text-decoration: none;
    color: #fdfdfd;
    opacity: 0.8;
    font-size: 0.95rem;
    transition: opacity 0.3s;
  }
  
  .footer-col ul a:hover {
    opacity: 1;
  }
  
  /* CONTATO */
  .footer-col p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
  }
  
  /* GALERIA */
  .footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  
  .thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #191919;
    border: 2px solid #2a2a2a;
    border-radius: 6px;
    transition: all 0.3s;
  }
  
  .thumb:hover {
    border-color: #ffc700;
    transform: scale(1.05);
  }
  
  /* LINHA INFERIOR */
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.7rem;
    font-size: 0.9rem;
  }
  
  .footer-links a {
    color: #ffc700;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #fdfdfd;
  }
  
  /* RESPONSIVO */
  @media (max-width: 768px) {
    .footer-container {
      text-align: center;
    }
  
    .footer-logo {
      justify-content: center;
    }
  
    .footer-gallery {
      justify-content: center;
    }
  
    .footer-logo img {
      height: 36px;
    }
  }
  