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

.site-footer {
    background: #0f172a; /* Azul oscuro profundo fijo (independiente del tema) */
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-xl) 2rem var(--space-lg);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 1000px !important; /* Limita un poco el ancho total */
}

.footer-tagline {
    font-size: 1.35rem;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    /* Quitamos nowrap para evitar que se desborde si la pantalla no es tan ancha */
    max-width: 900px;
}

.footer-info {
    font-size: 1rem;
    line-height: 1.8;
}

.footer-info i {
    color: #ef4444;
    margin: 0 4px;
}

.footer-info a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.footer-info a:hover {
    opacity: 0.8;
}

@media (max-width: 900px) {
    .footer-tagline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}
