/* ------ Rodapé ------ */

.rodape-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #1B1C1B;
    /* Cor de fundo do rodapé */
    padding: 1rem 0;
    /* Espaçamento interno */
    margin-top: 30px;
}

.rodape {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #1B1C1B;
    text-align: center;
    width: 90%;
    color: #F7F4FB;
}

.esquerda {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    margin-left: 11px;
}

.centro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 6.5rem;
}

.redes-sociais {
    margin-top: 30px;
}

.icone-insta {
    width: 2.5rem;
    height: 2.5rem;
}

.lista-servicos li {
    list-style: none;
    /* Remove os marcadores da lista */
}

.direita {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    font-size: small;
    margin-right: 2rem;
}

.a-rodape {
    color: #F7F4FB;
    text-decoration: none;
}

.direitos-autorais {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #F7F4FB;
    background-color: #1B1C1B;
    width: 90%;
}

.direitos-autorais p {
    font-size: small;
}

.texto-direitos {
    width: 95%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #fbf4fa;
    font-size: 0.8rem;
    gap: 7rem;
    /* Espaço entre os itens */
    padding: 1rem 0;
    /* Espaçamento interno */

}

hr {
    width: 98%;
    border: 0;
    border-top: 1px solid #F7F4FB;
    /* Linha horizontal */
    margin: 1rem 0;
    /* Espaçamento vertical */
}

/*RESPONSIVIDADE*/

/* Telas médias (tablets) */
@media (max-width: 992px) {
    .centro {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
    }

    .icone-insta {
        width: 2.5rem;
        height: 2.5rem;
    }

    .texto-direitos p,
    span {
        font-size: 0.6rem;
    }

}

/* Telas médias (tablets) */
@media (max-width: 490px) {

    .rodape {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-right: 6rem;

    }

    .lista-servicos li {
        line-height: 1;
    }

    .redes-sociais {
        margin-top: 10px;
    }

    .centro {
        margin-bottom: 1rem;
        margin-right: 1.3rem;
    }

    .icone-insta {
        width: 2.5rem;
        height: 2.5rem;
    }

    .direita {
        width: 100%;
        align-items: center;
        margin-left: 3rem;
    }

    .esquerda {
        align-items: center;
    }

    .direita p {
        font-size: 10px;
        color: #F7F4FB;
    }

    .texto-direitos {
        width: 95%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0;
    }

}