/* Rodapé escuro full-width */
.rodape {
  position: relative;
  background: var(--foreground);
  color: var(--background);
  margin-top: 0;
}

.rodape-grade {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.25rem;
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .rodape-grade {
    grid-template-columns: 1.4fr 1fr 1fr;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Bloco identidade */
.rodape-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.rodape-monograma {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
}
.rodape-monograma-borda {
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  background: linear-gradient(95deg, #06b6d4 0%, #8b5cf6 50%, #ec4899 100%);
}
.rodape-monograma-miolo {
  position: absolute;
  inset: 1.5px;
  border-radius: 7px;
  background: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--background);
}
.rodape-nome {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.rodape-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0.75rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.rodape-bio {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 1rem 0 0;
  max-width: 24rem;
  line-height: 1.65;
}

/* Colunas links */
.rodape-coluna {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rodape-rotulo {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.rodape-lista {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.875rem;
}
.rodape-lista a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 200ms ease;
}
.rodape-lista a:hover {
  color: var(--background);
}

/* Linha inferior */
.rodape-rodape {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.rodape-rodape-conteudo {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .rodape-rodape-conteudo {
    align-items: center;
    flex-direction: row;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.rodape-copia,
.rodape-build {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  margin: 0;
}
.rodape-copia {
  color: rgba(255, 255, 255, 0.5);
}
.rodape-build {
  color: rgba(255, 255, 255, 0.4);
}
