/* Estilos gerais do body */
/* Estilos gerais do body */


.site-footer {
  background-color: #0d1117;
  color: #c9d1d9;
   padding: clamp(2rem, 3vh, 4rem) clamp(1.5rem, 5vw, 4rem) clamp(1rem, 2vh, 3rem);
  font-family: 'Segoe UI', sans-serif;
    display: flex;
  flex-direction: column; /* garante fluxo vertical */
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 125rem; /* ao invés de 1200px */
  margin: 0 auto;
}

.footer-section {
   flex: 1 1 20ch;
  min-width: 200px;
}

.footer-section h2 {
  font-size: clamp(1rem, 1.2vw, 1.5rem);
  margin-bottom: 0.8rem;
  color: #58a6ff;
}

.footer-section p,
.footer-section ul,
.footer-bottom p {
  color: #c9d1d9;
  font-size: clamp(0.4rem, 0.7vw, 1rem);
 
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.4rem;
   word-break: break-word;
  
}

.footer-section ul li a {
  color: #c9d1d9;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #58a6ff;
}

.social-icons a {
  margin-right: 0.7rem;
  font-size: 1.2rem;
  color: #c9d1d9;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #58a6ff;
}

.footer-bottom {
  width: 100%;
  display: block;
 margin-top: clamp(1rem, 2vh, 2rem);
  border-top: 1px solid #30363d;
  padding-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
  background-color: #0d1117; /* garante contraste mesmo em telas grandes */
}
