﻿/* === Estilos do Rodapé (meuapp-footer) === */
.meuapp-footer {
    background-color: #343a40;
    color: #adb5bd;
    padding: 1.5rem 0;
    border-top: 1px solid #495057;
    font-size: 0.875em;
    line-height: 1.6;
    margin-top: 2rem;
}

.meuapp-footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.meuapp-footer-copyright {
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

.meuapp-footer-links-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

    .meuapp-footer-links-group > .meuapp-footer-link,
    .meuapp-footer-links-group > .meuapp-footer-developedby-inline,
    .meuapp-footer-links-group > .meuapp-footer-separator {
        margin-left: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .meuapp-footer-links-group > *:first-child {
        margin-left: 0;
    }

.meuapp-footer-developedby-inline {
    /* Estilos específicos se necessário */
}

.meuapp-footer-link {
    color: #7ec6ff;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    display: inline-flex; /* Para alinhar ícone e texto corretamente */
    align-items: center; /* Alinha verticalmente o ícone e o texto */
}

    .meuapp-footer-link:hover,
    .meuapp-footer-link:focus {
        color: #ffffff;
        text-decoration: underline;
    }

/* Estilo para os ícones dentro dos links do rodapé */
.meuapp-footer-icon {
    margin-right: 0.4em; /* Espaço entre o ícone e o texto */
    font-size: 0.95em; /* Ajuste o tamanho do ícone se necessário */
    /* A cor será herdada do .meuapp-footer-link */
}

.meuapp-footer-separator {
    color: #6c757d;
}

/* Responsividade para o Rodapé */
@media (max-width: 767.98px) {
    .meuapp-footer-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .meuapp-footer-copyright {
        margin-right: 0;
        margin-bottom: 0.75rem;
    }

    .meuapp-footer-links-group {
        justify-content: center;
        width: 100%;
    }

        .meuapp-footer-links-group > .meuapp-footer-link,
        .meuapp-footer-links-group > .meuapp-footer-developedby-inline {
            margin-left: 0.35rem;
            margin-right: 0.35rem;
        }
}
