.site-footer {
  background: linear-gradient(135deg, #964a90 0%, #722f6c 100%);
  color: #fff;
  padding: 50px 0 0;
  font-family: 'Segoe UI', Roboto, sans-serif;
  position: relative;
}

a{
  text-decoration: none;

}
.contact-info li {
  margin-bottom: 5px; /* Espaçamento entre as linhas do endereço e outros itens */
  line-height: 1.4; /* Altura da linha para melhor leitura */
}
.footer-bottom a {
  color: #60dff2;
  font-weight: bold; /* Adiciona negrito */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Adiciona sombra sutil */
  font-size: 0.95rem; /* Aumenta ligeiramente o tamanho da fonte */
  transition: all 0.2s ease; /* Adiciona transição suave para hover */
}

.footer-bottom a:hover {
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); /* Sombra mais intensa no hover */
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  font-weight: 600;
  color: #fff;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a, 
.contact-info li {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.footer-column ul li a:hover {
  color: white;
  padding-left: 5px;
}

.contact-info i {
  margin-right: 10px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 0.9rem;
}

.footer-copyright {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.developer-credit {
  margin-top: 8px;
  font-size: 0.85rem;
  opacity: 0.8;
}

.developer-credit strong {
  font-weight: 600;
  color: white;
}

#year {
  display: inline-block;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
}

#wpp-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 24px;
  text-align: center;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#wpp-popup .inner {
  margin-right: 10px;
}

#wpp-popup i {
  font-size: 24px;
}

#wpp-popup:hover {
  background-color: #128c7e;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
/* Estilo do botão WhatsApp */
#wpp-popup {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #25d366;
	color: white;
	padding: 15px 20px;
	border-radius: 50px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	text-decoration: none;
	transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  #wpp-popup:hover {
	background-color: #128c7e;
	transform: scale(1.05);
  }
  
  #wpp-popup .fa-whatsapp {
	margin-right: 10px;
	font-size: 24px;
  }
  
  #wpp-popup {
	animation: slideIn 0.5s ease-in-out;
  }