/*
 * =============================================================
 * EFISCAL SALES SITE — Componente: Footer (Permanentemente Oscuro)
 * Componentes: assets/css/components/footer.css
 * Referencia: .clinerules › css-structure-enforcement
 * =============================================================
 */

.site-footer {
    padding: 3rem 2rem 2rem;
    background: var(--bg-footer, #0f172a);
    color: var(--text-footer, #ffffff);
    text-align: center;
    border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.05));
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-tagline {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-footer-main, #ffffff);
}

.footer-legal-links {
    font-size: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    align-items: center;
}

.footer-legal-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #38bdf8;
}

.legal-divider {
    opacity: 0.4;
}

.footer-badges {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arca-data-fiscal {
    display: inline-block;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.arca-data-fiscal:hover {
    opacity: 1;
}

.arca-data-fiscal img {
    display: block;
    border-radius: 4px;
}

.footer-credits {
    font-size: 0.825rem;
    line-height: 1.4;
}

.footer-credits p {
    margin: 0;
}

.footer-credits p + p {
    margin-top: 4px;
}

.footer-credits a {
    color: #38bdf8;
    text-decoration: none;
}

.footer-credits a:hover {
    text-decoration: underline;
    color: #7dd3fc;
}
