/* footer.css */
/* footer.css */
.site-footer {
  background: #1e293b;
  color: #fff;
  padding: 3rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem; /* aumenta o espaçamento entre colunas */
  align-items: start; /* alinha os blocos pelo topo */
}

.footer-logo h2 {
  margin-bottom: 0.5rem;
  color: #66adff;
}

.footer-links h3 {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: #66adff;
  
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: #fff!important;
  text-decoration: none;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.4rem;
  cursor: pointer; 
}

.footer-links a:hover {
  text-decoration: underline;
    color: #fff!important;
}
.footer-links a:visited {
  color: #fff!important;
}
.footer-links a:active {
  color: #fff!important;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* footer.css */
/* .site-footer {
  background: #0b0d1a;
  color: #fff;
  padding: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.footer-links h3 {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: #6c63ff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
} */

/* footer.css */
/* .site-footer {
  background: #0b0d1a;
  color: #fff;
  padding: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.footer-links h3 {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: #6c63ff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
} */

/* .site-footer {
  background: #0b0d1a;
  color: #fff;
  padding: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-links a,
.footer-social a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
} */

/* Responsivo */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
