/* --- FOOTER --- */

/* Empurra o rodapé pro final da página mesmo quando o conteúdo é curto —
   funciona em qualquer página que inclua footer_public.php, sem precisar
   envolver o conteúdo numa <main> própria. */
html { height: 100%; }
body { min-height: 100%; display: flex; flex-direction: column; }
.rodape-simples { margin-top: auto; }

.rodape-simples {
    background: #26241f;
    color: rgba(255, 255, 255, 0.82);
    padding: 44px 20px 28px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rodape-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.rodape-simples p {
    margin: 0 0 15px 0;
}

.rodape-simples p:last-child {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.icon-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
}

.icon-link:hover {
    color: #fff;
    background: rgba(230, 126, 34, 0.16);
    border-color: rgba(230, 126, 34, 0.5);
    transform: translateY(-2px);
}

.icon-link svg {
    height: 18px;
    width: 18px;
    fill: currentColor;
}
