/**
 * Rodapé verde padrão do site (contato, links rápidos).
 * Usado em páginas públicas e na área logada (conta).
 */
.site-footer {
    width: 100%;
    flex-shrink: 0;
    background-color: rgb(14, 92, 28);
    margin-top: auto;
    padding: 10px 20px;
    z-index: 1000;
    box-shadow: 0 0 0 0.2rem rgba(46, 160, 67, 0.25);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    font-family: var(
        --rr-font-ui-sans,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        'Helvetica Neue',
        Arial,
        sans-serif
    );
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gridFooter" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23gridFooter)"/></svg>');
    opacity: 1;
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.site-footer-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.site-footer-desc {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer-contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.site-footer-email {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    font-weight: 600;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer a:hover {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
}

.site-footer-copy-btn {
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    font-size: 0.8rem;
    min-height: auto;
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.site-footer-copy-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.75);
}

.site-footer-copy-feedback {
    min-width: 72px;
    font-size: 0.8rem;
    color: #d2f4d9;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.site-footer-copy-feedback.visivel {
    opacity: 1;
}

.site-footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.7rem;
}

.site-footer-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
}

.site-footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}
