.footer {
  background: linear-gradient(135deg, var(--cks-pink), #8f174a) !important;
  color: white;
  margin-top: 80px;
  padding-top: 34px;
}



.footer img {
  margin: 0 auto;
}

.footer-info {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  grid-gap: 28px;
  color: rgb(255, 255, 255);
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .footer-info {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-info li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-info li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 2px;
  background: #ffffff;
  margin-right: 10px;
}

.footer-info h3 {
  color: #fff;
  padding-left: 0;
  margin-bottom: 20px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .04rem;
}

.footer a {
  color: rgb(255, 255, 255);
}

.footer-menu ul {
  display: grid;
  grid-template-columns: minmax(100px, 200px) minmax(100px, 200px);
}

.footer-copy {
  display: block;
  padding: 20px 10px;
  background: rgb(255, 255, 255);
  color: var(--cks-ink);
  text-align: center;
  font-size: .9rem;
}

/* Ícones das Redes Sociais */
.footer-redes-icons {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
}

.footer-redes-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-redes-icons a:hover {
  background: rgba(255, 255, 255, .22);
  transform: translateY(-2px);
}


.footer-redes-icons img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}


/* Responsividade dos ícones */
@media (max-width: 768px) {
  .footer-info h3 {
    text-align: center;
    padding-left: 0;
  }
  
  .footer-info ul {
    text-align: center;
  }
  
  .footer-info li {
    justify-content: center;
  }
  
  .footer-redes-icons {
    justify-content: center;
    gap: 12px;
  }
  
  .footer-redes-icons a {
    width: 35px;
    height: 35px;
  }
  
  .footer-redes-icons img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .footer-info {
    grid-template-columns: 1fr;
  }

  .footer-info h3 {
    text-align: center;
    padding-left: 0;
  }
  
  .footer-info ul {
    text-align: center;
  }
  
  .footer-info li {
    justify-content: center;
  }
  
  .footer-redes-icons {
    gap: 10px;
  }
  
  .footer-redes-icons a {
    width: 32px;
    height: 32px;
  }
  
  .footer-redes-icons img {
    width: 16px;
    height: 16px;
  }
}
