/* public/css/footer.css */

.app-footer {
    background: #f8fafc;
    border-top: 4px solid #14532d;
    box-shadow: 0 -0.2rem 0.8rem rgba(15, 23, 42, 0.06);
    color: #1e293b;
}

.app-footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
}

.app-footer-financiacion {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 280px;
}

.app-footer-logo {
    max-height: 72px;
    width: auto;
    object-fit: contain;
}

.app-footer-financiacion-text {
    display: flex;
    flex-direction: column;
    color: #0f172a;
    font-size: 0.92rem;
    line-height: 1.3;
}

.app-footer-financiacion-text strong {
    color: #14532d;
    font-weight: 800;
}

.app-footer-info {
    text-align: right;
}

.app-footer-title {
    color: #14532d;
    font-weight: 800;
    font-size: 1rem;
}

.app-footer-subtitle {
    color: #475569;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.app-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.35rem;
    font-size: 0.9rem;
}

.app-footer-links a {
    color: #1e40af;
    font-weight: 700;
    text-decoration: none;
}

.app-footer-links a:hover,
.app-footer-links a:focus {
    color: #14532d;
    text-decoration: underline;
}

.app-footer-separator {
    color: #94a3b8;
}

.app-footer-bottom {
    border-top: 1px solid #cbd5e1;
    padding: 0.65rem 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    color: #475569;
    font-size: 0.86rem;
    text-align: center;
}

@media (max-width: 767.98px) {
    .app-footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.85rem;
    }

    .app-footer-financiacion {
        flex-direction: column;
        min-width: 0;
    }

    .app-footer-logo {
        max-height: 64px;
    }

    .app-footer-info {
        text-align: center;
    }

    .app-footer-links {
        justify-content: center;
        row-gap: 0.5rem;
    }
}