/* ==========================================================
   FOOTER V1.0.0
   Rodapés modulares com variações de layout e alinhamento
   ========================================================== */

/* Prefixo exclusivo: foot- */

.foot {
  background-color: #111827;
  color: #e5e7eb;
  padding: 2rem 2.5rem;
  box-sizing: border-box;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===============================
   CENTRALIZADO
   =============================== */

.foot-center {
  text-align: center;
}

.foot-center a {
  color: #9ca3af;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.2s ease;
}

.foot-center a:hover {
  color: #f9fafb;
}

/* ===============================
   COLUNAS
   =============================== */

/* 2 colunas */
.foot-cols-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

/* 3 colunas */
.foot-cols-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.foot-cols-2 h3,
.foot-cols-3 h3 {
  color: #f9fafb;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.foot-cols-2 ul,
.foot-cols-3 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.foot-cols-2 li,
.foot-cols-3 li {
  margin-bottom: 0.5rem;
}

.foot-cols-2 a,
.foot-cols-3 a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.foot-cols-2 a:hover,
.foot-cols-3 a:hover {
  color: #f9fafb;
}

/* ===============================
   RODAPÉ INFERIOR (COPYRIGHT)
   =============================== */

.foot-bottom {
  margin-top: 2rem;
  border-top: 1px solid #374151;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #9ca3af;
  text-align: center;
}

/* ===============================
   RESPONSIVIDADE
   =============================== */

@media (max-width: 768px) {
  .foot {
    text-align: center;
  }

  .foot-cols-2,
  .foot-cols-3 {
    grid-template-columns: 1fr;
  }

  .foot-cols-2 h3,
  .foot-cols-3 h3 {
    margin-top: 1rem;
  }
}

